search for: timex

Displaying 20 results from an estimated 50 matches for "timex".

Did you mean: time
2012 Apr 27
3
kiteChart to show real values with scalebar
...mple2 6 2 15 5 30 10"),header=TRUE) par(las=1,mfrow=c(2,1)) kiteChart(t(Y),xlim=c(-400,400),timelabels=c("2-3cm","1-2cm","0-1cm"), normalize=FALSE,shownorm=FALSE,timex=FALSE) kiteChart(t(X),xlim=c(-400,400),timelabels=c("2-3cm","1-2cm","0-1cm"), normalize=FALSE,shownorm=FALSE,timex=FALSE) My first problem with the above approach is that the kites in both graphs are overlapping. If I take out the xlim switch then the kites...
2005 Nov 20
1
use of the 'by' command & converting SPSS ANOVA/GLM syntax into R syntax
...ad of glm, but got lost. UNIANOVA avfreq BY sex WITH blik /METHOD = SSTYPE(3) /INTERCEPT = INCLUDE /EMMEANS = TABLES(OVERALL) /EMMEANS = TABLES(sex) /PRINT = DESCRIPTIVE ETASQ OPOWER HOMOGENEITY /CRITERIA = ALPHA(.05) /DESIGN = blik sex blik*sex . GLM avmth3fq avfreq BY SEX /WSFACTOR = timex 2 Polynomial /METHOD = SSTYPE (3) /PRINT = DESCRIPTIVE ETASQ TEST(MMATRIX) HOMOGENEITY /CRITERIA = ALPHA (.05) /WSDESIGN = timex /DESIGN = sex . Any assistance with either of these enquiries is most appreciated. Bob
2002 Sep 11
1
Suggest Rsync Performance Improvements
...l programme doing 1MB I/O took 16 seconds. 2. When doing rsync -a /dir1/dir2 /dir3/dir4 Do not use pipe's, as they only read/write 5k at a time this is extremly slow, check it out with Solaris truss. Use sockets with large I/O or shared memory on the same system. To see the difference try timex dd if=xyz of=lll bs=5k vs timex dd if=xyz of=lll bs=1024k 3. When allocating memory which will be accessed all the time use valloc() which is memalign(sysconf(_SC_PAGESIZE),size) It aligns memory to the page, so memory copies are word/page align and therefore faster, ie. 4 bytes are copied at...
2007 Apr 18
0
[RFC/PATCH PV_OPS X86_64 13/17] paravirt_ops - time updates
...2,7 +947,7 @@ void __init time_init(void) vxtime.tsc_quot = (USEC_PER_MSEC << US_SCALE) / cpu_khz; vxtime.last_tsc = get_cycles_sync(); set_cyc2ns_scale(cpu_khz); - setup_irq(0, &irq0); + do_time_init(); #ifndef CONFIG_SMP time_init_gtod(); Index: clean-start/include/asm-x86_64/timex.h =================================================================== --- clean-start.orig/include/asm-x86_64/timex.h +++ clean-start/include/asm-x86_64/timex.h @@ -31,14 +31,29 @@ static __always_inline cycles_t get_cycl { unsigned long long ret; unsigned eax; + unsigned int (*fn)(unsigned in...
2007 Apr 18
0
[RFC/PATCH PV_OPS X86_64 13/17] paravirt_ops - time updates
...2,7 +947,7 @@ void __init time_init(void) vxtime.tsc_quot = (USEC_PER_MSEC << US_SCALE) / cpu_khz; vxtime.last_tsc = get_cycles_sync(); set_cyc2ns_scale(cpu_khz); - setup_irq(0, &irq0); + do_time_init(); #ifndef CONFIG_SMP time_init_gtod(); Index: clean-start/include/asm-x86_64/timex.h =================================================================== --- clean-start.orig/include/asm-x86_64/timex.h +++ clean-start/include/asm-x86_64/timex.h @@ -31,14 +31,29 @@ static __always_inline cycles_t get_cycl { unsigned long long ret; unsigned eax; + unsigned int (*fn)(unsigned in...
2010 Mar 20
3
How to select a row from one dataframe that is "close" to a row in another dataframe
I have two data frames of flight data, but they have very different numbers of rows. They come from different sources, so the data are not identical. > names(oooi) [1] "FltOrigDt" "MkdCrrCd" [3] "MkdFltNbr" "DprtTrpnStnCd" [5] "ArrTrpnStnCd" "ActualOutLocalTimestamp"
2005 Sep 19
1
rsync and HP11.11 problem
Hi All, I am trying to run rsync from HP11.00 machine (source) to HP11.11 machine, as test for migration plan. The data on the source is not changing since it is snapshot of active data. Every time we try to run the following command: timex rsync -avuz --delete isynh09:/snap We get the following error: receiving file list ... done mknod "/d/snap/m01/server_metadata/postgresql/.s.PGSQL.5432" failed: Invalid argument mknod "/d/snap/m02/server_metadata/postgresql/.s.PGSQL.5432" failed: Invalid argument mkno...
2015 May 18
5
kernel/libc uapi changes for y2038
...ructures, but left the question open on how these should be best accessed from libc. The patches introduce a new __kernel_time64_t type and based on that five new data structured: struct __kernel_timespec, struct __kernel_itimerspec, struct __kernel_stat, struct __kernel_rusage, and struct __kernel_timex. This works fine for the case when all libc implementations provide their own definitions to user space, but not for the simplest case (e.g. klibc) where the user-visible structures come directly from the kernel uapi headers. I still don't know what model the various libc developers prefer, so...
2002 Feb 20
8
map_ptr warning
I am trying to finalize the use of rsync for updatiung a new nfs server before we take the old one offline. I keep getting the following warning during the rsync process: Warning: unexpected rad size of 0 in map_ptr Any ideas where this comes from and how to make it go away? I am using rsync 2.5.2 on Solaris 8 to pull data from rsync 2.5.2 on Solaris 7. Bob roconnor@vectorpartners.com
2011 Jun 06
2
Asterisk Online Training
Good Morning, I'm thinking about buying the asterisk six-months online course, Have somebody here that bought that course? What is your opinion? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20110606/3008703d/attachment.htm>
2013 Feb 09
5
FreeBSD DDoS protection
Hi, I have a router running BGP and OSPF (bird) on FreeBSD. Are there any best practises one can take in order to protect the network from DDoS attacks. I know this isn't easy. But I would like to secure my network as much as possible. Even if I'am not able to prevent or block a ddos I would like to get some info (snmp trap parhaps) regarding the attack. Then I can contact my ISP or
2003 May 02
4
Did i get hacked?
...lso acts as a dns / mail server to the outside world. I'm using ipf and basically filter for bogus networks on the way in and out. I allow everything out keeping state, and allow this in: pass in proto icmp from any to any icmp-type squench group 200 pass in proto icmp from any to any icmp-type timex group 200 pass in proto icmp from any to any icmp-type paramprob group 200 pass in quick proto tcp from any port > 1023 to any port = smtp group 200 pass in quick proto udp from any port > 1023 to any port = domain group 200 on these ports i run qmail and tinydns i was a bit sloppy by leavi...
2007 Apr 18
0
[PATCH] paravirt_ops x86_64 , take 2
...irt_ops+PARAVIRT_swapgs); \ + jmp (paravirt_ops+PARAVIRT_swapgs+8); \ + +/* this is needed in early_idt_handler */ +#define GET_CR2_INTO_RAX \ + call *paravirt_ops+PARAVIRT_read_cr2 #endif /* __ASSEMBLY__ */ #else /* !CONFIG_PARAVIRT */ diff -urp linux-2.6.19-paravirt0/include/asm-x86_64/timex.h linux-2.6.19-paravirt1/include/asm-x86_64/timex.h --- linux-2.6.19-paravirt0/include/asm-x86_64/timex.h 2006-12-11 17:32:53.000000000 -0200 +++ linux-2.6.19-paravirt1/include/asm-x86_64/timex.h 2007-01-10 15:10:00.000000000 -0200 @@ -31,14 +31,29 @@ static __always_inline cycles_t get_cycl { u...
2007 Apr 18
0
[PATCH] paravirt_ops x86_64 , take 2
...irt_ops+PARAVIRT_swapgs); \ + jmp (paravirt_ops+PARAVIRT_swapgs+8); \ + +/* this is needed in early_idt_handler */ +#define GET_CR2_INTO_RAX \ + call *paravirt_ops+PARAVIRT_read_cr2 #endif /* __ASSEMBLY__ */ #else /* !CONFIG_PARAVIRT */ diff -urp linux-2.6.19-paravirt0/include/asm-x86_64/timex.h linux-2.6.19-paravirt1/include/asm-x86_64/timex.h --- linux-2.6.19-paravirt0/include/asm-x86_64/timex.h 2006-12-11 17:32:53.000000000 -0200 +++ linux-2.6.19-paravirt1/include/asm-x86_64/timex.h 2007-01-10 15:10:00.000000000 -0200 @@ -31,14 +31,29 @@ static __always_inline cycles_t get_cycl { u...
2015 Mar 09
1
grsync for centos 7
Francis Gerund wrote: <snip> > And FWIW, I do like, and use the CLI all the time. That's how I learned - using MS-DOS 3.2 on a 386sx box with 360k floppy drives. And 512k ram - what luxury! > > : ) You leaned on a 386 with (2?) floppy drives? I had to make do with DOS 3.0 on an 8088 w/ 2 floppy drives... and let me tell you how much fun it was to compile (I kid you not)
2004 Jan 03
1
SEEKING PART-TIME DBA ROLE (REMOTE)
...M Installation and Support *SOLARIS SYSTEM ADMIN *3rd PARTY IMPLEMENTIONS * DATAWAREHOUSING Support *SOFTWARE AND HARDWARE CAPACITY PLANNING *Oracle DATABASE MANAGEMENT *Oracle DATABASE AND APPLICATION TUNING Spent many years at Oracle Corp, and worked with client such as Kodak, Xerox Corp, and Timex. ekonic2@yahoo.com --------------------------------- Do you Yahoo!? Free Pop-Up Blocker - Get it now
2005 Dec 12
2
Using a lib in YAML fixtures
...temporal expression matching. I want to keep the expression in a binary field in my db. I figured that then in order to do the fixtures, I''d need to do some erb in the yaml file. So I came up with this: onetime: id: 1 name: One Time description: This event occurs only one time. timex: <%= REYear.new(7) & REMonth.new(24) & REDay.new(3, 0, 17, 0) %> If I try to load in the fixture, I get the following error: 1) Error: test_create(EventTest): Fixture::FormatError: a YAML error occured parsing /Users/pergesu/work/mesafire/config/../test/fixtures/events.yml. Please...
2008 Oct 20
13
[PATCH 00/13] ia64/pv_ops, xen: more paravirtualization.
....com/xenwiki/XenIA64/UpstreamMerge thanks, Diffstat: arch/ia64/include/asm/native/inst.h | 13 ++ arch/ia64/include/asm/native/patchlist.h | 38 ++++++ arch/ia64/include/asm/native/pvchk_inst.h | 8 + arch/ia64/include/asm/paravirt.h | 57 +++++++++ arch/ia64/include/asm/timex.h | 1 arch/ia64/include/asm/xen/inst.h | 28 ++++ arch/ia64/include/asm/xen/interface.h | 9 + arch/ia64/include/asm/xen/minstate.h | 11 + arch/ia64/include/asm/xen/patchlist.h | 38 ++++++ arch/ia64/include/asm/xen/privop.h | 2 arch/ia64...
2008 Oct 20
13
[PATCH 00/13] ia64/pv_ops, xen: more paravirtualization.
....com/xenwiki/XenIA64/UpstreamMerge thanks, Diffstat: arch/ia64/include/asm/native/inst.h | 13 ++ arch/ia64/include/asm/native/patchlist.h | 38 ++++++ arch/ia64/include/asm/native/pvchk_inst.h | 8 + arch/ia64/include/asm/paravirt.h | 57 +++++++++ arch/ia64/include/asm/timex.h | 1 arch/ia64/include/asm/xen/inst.h | 28 ++++ arch/ia64/include/asm/xen/interface.h | 9 + arch/ia64/include/asm/xen/minstate.h | 11 + arch/ia64/include/asm/xen/patchlist.h | 38 ++++++ arch/ia64/include/asm/xen/privop.h | 2 arch/ia64...
2008 Nov 25
13
[PATCH 00/13] ia64/pv_ops, xen: more paravirtualization. TAKE 2
...ed to 2.6.28-rc6 no essential change. Diffstat: arch/ia64/include/asm/native/inst.h | 13 ++ arch/ia64/include/asm/native/patchlist.h | 38 +++++++ arch/ia64/include/asm/native/pvchk_inst.h | 8 ++ arch/ia64/include/asm/paravirt.h | 57 ++++++++++ arch/ia64/include/asm/timex.h | 1 + arch/ia64/include/asm/xen/inst.h | 28 +++++ arch/ia64/include/asm/xen/interface.h | 9 ++ arch/ia64/include/asm/xen/minstate.h | 11 ++- arch/ia64/include/asm/xen/patchlist.h | 38 +++++++ arch/ia64/include/asm/xen/privop.h | 2 + ar...