search for: 4098

Displaying 20 results from an estimated 72 matches for "4098".

Did you mean: 4096
2007 Jun 13
1
passing (or obtaining) index or element name of list to FUN in lapply()
Hello everyone, I wonder if there is a way to pass the index or name of a list to a user-specified function in lapply(). For instance, my desired effect is something like the output of > L <- list(jack=4098,sape=4139) > lapply(seq(along=L),function(i,x) if(i==1) "jack" else "sape",x=L) [[1]] [1] "jack" [[2]] [1] "sape" > lapply(seq(along=L),function(i,x) if(names(x)[i]=="jack") 1 else 2,x=L) [[1]] [1] 1 [[2]] [1] 2 But by passing L as the fir...
2007 Nov 20
3
Problem deleting tc rules
...IPOCTETHEX> is the last octet of the user''s IP address. This works and I get a tc tree like this: filter parent 1: protocol ip pref 5 u32 filter parent 1: protocol ip pref 5 u32 fh 2: ht divisor 256 filter parent 1: protocol ip pref 5 u32 fh 2:1:800 order 2048 key ht 2 bkt 1 flowid 1:4098 (rule hit 0 success 0) match 0a050001/ffffffff at 16 (success 0 ) filter parent 1: protocol ip pref 5 u32 fh 800: ht divisor 1 filter parent 1: protocol ip pref 5 u32 fh 800::800 order 2048 key ht 800 bkt 0 link 2: (rule hit 0 success 0) match 00000000/00000000 at 12 (success 0 ) hash ma...
2017 Jan 24
4
Security Principals, and SID's mapping bug
...te a "computer" Scheduled task. Now this task MUST run as : SYSTEM (S-1-5-18) After typing "SYSTEM" the : Change user/group ( at security options ) in the task. It system changes to : NTDOM\SYSTEM With user : NTDOM\SYSTEM Resulting in : http://www.eventid.net/display-eventid-4098-source-Group%20Policy%20Local%20Users%20and%20Groups-eventno-11122-phase-1.htm This exact event. And the ScheduledTask is not applied to the computer, even not created in the computer. Now when i change it to : NT Authority\SYSTEM It creates the needed task, but it does not run the error: htt...
2012 Apr 12
2
domU NAT network cannot connect
...255.255.0 default gateway: 10.0.0.254 dns: 8.8.8.8 I added the iptables NAT rule: iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE But my domU still cannot connect to the network. On my dom0, "ifconfig -a" returns as follow: (note: I started the vif8.0 IF by manual) eth0: flags=4098<BROADCAST,MULTICAST> mtu 1500 ether 00:1e:37:d2:2b:da txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0...
2017 Jan 24
0
Security Principals, and SID's mapping bug
...task. > Now this task MUST run as : SYSTEM (S-1-5-18) > After typing "SYSTEM" the : Change user/group ( at security options ) > in the task. It system changes to : NTDOM\SYSTEM > > With user : NTDOM\SYSTEM > Resulting in : > http://www.eventid.net/display-eventid-4098-source-Group%20Policy%20Local%20Users%20and%20Groups-eventno-11122-phase-1.htm > This exact event. And the ScheduledTask is not applied to the > computer, even not created in the computer. > > Now when i change it to : NT Authority\SYSTEM > It creates the needed task, but it does n...
2004 Jul 01
5
Absolute ceiling on R's memory usage = 4 gigabytes?
...e seen in various discussions statements such as "you will need at least 6 gigabytes of memory to normalize that many chips", but my question is this: I cannot set the memory limits of R (1.9.1) higher than 4 gigabytes as attempting to do so results in this message: WARNING: --max-vsize=4098M=4098`M': too large and ignored I experience this both on my windows box (on which I cannot allocate more than 4 gigabytes of swap space anyway), and on an the above mentioned sgi irix machine (on which I can). In view of that, I do not see what good it does to make > 4 gigabytes of ram+sw...
2016 Dec 01
4
workaround needed for Security Principals, and SID's mapping bug.
...ould see "NT AUTHORITY\System" in the box     If you affected with this bug, you wil see :  DOMAIN\system  And not NT AUTHORITY\System or buildin\system   Due to the fact that i cant type the username, i need a solution. Typing the username wil result in : Windows (7)  event id 4098  error code  0x80041316   I need a way so step 1-5 does result in : NT AUTHORITY\System     Greetz,   Louis
2011 Nov 08
1
Single-disk rpool with inconsistent checksums, import fails
Hello all, I have an oi_148a PC with a single root disk, and since recently it fails to boot - hangs after the copyright message whenever I use any of my GRUB menu options. Booting with an oi_148a LiveUSB I had around since installation, I ran some zdb traversals over the rpool and zpool import attempts. The imports fail by running the kernel out of RAM (as recently discussed in the list with
2007 Nov 28
1
Unable to lookup host in c= line,
[Nov 28 15:42:41] WARNING[4098]: chan_sip.c:4957 process_sdp: Unable to lookup host in c= line, 'IN IP4 50045' Anyone have this problem when using T.38 faxing... and some solution perhaps?
2016 Dec 02
6
workaround needed for Security Principals, and SID's mapping bug.
Editing the xml.. results in same error. ( which is logical ) The exact event from windows. Eventlog info: Source : Group Policy Scheduled Tasks. ID : 4098 USER : SYSTEM Error code : Group Policy object did not apply because it failed with error code '0x80070534 No mapping between account names and security IDs was done.' This error was suppressed. So I'll wait until this bug is fixed. I tried to read the code but thats way more diff...
2010 Mar 26
1
failed: Too many open files
.../proc/`pidof dovecot-auth`/fd | wc -l 1024 >From the above result, dovecot-auth proccess opened 10243 files, and that seems to be the limit. So I expect that adding following lines into /etc/init.d/dovecot could be fix this issue. # vi /etc/init.d/dovecot --- . /etc/init.d/functions ulimit -n 4098 <-add test -x /usr/sbin/dovecot || exit 0 <-add if [ -f /etc/sysconfig/dovecot ]; then . /etc/sysconfig/dovecot fi --- Is my understanding right? Even if so, how could I verify what files are opened by dovecot-auth? I would very much appreciate it if someone in this list could pro...
2006 Sep 07
3
comments on handbook chapter
...mention this to elad efrat, who is doing kauth work on NetBSD... -- "If you're not part of the solution, you're part of the precipitate." Unix "guru" for rent or hire -><- http://www.lightconsulting.com/~travis/ GPG fingerprint: 9D3F 395A DAC5 5CCC 9066 151D 0A6B 4098 0C55 1484
2007 Dec 07
1
Are these events normal?
...UCE-TMP UID 1542 got too little data: 3556 vs 3562 2007-12-06 16:00:23.490787500 dovecot: Error: IMAP(xxxxxxxx): FETCH for mailbox UCE-TMP UID 1542 got too little data: 3556 vs 3562 2007-12-06 16:00:24.052849500 dovecot: Error: IMAP(xxxxxxxx): FETCH for mailbox UCE-TMP UID 1543 got too little data: 4098 vs 4106 2007-12-06 16:00:24.741072500 dovecot: Error: IMAP(xxxxxxxx): FETCH for mailbox UCE-TMP UID 1543 got too little data: 4098 vs 4106 2007-12-06 16:00:25.448977500 dovecot: Error: IMAP(xxxxxxxx): FETCH for mailbox UCE-TMP UID 1544 got too little data: 4627 vs 4635 2007-12-06 16:00:26.130131500...
2004 Oct 19
1
Corel Draw 11
...eName: "MouseOverNode" err:mmio:MMIO_ParseExtA No . in szFileName: "MouseOverNode" err:mmio:MMIO_ParseExtA No . in szFileName: "MouseOverNode" err:mmio:MMIO_ParseExtA No . in szFileName: "ToolbarFlyout" fixme:system:SystemParametersInfoW Unimplemented action: 4098 (SPI_GETMENUANIMATION) err:mmio:MMIO_ParseExtA No . in szFileName: "ToolbarFlyin" fixme:imm:ImmGetContext ((nil)): stub fixme:imm:ImmReleaseContext ((nil), 0x403a7520): stub fixme:imm:ImmGetContext ((nil)): stub fixme:imm:ImmReleaseContext ((nil), 0x403a7520): stub fixme:imm:ImmGetContext...
2020 Jul 28
2
Phabricator down for maintenance tonight
...changed the way it is configured. - Had to patch some broken code in phab in the SendGrid interaction with respect to attachments: https://discourse.phabricator-community.org/t/sendgrid-mailer-metamta-differential-attach-patches-true-errors-with-the-attachment-type-cannot-contain-or-crlf-characters/4098 Then when everything was working, I took down the production instance and repeated the migration steps (except fixing the merge conflicts and the patching that I had kept in git). -- Mehdi > > MyDeveloperDay > > On Tue, Jul 28, 2020 at 6:17 PM Mehdi AMINI via llvm-dev < &gt...
2017 Oct 02
0
Issues with 'Miwa' algorithm in mvtnorm package
Good point. Now this returns 0.04062184. Hmmm..... On Mon, Oct 2, 2017 at 6:30 PM, Hollie Johnson (PGR) < h.a.johnson at newcastle.ac.uk> wrote: > Hi Eric, > > > Thanks for having a look into this. I think you have a small typo... > > B <- matrix(x, nrow=3, byrow = TRUE) should read B <- matrix(y, nrow=3, > byrow = TRUE) > > > Regards, Hollie >
2009 May 24
0
FLAC port to Symbian OS
...ymbian static library and can be used via non-standard streams. I want to upload the source, so it can be used for free. Please, contact me via this e-mail, if you are interested. Thank you. Alexander Demidov __________ Information from ESET NOD32 Antivirus, version of virus signature database 4098 (20090522) __________ The message was checked by ESET NOD32 Antivirus. http://www.eset.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/flac-dev/attachments/20090524/73dabb6f/attachment.htm
2006 Oct 12
0
how to spec elements of config file usage
Hi! I''m pretty newbie in Ruby and certainly in rspec. I''m writing a wrapper to a 3rd party API in Ruby, and will use a config file to persist the API user keys. In setting up my specs I want to say things like: "should raise exception if config file not found" "should raise exception if config file does not contain key" I figure that I''ll swap
2013 Apr 03
9
VERY odd HTTP Packet Loss
I''m running Xen 4.1.4 on Fedora 17. I have some CentOS 6 DomUs - an haproxy machine and some tomcat VMs. When clients send requests with: POST /ProposalInterface HTTP/1.1 Content-Type: text/xml Host: www.myhost.co.uk Content-Length: 2099 Expect: 100-continue Connection: Keep-Alive The "continuation" doesn''t happen. The POST is truncated at 1449 bytes, and the
2020 Jul 28
2
Phabricator down for maintenance tonight
...gured. >> - Had to patch some broken code in phab in the SendGrid interaction with >> respect to attachments: >> https://discourse.phabricator-community.org/t/sendgrid-mailer-metamta-differential-attach-patches-true-errors-with-the-attachment-type-cannot-contain-or-crlf-characters/4098 >> >> Then when everything was working, I took down the production instance and >> repeated the migration steps (except fixing the merge conflicts and the >> patching that I had kept in git). >> >> -- >> Mehdi >> >> >> >> >> &g...