search for: option2

Displaying 20 results from an estimated 60 matches for "option2".

Did you mean: option
2013 May 07
1
[LLVMdev] CommandLine: using cl::Positional with enum
...the tool accepts a list of arguments in a particular order. For this goal, I know the cl::Positional flag. But, the problem is that the first argument must be one of a set of options (like a kind of subcommand of the tool). In my case, only the three next commands are possible:myTool option1myTool option2 arg1 arg2 myTool option3 arg1and I don't want a different order is possible, for instance, this is not permitted:myTool arg2 option2 arg1So, I thought about using an enum for this first argument:enum OptLevel{option1, option2, option3};cl::opt<OptLevel> OptionsLevel(cl::Positional, cl:...
2005 Apr 18
1
lmer question
...'m using lmer for binomial data. I am trying to replicate estimates provided by Agresti (2002, Categorical data analysis, Wiley) using abortion data in table 10.13 (estimates provided in table 12.3 p. 505). I fit the same model using these three commands: a1 <- lmer(resp ~ sex + option1 + option2 + (1|id), data=abort,family=binomial, method = c("AGQ")) a2 <- lmer(resp ~ sex + option1 + option2 + (1|id), data=abort,family=binomial, method = c("Laplace")) a3 <- lmer(resp ~ sex + option1 + option2 + (1|id), data=abort,family=binomial, method = c("PQL")) A...
2013 May 10
0
[LLVMdev] CommandLine: using cl::Positional with enum
Hi Daniel, I would like to go deeper with CommandLine and I was asking if you could help me again. Look, following the same example you put in the last message: ./prog <option1> | ( <option2> --arg1 --arg2) | ( <option3> --arg1 ) What I really really want is the same except I don't want the "--" prefix is present in any of the arguments. ./prog <option1> | ( <option2> arg1 arg2) | ( <option3> arg1 ) The problem is clear: in this case, the arg...
2013 May 12
0
[LLVMdev] CommandLine: using cl::Positional with enum
...edro Delgado Perez <pedro.delgadoperez at mail.uca.es> wrote: > Hi Daniel, > > I would like to go deeper with CommandLine and I was asking if you could > help me again. > > Look, following the same example you put in the last message: > > ./prog <option1> | ( <option2> --arg1 --arg2) | ( <option3> --arg1 ) > > What I really really want is the same except I don't want the "--" prefix is > present in any of the arguments. > > ./prog <option1> | ( <option2> arg1 arg2) | ( <option3> arg1 ) > > The problem...
2008 Mar 07
3
parsing /proc/cmdline
Hi - I am not an expert at shell script writing. If /proc/cmdline looks like option1 option2 ... ks=http://192.168.1.8/ks/ks.cfg option3 option 4 ... How can I get the 192.168.1.8 out of this cmdline. THanks, Jerry
2013 May 08
0
[LLVMdev] CommandLine: using cl::Positional with enum
Hi Daniel, Just in the moment you replied my message, I was rewriting it as I hadn't noticed it hadn't a correct format. Sorry for that and thanks for answering it anyway. > ./prog <option1> | ( <option2> --arg1 --arg2) | ( <option3> --arg1 ) > Yes, that is exactly what I need. It's a pity commandLine doesn't implement that possibility. So I will do what you tell, parsing the arguments by myself and extending the help like you propose. > > I don't see why you should...
2013 May 14
0
[LLVMdev] CommandLine: using cl::Positional with enum
...at mail.uca.es> wrote: > >> Hi Daniel, >> >> I would like to go deeper with CommandLine and I was asking if you could >> help me again. >> >> Look, following the same example you put in the last message: >> >> ./prog <option1> | ( <option2> --arg1 --arg2) | ( <option3> --arg1 ) >> >> What I really really want is the same except I don't want the "--" prefix is >> present in any of the arguments. >> >> ./prog <option1> | ( <option2> arg1 arg2) | ( <option3> arg1 )...
2017 May 07
2
[virtio-dev] Re: [PATCH v9 2/5] virtio-balloon: VIRTIO_BALLOON_F_BALLOON_CHUNKS
...at to pass > address/size in a standard s/g list, possibly using INDIRECT? OK, I see your point, thanks. Post the two options here for an analysis: Option1 (what we have now): struct virtio_balloon_page_chunk { __le64 chunk_num; struct virtio_balloon_page_chunk_entry entry[]; }; Option2: struct virtio_balloon_page_chunk { __le64 chunk_num; struct scatterlist entry[]; }; I don't have an issue to change it to Option2, but I would prefer Option1, because I think there is no be obvious difference between the two options, while Option1 appears to have little advant...
2017 May 07
2
[virtio-dev] Re: [PATCH v9 2/5] virtio-balloon: VIRTIO_BALLOON_F_BALLOON_CHUNKS
...at to pass > address/size in a standard s/g list, possibly using INDIRECT? OK, I see your point, thanks. Post the two options here for an analysis: Option1 (what we have now): struct virtio_balloon_page_chunk { __le64 chunk_num; struct virtio_balloon_page_chunk_entry entry[]; }; Option2: struct virtio_balloon_page_chunk { __le64 chunk_num; struct scatterlist entry[]; }; I don't have an issue to change it to Option2, but I would prefer Option1, because I think there is no be obvious difference between the two options, while Option1 appears to have little advant...
2003 Apr 24
3
Collecting dialed digits
I am trying to set up an auto attendant for the first time, and am having trouble getting to the submenu. My extensions.conf file looks like this: [incoming] exten=> s,1,Background,menu1 exten=> s,2,Wait,20 exten=> s,3,Goto,s|1 exten=> 1,1,Playback,option1 exten=> 2,1,Playback,option2 exten=> 3,1,Playback,option3 It is my understanding that asterisk treats the digits entered by the caller at the first menu as an extension. When I run asterisk and call in and enter a number for my option, I am not passed on, rather I just loop through. Is there something more that I need to...
2012 Feb 02
3
MVC questions with rails
2013 May 08
0
[LLVMdev] CommandLine: using cl::Positional with enum
...e robustly what I need. Look, I want the tool accepts a list of arguments in a particular order. For this goal, I know the cl::Positional flag. But, the problem is that the first argument must be one of a set of options. In my case, only the three next commands are possible: myTool option1 myTool option2 arg1 arg2 myTool option3 arg1 and I don't want a different order is possible, for instance, this is not permitted: myTool arg2 option2 arg1 So, I thought about using an enum for this first argument: enum OptLevel{ option1, option2, option3 }; cl::opt<OptLevel> OptionsLevel(cl::Posi...
2017 Dec 18
2
DM and ''offline'' PAM (and NSS?)...
...k, eg: root at vdmsv1:~# getent passwd gaio root at vdmsv1:~# getent passwd LNFFVG\\gaio LNFFVG\gaio:*:10000:10513:Marco Gaiarin:/home/gaio:/bin/bash only the 'domainful' version of the account work. > Now, since im not sure this works ok, i dont use it on my debian servers, i use option2. > option2 is ignore the "not recommended setting : "winbind use default domain = yes" Also i, option 2. ;-) -- dott. Marco Gaiarin GNUPG Key ID: 240A3D66 Associazione ``La Nostra Famiglia'' http://www.lanostrafamiglia.it/ Polo FVG - Via d...
2013 May 23
1
GotoIf function
...in2),Set(wait=2) exten => s,n,Set(gottries=0) exten => s,n,Read(get,"silence/1",,,,${wait}) exten => s,n(gotnothing),Set(gottries=$[${gottries}+1] exten => s,n,GotoIf($[${LEN(${get})} == 0]?reallynothing:gotdigit2) exten => s,n(reallynothing),GotoIf($[${gottries}>3]?done:option2) exten => s,n(done),Background(voicemessage3) exten => s,n,Background(voicemessage4) exten => s,n,Playback(moh) exten => s,n, ; Addittional messageing exten => s,n,Queue(general technical skill) exten => s,n(option2),Background(voicemessage5) exten => s,n,Goto(done2) and so o...
2017 Dec 06
4
DM and ''offline'' PAM (and NSS?)...
I'm using samba 4.5 on a debian jessie (Louis packages). Rarely it happen that a power outgage tear down all the stuff, here. I've noticed that if the DM start before the DC, clearly all account data are inaccessible. To prevent or minimize that, the ''offline mode'' of winbind can be safely used also on DM servers? Or is tailoread against roaming client (portables,
2017 May 08
0
[virtio-dev] Re: [PATCH v9 2/5] virtio-balloon: VIRTIO_BALLOON_F_BALLOON_CHUNKS
...rd s/g list, possibly using INDIRECT? > > OK, I see your point, thanks. Post the two options here for an analysis: > Option1 (what we have now): > struct virtio_balloon_page_chunk { > __le64 chunk_num; > struct virtio_balloon_page_chunk_entry entry[]; > }; > Option2: > struct virtio_balloon_page_chunk { > __le64 chunk_num; > struct scatterlist entry[]; > }; This isn't what I meant really :) I meant vring_desc. > I don't have an issue to change it to Option2, but I would prefer Option1, > because I think there is no b...
2017 Dec 18
0
DM and ''offline'' PAM (and NSS?)...
...how below is correct. In linux, DOM\user != user If you want that. See: https://wiki.samba.org/index.php/OpenSSH_Single_sign-on [realms] SAMDOM.EXAMPLE.COM = { auth_to_local = RULE:[1:SAMDOM\$1] } Now, since im not sure this works ok, i dont use it on my debian servers, i use option2. option2 is ignore the "not recommended setting : "winbind use default domain = yes" Greetz, Louis > -----Oorspronkelijk bericht----- > Van: samba [mailto:samba-bounces at lists.samba.org] Namens > Marco Gaiarin via samba > Verzonden: maandag 18 december 2017 1...
2017 Dec 18
0
DM and ''offline'' PAM (and NSS?)...
...is clearly telling 'winbind' to use the default domain even if it is not supplied, if it is turned off, then 'gaio' is not a domain member, but 'LNFFVG\\gaio' is. > > > > Now, since im not sure this works ok, i dont use it on my debian > > servers, i use option2. option2 is ignore the "not recommended > > setting : "winbind use default domain = yes" > > Also i, option 2. ;-) > Just don't add a trusted domain ;-) Rowland
2011 Feb 10
0
Chi square test of proprotions in 2 groups of different sizes
...ferent. Any hint is greatly appreciated. Thank you! Dimitri G1counts <- matrix(c(54,76,125), ncol = 1) G2counts <- matrix(c(14,19,35), ncol = 1) counts<-cbind(G1counts,G2counts) colnames(counts)<-c("Group1","Group2"); rownames(counts)<-c("Option1","Option2","Option3") N1=255 N2=68 Ns=c(N1,N2) prop1<-G1counts/N1 prop2<-G2counts/N2 prop<-cbind(prop1,prop2) colnames(prop)<-c("Group1","Group2"); rownames(prop)<-c("Option1","Option2","Option3") (Ns);(counts);(prop);sum(prop...
2006 Jan 12
9
windows print migrator + "add printer command"
...pel of using the "add printer command" with cups so that the windows print migrator could be utilised. Seeing as Jerry as spent time on this it would be a shame not to know how to use it. ;-) I'm guessing that it would be along the lines of: add printer command = lpadmin option1 option2 && cupsaddsmb option1 but am currently unsure how to proceed. Can someone hit me with a clue by four? cheers geoff