search for: vaule

Displaying 20 results from an estimated 35 matches for "vaule".

Did you mean: vault
2006 Jan 10
0
Customizing autocomplete to update more than one value upon vaule select
Good day. Currently I have a system that will successfully add a row to a table. Each row in this table will represent a new product being added to a purchase order. The user can enter a quantity and then select a product code. The product code is the auto_complete field. This field works. However, once the user selects a product code then the values for the product description, buy price, and
2005 Jan 31
1
[LLVMdev] Question about Global Variable
...bal variable, like char a[10] ="test global"; And then I make some change for the Cstr and write it back to the global variable by gI->setInitializer(Constant *); Meanwhile I am trying to put a routine (constructing IR routine) into entry of main function, which is for recover initial vaule of global variable to the original string. In this routine, Type *PointerAryType = ArrayType::get(PointerType::get(Type::SByteTy) , 20); AllocaInst *PointerAry = new AllocaInst(PointerAryType , 0 , "AddrOfGstr", BB); // Here, I tried to insert IR like alloca [20 x sbyte *], for C code...
2018 Nov 29
2
Different LDAP query in different DC...
...! Rowland Penny via samba In chel di` si favelave... > S-1-5-21-160080369-3601385002-3131615632-1314 Bingo! Exactly the 'Restricted' group that own the users i use for generico LDAP access! I really think that we have found the trouble! Now... how can i fix it? ;-) And... why that vaule get not propagated?! Thanks. -- dott. Marco Gaiarin GNUPG Key ID: 240A3D66 Associazione ``La Nostra Famiglia'' http://www.lanostrafamiglia.it/ Polo FVG - Via della Bontà, 7 - 33078 - San Vito al Tagliamento (PN) marco.gaiarin(at)lanostrafamiglia.it t...
2006 Nov 05
3
Very high translation costs for g729
...9;m getting the following translation cost for g729: asterisk*CLI> show translation Server 1: g729 - 26 25 25 25 25 24 26 - 53 36 Server 2: g729 - 66 65 65 65 65 64 69 - 90 75 On my other three boxes, I get much saner vaules (costs anywhere from 3 to 6). Any ideas why two boxes have such high costs? All the servers run the same OS, updated to the same versions of everything, including kernel. Four of the five boxes run x86_64 kernels, with the two that are playing up both running x86_64 kernels. I've swi...
2003 Jul 28
3
data manipulation: getting mean value every 5 rows
...83.65 18 18 1 7129.852 18 18 1 8536.667 18 18 2 8287.8 18 18 2 7924.47 18 18 2 7928.474 18 18 2 7363.157 18 18 2 7952.593 ..... I would like to create a dataframe where I get the mean values, 5 rows at a time, of columns "number", while keeping the value in the other columns fixed to the vaules found in the first of the 5 rows (or whatever, it's the same for the 5 rows) so that the above would be "shrunk" to: temp line cage number 18 18 1 8153.2246 18 18 1 8463.3698 18 18 1 7666.0164 18 18 2 7891.2988 Any hints? Regards, Federico Calboli ========================= Fe...
2009 Jul 02
2
Using sapply to build a count matrix
...0 NA 4 5 4 [2,] 5 7 7 3 9 2 8 NA 7 9 [3,] NA 8 1 5 NA 7 10 2 NA 6 [4,] 2 NA 6 10 8 4 4 7 4 7 [5,] 7 9 10 8 3 6 1 NA 9 NA > # Since table will return only a single item of vaule FALSE > # if there are no missing values (NA) in a sample, sapply > # will return a list and not a matrix. > # So to get a matrix, the factor function needs to be used > # to identify possible results (FALSE, TRUE) for the table > # function. > sapply(1:10,function(i) table(factor...
2005 Dec 13
5
getting faster results
Hey, Can anyone answer this question. I am working with really large datasets and most of the programs I have been running take quite some time. I heard that R may be faster in Unix. I sthis true and if so can anyone reccomend which system and requirements may allow things to go faster for? Thanks!! Elizabeth Lawson --------------------------------- [[alternative
2013 Apr 10
5
Setting a CDR field from using feature codes...
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I am trying to set the CDR(userfield) to a certain vaule using the application map of features.conf but I am not able to do it. When I receive a call I would like to tag it with a client code (3 digit numeric) so I can referenci it later from the CDR. I have edited features.conf with something like: code => #111,self,SET(CDR(userfield(111)) or co...
2006 Sep 06
1
How to get multiple partial matches?
..."5" "5" "5" "5" "5" These numbers make no sense to me. They don't seem to correlate with where the "5S"'s occur in the dataframe, and they don't look like any values in the Probe column (there are no numeric vaules in the Probe column, just strings of character digit combinations). How can I select out all the rows with the same partial character match?
2011 Feb 15
2
Some questions about mdbox
...ges would be in INBOX, is this right? *3? Performance tuning with mdbox* I have read in dovecot archive about using mdbox_rotate_size & mdbox_rotate_interval to balance between a lot of smaill files (like Maildir) or really big files (a "variant" of mbox). I have tested with a big vaule of mdbox_rotate_size (100 MB) and is a complete disaster for backup:if a user delete a message, then a nightly cronjob purges the mailbox (refcount=0) a new mdbox .m file is created!. So deleting a 1 k message from the mailbox of an user is a new 99 MB file to backup. Any hint about this? I am al...
2008 Nov 07
5
grouping data together
Hi. i have a data, and there is 3 columns, Month, Year and Total. and there is over 1000 rows for them because there is 87 years data for every month, so there is month from Jan-Dec, and year from 1900-1987, so i was wondering if i would want to make 12 groups (Jan,Feb.......,Dec), and put each year's total into the corresponding month (so every month group will have 88 values of total) how
2005 Feb 02
1
[LLVMdev] RE: Question about Global Variable
...t; Yup. > > > And then I make some change for the Cstr and write it back to the global > > variable by gI->setInitializer(Constant *); Meanwhile I am trying to put > > a routine (constructing IR routine) into entry of main function, which > > is for recover initial vaule of global variable to the original string. > > In this routine, > > Ok. > > > Type *PointerAryType = ArrayType::get(PointerType::get(Type::SByteTy) , 20); > > AllocaInst *PointerAry = new AllocaInst(PointerAryType , 0 , "AddrOfGstr", BB); > > Okay, t...
2008 May 06
5
Environments and tiers
Does anyone have any suggestions about how to deal with multiple environments/tiers? For instance, we have several environments ( production, dev, qa, etc.. ) and within each environment, different tiers ( web, data, app, etc ). Each tier is a different IP network segment, so all the hosts in each tier have different configurations for certain things like resolv.conf, ntp.conf and so on. We do
2018 Nov 29
0
Different LDAP query in different DC...
...Depends, do you want to add the ACE on other DC's or remove it ? You can add it with: samba-tool dsacl set --sddl=(A;CINPID;RPLCRC;;;S-1-5-21-160080369-3601385002-3131615632-1314) To remove it, you will have to use Windows tools unless somebody knows another way > > And... why that vaule get not propagated?! It should be propagated, so, no I don't know why it wasn't Rowland
2010 Jan 15
0
FW: Re: Fwd: Re: Fixed Point on wideband-mode: Single Frame loss on 2000 Hz sine causes "freak off"
...dec did only recover after we reduced the input signal to very small level. One thing to note is the very different "fade in time" after the frame loss for the two frequencies. I do not get the point what happens here... I will test for smaller values of cumul_gain (already tested a few vaules without success, but perhaps I missed a good one...) best regards, Frank Jean-Marc Valin <jean-marc.valin at usherbrooke.ca> hat am 14. Januar 2010 um 13:15 geschrieben: > What happens if you change that line: > > if (cumul_gain > 262144) > > to use a smaller value? Wha...
2007 Apr 02
1
TE120P and Unknown Signalling Method
I have a brand new TE120P card that I have installed and asterisk is not starting as I am getting the error: ERROR[5054] chan_zap.c: Unknown signalling method 'pri_cpe' It seems it does not matter what I change the vaule for signalling= to, it always returns it as invalid. I have tried the config from my other 2 servers running TE110P cards and the config from AusTechPartniships and they always come back as the error above. The drivers seem to be loaded ok: lsmod wcte12xp 39360 0 zaptel...
2018 Jun 18
1
[Bug 1262] New: nft insert rule ignores space in prefix value
...[15648.869932] nftables IN=lan0 OUT= MAC=… But when I refresh ruleset without recreation filter table, with the following script: #!/bin/sh # /sbin/nft flush table filter # /sbin/nft insert rule filter input log prefix "nftables " drop # other filtering rules I see space in log prefix vaule is ingored. dmesg shows the following strings: dmesg: [15783.270898] nftablesIN=lan0 OUT= MAC=… P.S. Utility version: # equery b /sbin/nft * Searching for /sbin/nft ... net-firewall/nftables-0.8-r3 (/sbin/nft) -- You are receiving this mail because: You are watching all bug changes. ---------...
2010 Oct 29
2
vertical list sum
Hi Everyone, I have a list of vectors like this (in this case it's 3 vectors but assume the vector count and the length of each vector is not known): [[1]] [1] 9 5 7 2 14 4 4 3 [[2]] [1] 3 6 25 2 14 3 3 4 [[3]] [1] 28 4 14 3 14 2 4 5 What I want to do is take the average vertically. Thus I want to do 9+3+28 /3, 5+6+4 /3, etc... and then have it return a vector. I'm
2008 Jul 29
2
why I cannot use winedbg --gdb
when I run Oblivion.exe by "winedbg --gdb", the following message appear, then it is blocked, I cannot type any letter in the terminal. if I run winedbg without "--gdb", it is OK. anyone can help? thanks! root at robwang:/mnt/home/Oblivion# winedbg --gdb Oblivion.exe 0016:0017: create process 'Z:\mnt\home\Oblivion\Oblivion.exe'/0x110670 @0x96434c (0<0>)
2003 Oct 28
5
RX gain TX gain
I have an X100p card....and it is hard to hear the person on the other end. Should I mess with these values? I have heard both yes and no to this question in the past. If yes, how much louder should I make them? Thanks, MIchael