search for: bbb

Displaying 20 results from an estimated 418 matches for "bbb".

Did you mean: bb
2004 May 05
3
sip.conf and SIP client host= not recognized in some cases
...CVS) /etc/asterisk/sip.conf [general] port = 5060 ; Port to bind to bindaddr = aaa.aaa.aaa.aaa ; Address to bind to context = default ; Default for incoming calls [carriera] type=friend host=ccc.ccc.ccc.ccc context=inbound [carrierb] type=friend host=bbb.bbb.bbb.bbb context=inbound /etc/asterisk/extensions.conf [inbound] exten => _.,1,Playback,tt-monkeysintro [default] exten => _.,1,Congestion Example A: U ccc.ccc.ccc.ccc:5060 -> aaa.aaa.aaa.aaa:5060 INVITE sip:4445552574@aaa.aaa.aaa.aaa SIP/2.0.. Via: SIP/2.0/UDP ccc.ccc.ccc.ccc:506...
2010 Aug 30
2
Band-wise Conditional Sum - Actual problem
...using the ead size itself.) and not the number of borrowers falling in a particular band. I am reproducing the data and solution as provided by Winsemius Sir (which generates the number of band-wise borrowers for a given rating. rating <- c("A", "AAA", "A", "BBB","AA","A","BB", "BBB", "AA", "AA", "AA", "A", "A", "AA","BB","BBB","AA", "A", "AAA","BBB","BBB", "BB", "A&quo...
2005 Oct 13
0
BIND help please
I am setting up a test domain to learn bind, and how it,s working. The master domain is bbb.ttt.domene 10.11.12.13 the child domain ftp.bbb.ttt.domene 10.11.55.77 The thing I don't understand is, why don't the query report additional info (ip address)? Her is two queries(the first the one that troubles me), cut of named.conf, test of zone file, the zone file and cut from log...
2017 Jun 14
8
[WISH / PATCH] possibility to split string literals across multiple lines
Hi, I would really like to have a way to split long string literals across multiple lines in R. Currently, if a string literal spans multiple lines, there is no way to inhibit the introduction of newline characters: > "aaa + bbb" [1] "aaa\nbbb" If a line ends with a backslash, it is just ignored: > "aaa\ + bbb" [1] "aaa\nbbb" We could use this fact to implement string splitting in a fairly backward-compatible way, since currently such trailing backslashes should hardly be used...
2010 Aug 27
1
Band-wise Sum
Hi I have a large credit portfolio (exceeding 50000 borrowers). For particular process I need to add up the exposures based on the bands. I am giving a small test data below. rating <- c("A", "AAA", "A", "BBB","AA","A","BB", "BBB", "AA", "AA", "AA", "A", "A", "AA","BB","BBB","AA", "A", "AAA","BBB","BBB", "BB", "A&quo...
2012 Apr 17
3
Can a matrix have 'list' as rows/columns?
...pting matrix has as many columns as there are dimensions in the array—so two columns for a matrix. The result is a vector (not an array) containing the selected items." My version of R: version.string R version 2.12.1 (2010-12-16) Here is an example... > Qm <- c("aaa", "bbb", "ccc") > DF <- data.frame(Name=sample(Qm, replace=TRUE, size=22), Value=runif(22), stringsAsFactors=FALSE) > M <- sapply(Qm, function(nm, DF){last(DF[DF[, "Name"]==nm,])}, DF) > class(M) [1] "matrix" > class(M[,1]) [1] "list" > cla...
2014 Feb 11
2
Some LDA questions!
...livery_date_add ? envelope_to_add ? return_path_add ? log_output ? user = vmail ? group = vmail ? #mode = 0660 ? temp_errors = 64 : 69 : 70: 71 : 72 : 73 : 74 : 75 : 78 dovecot does mysql lookups of users, passwords. All works, but in headers of example message: Return-path: <"vitalyf at bbb.com"@host.aaa.com> Envelope-to: vitalyf at bbb.com Delivery-date: Tue, 11 Feb 2014 03:59:17 -0600 Received: from xxx.net ([11.22.33.44] helo=[192.168.1.77]) ?by host.aaa.com with esmtpsa (TLS1.0:ECDHE_RSA_AES_128_CBC_SHA1:128) ?(Exim 4.82) ?(envelope-from <"vitalyf at bbb.com"@...
2017 Jun 14
4
[WISH / PATCH] possibility to split string literals across multiple lines
...I would really like to have a way to split long string literals across > > multiple lines in R. > > I don't understand why you require the string to be a literal. Why not > construct the long string in an expression like > > paste0("aaa", > "bbb") > > ? Surely the execution time of the paste0 call is negligible. > > Duncan Murdoch Actually "execution time" is precisely one of the reasons why I would like to see this feature as - depending on the context (e.g. in a tight loop) - the execution time of paste0 (o...
2006 Apr 04
5
Not routing for 1 host?
Hi, I want to stop routing for 1 particular host in my network. I thought that this would do it: iptables -D INPUT -d aaa.bbb.ccc.ddd -j DROP iptables -D INPUT -s aaa.bbb.ccc.ddd -j DROP But that still shows traffic. What is the corract way to do that? Groeten, Joost Kraaijeveld Askesis B.V. Molukkenstraat 14 6524NB Nijmegen tel: 024-3888063 / 06-51855277 fax: 024-3608416 e-mail: J.Kraaijeveld@Askesis.nl web: www.askes...
2010 Mar 05
1
About the interaction A:B
...rcept), Ab, Ac (there are no NA's), I think that it is reasonable to make sure that there are no NA's when there are interaction terms, namely, A:B in this case. Thank you for answering my questions! > alm=lm(Y ~ A*B,fr) > alm$coefficients (Intercept) AAb AAc BBb BBc BBd -3.548176 -2.086586 7.003857 4.367800 11.887356 -3.470840 AAb:BBb AAc:BBb AAb:BBc AAc:BBc AAb:BBd AAc:BBd 5.160865 -11.858425 -12.853116 -20.289611 6.727401 -2.327173 > > alm=lm(Y ~ A + B + A:B,fr) > alm$coefficients (In...
2003 May 01
4
var[i]
Dear all, How could I use variables in a loop that their names are in a vector? For example: aaa <- 1:10 bbb <- aaa*2 ccc <- aaa+bbb varn <- c("aaa", "bbb", "ccc") m <- rep(NA, 3) for (i in 1:length(varn)) m[i] <- mean(varn[i]) # wrong thanks in advance Juli -- "Wars do not solve problems, wars generate even more problems"
2010 Nov 30
2
xyplot : superimposed 2 groups in different panels
Hello, I would like to plot the following xyplot : for each date of fff (1 date per panel), bbb=f(aaa) for the two groups (ddd=1 and ddd=2) superimposed. I can do it by group (see below) but not together. I looked at http://lmdvr.r-forge.r-project.org/figures/figures.html but I haven't found what I was looking for (to be honest, I haven't understood all the examples). Any help will...
2020 Jul 14
6
internal DNS not forwarding
Hello, I am trying to setup a samba4 AD dc in my network using smb-tool. Everything seems to work except DNS forwarding. If I query for the dc root at dc:~# nslookup dc.local.domain.it I get the correct answer: root at dc:~# nslookup dc Server:???????? aaa.bbb.ccc.ddd Address:??????? aaa.bbb.ccc.ddd#53 Name:?? dc.xxxx.yyyy.it Address: aaa.bbb.ccc.ddd but if I query for an external domain: root at dc:~# nslookup www.nasa.gov Server:???????? aaa.bbb.ccc.ddd Address:????? aaa.bbb.ccc.ddd#53 Non-authoritative answer: *** Can't find www.nasa.gov: No an...
2008 Aug 29
1
nls() fails on a simple exponential fit, when lm() gets it right?
....335985,20.477624,20.915823,21.886004,23.714724,24.182210,23.954929,23.784659,25.334360,25.411320,26.218614,25.612478) #&#&#height=5*exp(0.03*dbh) logarithmicInit=function(mCall,LHS,data) { xy=sortedXyData(mCall[["x"]],LHS,data) aaa=0.01 #Just guess aaa=0.01 to start the fit bbb=min(xy$y) #Use the minimum y value as an initial guess for bbb value=c(aaa,bbb) names(value)=mCall[c("aaa","bbb")] return(value) } fmla=as.formula("~(aaa*log(x)+bbb)") SSlogarithmic=selfStart(fmla,initial=logarithmicInit,parameters=c("aaa","bbb"...
2007 May 03
2
Parsing data with an uneven number of delimiters
I have a list of data that is delimited by a / and, as long as there is an equal number of delimiters, I can parse the data and put it into a data frame: > t1<-c("a/a/a","b/bb/bbb","ccc/cc/c") > t2<-strsplit(t1,"/") > t3<-data.frame(t2) > t3 c..a....a....a.. c..b....bb....bbb.. c..ccc....cc....c.. 1 a b ccc 2 a bb cc 3 a...
2012 Sep 20
3
[LLVMdev] TBAA fail on optimization, why?
hi, i have a simple code like below, in wich variable "aaa" does not alias to "bbb". i use TBAA to specify this, please see the code. then i ran this code thru LLVM optimization, and i expected that the second "store" instruction is eliminated. however, i am wrong: the second "store" instruction is still there after optimization. perhaps my TBAA setup i...
2006 Oct 10
1
error in dput applied to dataframe (PR#9286)
Full_Name: Daniel F Higgins Version: 2.4.0 OS: Windows XP and Mac OSX Submission from: (NULL) (128.111.242.49) Create a dataframe as indicated below and apply 'dput' to it; note that the row.names attribute is incorrect! > aaa <- c("AAA","BBB","AAA") > bbb <- c(1,2,3) > df <- data.frame(aaa,bbb) > dput(df) structure(list(aaa = structure(c(1, 2, 1), .Label = c("AAA", "BBB"), class = "factor"), bbb = c(1, 2, 3)), .Names = c("aaa", "bbb"), row.names = c(NA, 3...
2020 Jun 05
3
It seems to have bug for @group to set in valid or invalid conf
...nherit permissions = Yes delete veto files = yes ntlm auth = yes streams_depot:delete_lost = yes ldap timeout = 300 smb2 max write = 1048576 state directory = /home/samba_state lock directory = /var/lock/samba cache directory = /home/samba_cache log level = 10 nt acl support = no 2. I add the user bbb in my debian and not in group "d_group": # getent group root:x:0:root Administrator_Group:x:1:admin User_Group:x:101:admin,aaa,bbb Guest_Group:x:65534:guest Hidden_Group:x:201:admin fuse:x:102:admin davfs2:x:103:davfs2 a_group:x:1000:aaa,bbb b_group:x:1001:aaa,bbb c_group:x:1002:bbb d_gro...
2011 Mar 08
1
How to sort using a predefined criterion
...eat_A", "treat_A", "treat_B", "treat_B", "treat_B", "treat_B", "treat_B", "treat_B", "treat_B", "treat_B"), type = c("AA", "AAAA", "B", "AAA", "BB", "BBBB", "BBB", "AAA", "B", "AAA", "BBB", "AA", "AAAA", "BB", "A", "BBBB"), values = c(0.382000183, 0.100680563, 0.596484268, 0.899105808, 0.884609516, 0.958464309, 0.014496292, 0.407422102, 0.8632465...
1999 May 27
2
Can't connect to samba from foreign network --- 'Gethostbyaddr failed' error in log.smb
I have a samba server at ip address aaa.bbb.ccc.ddd I can connect to it from clients on subnets aaa.bbb.eee. and aaa.bbb.fff. I can't connect to it from clients on ggg.hhh. smb.conf has hosts deny = all hosts allow = localhost, aaa.bbb., ggg.hhh. The client can successfully 'ping mysambaserver' (resolves to aaa.bbb.ccc.ddd)...