search for: 654321

Displaying 20 results from an estimated 20 matches for "654321".

Did you mean: 54321
2012 Oct 16
0
Free space cache writeback issue
...ks like we miss writing everything to disk on unmount under rough conditions. Setup: git head cmason/master, /dev/sdv1 is a 55MB partition on an SSD. Run the following script: -- DEV=/dev/sdv1 MP=/mnt/scratch umount $MP mkfs.btrfs -M $DEV mount -o inode_cache $DEV $MP cat /dev/urandom | head -c 654321 > $MP/1 mkdir $MP/2 mv $MP/1 $MP/2/1 btrfs subvol snap $MP $MP/@1 rm $MP/2/1 umount $MP mount -o inode_cache $DEV $MP cat /dev/urandom | head -c 654321 > $MP/tempname-1 ls -li $MP/@1/2/1 $MP/tempname-1 -- Actual result: > 257 -rw-r--r-- 1 root root 654321 Oct 16 15:04 /mnt/scratch/@1/...
2008 Dec 16
4
RDNIS and asterisk
I have a couple of numbers that are diverted to a number that is conected to an isdn30 card, running asterisk 1.4. eg. 123456 => 22334455 654321 => 22334455 What I would like to know is the number of the orginal number dialled (123456 or 654321). I thought that RDNIS was the answer, but it is always coming up blank. When I did a debug on the pri span, I saw the following message Unable to handle ROSE operation 15 is this the cause...
2018 Mar 04
3
Random Seed Location
...cation of the set.seed command matter, > provided that it is applied before any commands which involve randomness > (such as partitioning)? the answer is no, it should not matter. But the proviso is important. You can determine where things are messing up using something like set.seed(654321) zk <- RNGkind() # [1] "Mersenne-Twister" "Inversion" zk z <- runif(2) z set.seed(654321) # install.packages(c('caret', 'ggplot2', 'e1071')) library(caret) all(runif(2) == z) # should be true but it is not always set.s...
2018 Mar 04
0
Random Seed Location
...er, > > provided that it is applied before any commands which involve randomness > > (such as partitioning)? > > the answer is no, it should not matter. But the proviso is important. > > You can determine where things are messing up using something like > > set.seed(654321) > zk <- RNGkind() # [1] "Mersenne-Twister" "Inversion" > zk > z <- runif(2) > z > set.seed(654321) > > # install.packages(c('caret', 'ggplot2', 'e1071')) > library(caret) > all(runif(2) == z) # should be true...
2005 Jul 22
1
Chan_capi MSN problem
.... ------------------------------------------------------------------ [general] nationalprefix=0 internationalprefix=00 rxgain=0.8 txgain=0.4 echocancel=yes ; [interfaces] context=work_incoming msn=123456 incomingmsn=123456 controller=1 softdtmf=1 accountcode= devices=2 ; context=pers_incoming msn=654321 incomingmsn=654321 controller=1 softdtmf=1 accountcode= devices=2 ------------------------------------------------------------------------ ------------ No matter how hard I try using the new syntax, I can't get outgoing calls to use the second MSN? Any help would be greatly appreciated! PS -...
2018 Mar 04
2
Random Seed Location
...at it is applied before any commands which involve randomness >> > (such as partitioning)? >> >> the answer is no, it should not matter. But the proviso is important. >> >> You can determine where things are messing up using something like >> >> set.seed(654321) >> zk <- RNGkind() # [1] "Mersenne-Twister" "Inversion" >> zk >> z <- runif(2) >> z >> set.seed(654321) >> >> # install.packages(c('caret', 'ggplot2', 'e1071')) >> library(caret) >> all(...
2018 Mar 04
0
Random Seed Location
...commands which involve randomness >>>> (such as partitioning)? >>> >>> the answer is no, it should not matter. But the proviso is important. >>> >>> You can determine where things are messing up using something like >>> >>> set.seed(654321) >>> zk <- RNGkind() # [1] "Mersenne-Twister" "Inversion" >>> zk >>> z <- runif(2) >>> z >>> set.seed(654321) >>> >>> # install.packages(c('caret', 'ggplot2', 'e1071')) >>&...
2018 Mar 05
1
Random Seed Location
...t;>> (such as partitioning)? >>>> >>>> >>>> the answer is no, it should not matter. But the proviso is important. >>>> >>>> You can determine where things are messing up using something like >>>> >>>> set.seed(654321) >>>> zk <- RNGkind() # [1] "Mersenne-Twister" "Inversion" >>>> zk >>>> z <- runif(2) >>>> z >>>> set.seed(654321) >>>> >>>> # install.packages(c('caret', 'ggplot2',...
2018 Feb 26
3
Random Seed Location
...t is below: Thank you, Gary A. Separate the original (in-sample) data from the new (out-of-sample) data. Set a random seed. > InvestTech <- as.data.frame(InvestTechRevised) > outOfSample <- InvestTech[5001:nrow(InvestTech), ] > InvestTech <- InvestTech[1:5000, ] > set.seed(654321) B. Install and load the caret, ggplot2 and e1071 packages. > install.packages(?caret?) > install.packages(?ggplot2?) > install.packages(?e1071?) > library(caret) > library(ggplot2) > library(e1071) C. Bin the predictor variables with approximately equal counts using the cut_nu...
2006 Dec 09
2
RDNIS question
Perhaps I've got the whole concept wrong, but here goes: Using 1.4, when someone from the outside dials my direct line (123456), I want it to call my extension at work (SIP/456), my extension in my home office (vpn connection to corporate lan, SIP/678) and my mobile (654321). So my dialplan is thus: exten => 123456,1,Dial(SIP/456&SIP/678&Zap/G3c/07803654321,30) exten => 123456,n(VMNoAnswer),Voicemail(${EXTEN}|su) exten => 123456,n,Hangup() this works well, with one exception: when I take the call on the mobile, the callerid info is the number of my...
2013 Jan 16
1
Libvirt node is not getting booted through network with KVM too
...llowing configuration (even with KVM it is not getting booted): < domain type='kvm'> < name>Node-2-3</name> < os> < type>hvm</type> < boot dev='network'/> < boot dev='hd'/> < /os> < memory>654321</memory> < vcpu>1</vcpu> < interface type='internal'> < source name='test1'/> < model type='am79c970a'/> < mac address='20:00:00:0F:03:01'/> < /interface> < interface type='internal'...
2018 Feb 27
0
Random Seed Location
...Separate the original (in-sample) data from the new (out-of-sample) > data. Set a random seed. > > > InvestTech <- as.data.frame(InvestTechRevised) > > outOfSample <- InvestTech[5001:nrow(InvestTech), ] > > InvestTech <- InvestTech[1:5000, ] > > set.seed(654321) > > B. Install and load the caret, ggplot2 and e1071 packages. > > > install.packages(?caret?) > > install.packages(?ggplot2?) > > install.packages(?e1071?) > > library(caret) > > library(ggplot2) > > library(e1071) > > C. Bin the predic...
2006 May 22
2
Recommended SIP phones?
I am dying here with linphone (not sure if it is crap software or just me being an idiot) but out of the box debian installations of two linphones fail with a "Got SIP response 415 "Unsupported Media Type" back from 192.168.1.3" Can anybody recommend a particular SIP soft phone that broadly satisfies the following criteria? 1. Run on linux. 2. Simple to use and setup. 3. Is
2012 Mar 29
0
Arbitrarily nesting some attributes in rabl
..."John", "last_name": "Doe", "optional": { "address": "Beverly Hills 90210", "phones":[{"number":"123456","name":"work"}, {"number":"654321","name":"mobile"}] } } The above output example describes the required fields name and last name, and the not required address and phones (which is associated in a belongs_to-has_many relationship to the object). name, last_name and address are User''s DB field...
2013 Jan 30
2
[LLVMdev] Edge Profiling
...d quickSort(int vec[], int left, int right) { int r; if (right > left) { r = partition(vec, left, right); quickSort(vec, left, r - 1); quickSort(vec, r + 1, right); } } int main(void) { int vet[MAX], i=0; srand(time(NULL)); for (i=0; i<MAX; i++) { vet[i] = rand() % 654321; } quickSort(vet, 0, MAX-1); for (i=0; i<MAX; i++) { if ((rand() % 7) > 2) { printf("Num$[%d] = %d\n", i, vet[i]); } else if ((rand() % 4) > 2) { printf("Num@[%d] = %d\n", i, vet[i]); } else if ((rand() % 2) > 1) { printf("Num#[%d] = %d\n...
2009 Jun 12
1
SAMBA+PDC+Mysql authentication Backend
...\yeruti\\profile', NULL, NULL, NULL, NULL, 32, NULL, 'S-1-5-21-2398918909-2979869015-1347180298-1228', 'S-1-5-21-2398918909-2979869015-1347180298-513', NULL, NULL, 16, 168, 21, 1260, NULL, 0, '?????????????????????', '31D6CFE0D16AE931B73C59D7E0C089C0', NULL, '654321'), (0, 2147483647, 2147483647, 1244727087, 1244679705, 2147483647, 'fulano', 'MULTI', NULL, NULL, '\\\\multi\\fulano', NULL, NULL, '\\\\multi\\fulano\\profile', NULL, NULL, NULL, NULL, 33, NULL, 'S-1-5-21-2398918909-2979869015-1347180298-1230', 'S-1-5...
2007 Dec 04
5
new facebooker
Hi guys, I am new to this list and thought i''d say hello. I am using facebooker on a new project and so far I am really pleased with it. I saw that some users are having woes with the url_rewriter breaking urls for paths outside of the facebook canvas (i.e. your site supports both facebook and non-facebook users). I don''t have a prefect answer for this but I wrote a
2002 Mar 04
3
Philips && vorbis support
...sitel-be.com > Subject: WWW: ceaudio - NETHERLANDS - HOME_AUDIO > > > > Company : - > Name : Paul de Weerd > Address : Please use e-mail > City : Amsterdam > ZipCode : 1000 AA > State : - > Country : NETHERLANDS > Telephone : 020 654321 > Subject : ceaudio > Department: HOME_AUDIO > E-mail : philips@maar.nu > Age : 25 > Sex : M > > Comments: > > I'm a happy user of the Expanium 101. My question is : Will Philips > MP3 products (such as the RUSH or Expanium series) suppor...
2003 Aug 11
1
vinum (root on vinum too) throw_rude_remark crash: endless loop
Dear colleagues, experimenting with vinum stripes and mirrors, I'd stuck myself with the following: panic: throw_rude_remark: called without config lock (from vinumconfig.c:throw_rude_remark:103) The system before this panic has two 160G drives with two vinum partitions on each (one for mirrored root and one for the rest with swap between); these were ad0 and ad2. For the experiments,
2004 Jul 13
1
codec issues between linphone and *
...om: <sip:aa@192.168.10.24>;tag=2982198999 To: <sip:1000@192.168.10.20> Call-ID: 728714378@192.168.10.24 CSeq: 20 INVITE Contact: <sip:aa@192.168.10.24> max-forwards: 10 user-agent: oSIP/Linphone-0.12.1 Content-Type: application/sdp Content-Length: 212 v=0 o=aa 123456 654321 IN IP4 192.168.10.24 s=A conversation c=IN IP4 192.168.10.24 t=0 0 m=audio 7078 RTP/AVP 110 101 b=AS:8 a=rtpmap:110 speex/8000/1 a=rtpmap:101 telephone-event/8000 a=fmtp:101 0-11 11 headers, 10 lines Using latest request as basis request Sending to 192.168.10.24 : 5060 (non-NAT) Found...