search for: 4048

Displaying 20 results from an estimated 65 matches for "4048".

Did you mean: 2048
2006 Jun 04
2
surprising dates
...81-01-15" "1981-01-15" "1981-01-23" "1981-01-31" > summary( cbind(1:3, c) ) V1 c Min. :1.0 Min. :4017 1st Qu.:1.5 1st Qu.:4025 Median :2.0 Median :4032 Mean :2.0 Mean :4032 3rd Qu.:2.5 3rd Qu.:4040 Max. :3.0 Max. :4048 NA's : 1 > d <- a*100+28 > e <- as.Date( as.character(d), "%Y%m%d" ) > e [1] "1980-12-28" "1981-01-28" "1981-02-28" > c [1] "1980-12-31" "1981-01-31" NA > ifelse( is.na(c), e, c ) [1] 4017 4048...
2010 Dec 04
2
Question about #1 zoo-faq
...icated(dataSet1$Time)) > dataSet1[x,] Time fkl010z0 tre200s0 gre000z0 prestas0 rre150z0 tde200s0 ure200s0 4046 2009-03-29 02:10:00 0.5 3.0 0 942.1 0 1.9 92.7 4047 2009-03-29 02:20:00 0.3 2.7 0 942.1 0 1.7 93.4 4048 2009-03-29 02:30:00 0.6 2.8 0 942.2 0 1.8 92.9 4049 2009-03-29 02:40:00 0.4 2.8 0 942.3 0 1.6 92.0 4050 2009-03-29 02:50:00 0.8 2.8 0 942.2 0 1.6 92.1 > Enclosed is a dput file with the data set....
2011 Dec 07
2
[LLVMdev] Executable file size comparison
I compiled a program and standard library using clang/LLVM and found the results interesting: text data bss dec hex filename 141312 4076 16668 162056 27908 bzip2.arm 131764 4076 16668 152508 253bc bzip2.armv7 134748 4048 16624 155420 25f1c bzip2.i386 259112 4028 16732 279872 44540 bzip2.microblaze 168044 4040 16816 188900 2e1e4 bzip2.mips 167860 4040 16816 188716 2e12c bzip2.mips32r2 179032 4040 16816 199888 30cd0 bzip2.mips32r2elsf 179008 4040 16816 199864 30cb8 bz...
2019 Mar 15
0
lua policy for Weakforce and web mail failed login attempts
...edu rhost=177.69.145.193 Feb 27 09:44:35 ourserver auth[3271]: pam_unix(dovecot:auth): check pass; user unknown Feb 27 09:44:35 ourserver auth[3271]: pam_unix(dovecot:auth): authentication failure; logname= uid=0 euid=0 tty=dovecot ruser=otheruser rhost=175.143.51.221 Feb 27 09:47:32 ourserver auth[4048]: pam_unix(dovecot:auth): check pass; user unknown Feb 27 09:47:32 ourserver auth[4048]: pam_unix(dovecot:auth): authentication failure; logname= uid=0 euid=0 tty=dovecot ruser= yetanotheruser at ourserver.ourdomain.edu rhost=162.245.81.231 Feb 27 09:47:56 ourserver auth[4048]: pam_unix(dovecot:aut...
2011 Dec 08
2
[LLVMdev] Executable file size comparison
...gram and standard library using clang/LLVM and found the > > results interesting: > > > > text data bss dec hex filename > > 141312 4076 16668 162056 27908 bzip2.arm > > 131764 4076 16668 152508 253bc bzip2.armv7 > > 134748 4048 16624 155420 25f1c bzip2.i386 > > 259112 4028 16732 279872 44540 bzip2.microblaze > > 168044 4040 16816 188900 2e1e4 bzip2.mips > > 167860 4040 16816 188716 2e12c bzip2.mips32r2 > > 179032 4040 16816 199888 30cd0 bzip2.mips32r2elsf &g...
2020 Jun 18
1
Sieve-scripts won't replicate
...rep dove root 847 0.0 0.0 4200 3044 ? Ss 07:54 0:00 /usr/sbin/dovecot -F root 849 0.0 0.0 4060 2544 ? S 07:54 0:00 dovecot-team1/replicator dovecot 850 0.0 0.0 3912 1092 ? S 07:54 0:00 dovecot-team1/anvil root 851 0.0 0.0 4048 2464 ? S 07:54 0:00 dovecot-team1/log dovecot 852 0.0 0.0 4048 2692 ? S 07:54 0:00 dovecot-team1/stats root 853 0.0 0.0 6072 4368 ? S 07:54 0:00 dovecot-team1/config dovecot 855 0.0 0.0 17412 6620 ? S 07:54 0:00 dovecot-...
2011 Dec 08
0
[LLVMdev] Executable file size comparison
...n wrote: > I compiled a program and standard library using clang/LLVM and found the > results interesting: > >   text    data     bss     dec     hex filename >  141312    4076   16668  162056   27908 bzip2.arm >  131764    4076   16668  152508   253bc bzip2.armv7 >  134748    4048   16624  155420   25f1c bzip2.i386 >  259112    4028   16732  279872   44540 bzip2.microblaze >  168044    4040   16816  188900   2e1e4 bzip2.mips >  167860    4040   16816  188716   2e12c bzip2.mips32r2 >  179032    4040   16816  199888   30cd0 bzip2.mips32r2elsf >  179008    4040  ...
2007 Sep 27
1
ifelse and dates do not work together: What workaround?
...; I wonder if this is an intentional feature or an oversight. These are documented properties of the functions you are using. > in some column summaries or in ifelse operations, apparently I am losing > the date property of my vector. > ... >> ifelse( is.na(c), e, c ) > [1] 4017 4048 4076 # date property is lost As documented. From ?ifelse: Value: A vector of the same length and attributes (including class) as 'test' and data values from the values of 'yes' or 'no'. The mode of the answer will be coerced from logical to accommodat...
2011 Dec 09
0
[LLVMdev] Executable file size comparison
...ry using clang/LLVM and found the >> > results interesting: >> > >> >   text    data     bss     dec     hex filename >> >  141312    4076   16668  162056   27908 bzip2.arm >> >  131764    4076   16668  152508   253bc bzip2.armv7 >> >  134748    4048   16624  155420   25f1c bzip2.i386 >> >  259112    4028   16732  279872   44540 bzip2.microblaze >> >  168044    4040   16816  188900   2e1e4 bzip2.mips >> >  167860    4040   16816  188716   2e12c bzip2.mips32r2 >> >  179032    4040   16816  199888   30cd0 bzip2...
2006 Oct 12
6
backup system files (and permissions) over ssh
...flags excludes local_path ssh_user@server2:/full/path is there a way to do what i'm trying WITHOUT giving root ssh access ? ---------------------------------------- Read this topic online here: Sent using Mail2Forum (http://www.mail2forum.com). http://forums.nasbackup.com/viewtopic.php?p=4048#4048 ---------------------------------------- -------------- next part -------------- HTML attachment scrubbed and removed
2005 Apr 27
2
Xen configuration
Question about bridge configuration on the host and virtual machine side. I am not able to correctly configure xen so that the virtual machine can access the network. Any suggestions would really be appreciated. Gary _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2015 Feb 21
2
Call for testing: OpenSSH 6.8
On Sat, 21 Feb 2015, Corinna Vinschen wrote: > Building on 64 bit Cygwin works out of the box. However, I have trouble > with the testsuite. As usual, I'm building outside the source tree: > > - Building the testsuite fails: > > Assembler messages: > Fatal error: can't create regress/unittests/bitmap/tests.o: No such file or directory > Makefile:152:
2015 Feb 23
2
Call for testing: OpenSSH 6.8
...D WINPID TTY UID STIME COMMAND 3112 376 376 3212 ? 1049577 11:19:29 /usr/bin/sleep 3520 388 388 3716 ? 1049577 11:19:32 /usr/bin/sleep 3056 3632 3056 2100 ? 1049577 11:19:31 /home/corinna/sshbuild/bin/sshd 4048 1 4048 4048 ? 1049577 11:19:31 /home/corinna/sshbuild/bin/ssh 2372 3632 2372 4024 ? 1049577 11:19:33 /home/corinna/sshbuild/bin/sshd 2728 1 2728 2728 ? 1049577 11:19:28 /home/corinna/sshbuild/bin/ssh 2908 3632 2908...
2005 Oct 28
0
Xen and EVMS/Raid5 - Null pointer dereference
...move_wake_function+0/96] autoremove_wake_function+0x0/0x60 Oct 28 10:36:40 localhost kernel:  [autoremove_wake_function+0/96] autoremove_wake_function+0x0/0x60 Oct 28 10:36:40 localhost kernel:  [try_to_wake_up+177/208] try_to_wake_up+0xb1/0xd0 Oct 28 10:36:40 localhost kernel:  [handle_stripe+2630/4048] handle_stripe+0xa46/0xfd0 Oct 28 10:36:40 localhost kernel:  [schedule+745/1312] schedule+0x2e9/0x520 Oct 28 10:36:40 localhost kernel:  [sync_request+210/304] sync_request+0xd2/0x130 Oct 28 10:36:40 localhost kernel:  [md_do_sync+1571/2048] md_do_sync+0x623/0x800 Oct 28 10:36:40 localhost kernel:...
1997 Nov 21
1
R-beta: [WIN95] Running R from the shell
...ning via Emacs; is it possible to "remove" the windows? (all, or all but the graphics window)? best, -- -tony (Anthony Rossini) Statistics Dept., U South Carolina rossini at stat.sc.edu Columbia, SC 29208 http://www.stat.sc.edu/~rossini/ 803-777-3578(O) 803-777-4048 (fax) "'Bother,' said Pooh, as Cthulhu rose up and ate him." =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]s...
2005 Sep 18
1
trimmed mean in R seems to round the trimming fraction
...(z, trim=0.15) [1] 59.875 > mean(z, trim=0.18) [1] 59.875 > mean(z, trim=0.1999999) [1] 59.875 > mean(z, trim=0.20) [1] 57.83333 > mean(z, trim=0.40) [1] 53 Hrishikesh D. Vinod Professor of Economics, Fordham University E-Mail: Vinod at fordham.edu Tel 718-817-4065, Secretary 718-817-4048, Fax 718-817-3518 Web page: http://www.fordham.edu/economics/vinod
2006 Nov 01
1
Referencing a plugin in a spec
I am writing some specs that use ActiveMerchant to talk to a cc provider. When I try to "include ActiveMerchant::Billing" in my spec, it tells me it can''t find the plugin: ./activesupport/lib/active_support/dependencies.rb:123:in `const_missing'': uninitialized constant ActiveMerchant (NameError) Do I need to explicity require the main plugin file? Thanks, Mike Pence
2005 Oct 09
1
The latest newhidups changes
...:55:50.000000000 -0400 @@ -1087,11 +1087,11 @@ err = al175_read(x ## reg, 0x ## reg, sizeof(x ## reg)); \ if (err==-1) { \ dstate_datastale(); \ -/* goto out; \ */ alarm(0); \ return; \ } \ } while (0) +/* goto out; \ */ RECV(4000); RECV(4048); ----------------------------------------------------------------------------- -- ---------------------------------------------------------------------- Alfred Ganz alfred-ganz@agci.com AG Consulting, Inc. (203) 624-9667 440 Prospect Street # 11 New Haven, CT 06511 ---------...
1997 Sep 10
1
R-alpha: New Version Available
The newest version of R for Unix (version R-0.50-a4) is now (or will soon be) available from the following sites. NORTH AMERICA: http://lib.stat.cmu.edu/R/Alpha EUROPE: ftp://ftp.stat.math.ethz.ch/R/ ftp://statlab.uni-heidelberg.de/pub/mirrors/auckland/R/ JAPAN: ftp://ftp.u-aizu.ac.jp/pub/lang/R/ NEW ZEALAND: ftp://stat.auckland.ac.nz/pub/R/
2007 Mar 21
1
How to bind a username to an ip address with squid
Hi ALL, I am running squid with ncsa support. Each user has a username and passowrd to access Internet. Now the probles is that user now can access Internet with his username and password from all the workstations. I do not need it. So, I think if I bind username to ip address, user can access Internet from that particular pc having that ip address. How to do it? -- Thank you Indunil