search for: ju

Displaying 20 results from an estimated 268 matches for "ju".

Did you mean: jun
2013 May 03
1
MANOVA summary.manova(m) :" residuals have rank"
.... What can it be the reason for this error message? Thank you, Ozgul Below you can see part of the table. name Season location Acetobacter Aerococcus Alishewanella Amaricoccus xls-nord-01 J w 0 0,024078979 0 0 bxls-sud-01 J w 0 0 0 0 brux-nord-04 A w 0 0 0 0 brux-sud-04 A w 0 0 0 0 br-nord-07 Ju w 0 0 0 0 br-sud-07 Ju w 0 0 0 0 b-nord-10 O w 0 0 0 0 bsud-10 O w 0,107836089 0 0,107836089 0,035945363 Z1-01 J u 0 0 0 0,040567951 Z3-01 J u 0 0 0 0 Z5-01 J d 0,023116043 0 0 0 Z7-01 J d 0,014130281 0 0 0 Z9-01 J d 0 0 0 0 Z10-01 J d 0 0 0 0 Z12-01 J d 0 0 0 0 Z1-04 A u 0 0 0 0 Z3-04 A u 0 0 0 0...
2015 Jul 02
0
[PATCH] Fix various -Wformat problems.
...ms in C format strings. The fixes here fall into the following main categories: - Using %d with an unsigned parameter. - %x and %o expect an unsigned argument. - uid_t and gid_t are unsigned on Linux. The safe way to print these is to cast them to uintmax_t and then print then using the %ju modifier (see http://stackoverflow.com/a/1401581). - Using %d to print an enum. Since enums may be either char or int, I fixed this by casting the enum to int. - strtol_error & lzma_ret are both unsigned types. --- builder/pxzcat-c.c | 24 ++++++++++++------------ cat/filesystem...
2015 Jul 02
0
[PATCH v2] Fix various -Wformat problems.
...ms in C format strings. The fixes here fall into the following main categories: - Using %d with an unsigned parameter. - %x and %o expect an unsigned argument. - uid_t and gid_t are unsigned on Linux. The safe way to print these is to cast them to uintmax_t and then print them using the %ju modifier (see http://stackoverflow.com/a/1401581). - Using %d to print an enum. Since enums may be either char or int, I fixed this by casting the enum to int. - strtol_error & lzma_ret are both unsigned types. --- builder/pxzcat-c.c | 24 ++++++++++++------------ cat/filesystem...
2010 Jun 27
1
[LLVMdev] How to assign undef value to a variable
Simply create an undef constant value and add a store instruction to store the undef value into the memory allocated by the alloca. I believe there is an llvm::Undef class. Check doxygen docs for details. -----Original Message----- From: Chayan Sarkar <chayan.ju at gmail.com> Sent: Sunday, June 27, 2010 12:05 PM To: llvmdev at cs.uiuc.edu <llvmdev at cs.uiuc.edu>; chayan.ju at gmail.com <chayan.ju at gmail.com> Subject: [LLVMdev] How to assign undef value to a variable Hi, Can any one tell me how to assign 'undef' to variable? I wa...
2011 Jul 07
5
[PATCH 0/5] checkpatch cleanups
It seems checkpatch errors krept in, this is a first go. Next run will go into usr/kinit directory. No code changes, just codingstyle fixes (verified with size(3)). maximilian attems (5): [klibc] sleep: have argument on next line [klibc] readklink: remove unneeded braces [klibc] mount: whitespace policy [klibc] ls: fix various checkpatch complaints [klibc] tests: checkpatch fixlets usr/klibc/tests/envir...
2011 Mar 14
1
AOV() may misslabel random effects.
Greetings, The aov() function may mislabel the random effects as in the example below: Has anybody else noticed this? Cordially, Giles Crane, MPH, ASA, NJPHA gilescrane at verizon.net > m2 Call: aov(formula = y ~ ap + pe + Error(ju), data = d) Grand Mean: 77.50667 Stratum 1: ju Terms: ap Sum of Squares 4322.538 Deg. of Freedom 12 13 out of 25 effects not estimable Estimated effects may be unbalanced Stratum 2: Within Terms: ap pe Residuals Sum of Squares 7047.8...
2009 Nov 13
5
smtp+pop3+imap+tls+webmail+anti spam+anti virus
hi! does anyone has a good howto, docs how to set up an smtp, pop3, imap server, with webmail, and has anti virus solution, and even spam filtering? :D [plus secure connection for the clients :D ] wich softwares are the best for this? [e.g.: "vsftpd is the most secure ftp server"..] users would be from /etc/passwd [so not virtual users] thank you! p.s.: I've already googled :(
2015 Sep 23
4
Find loops in LLVM bytecode
...d the loop body (sum += i). What should I do? I read the LLVM API document, and find some useful classes like "Loop", "LoopInfo". But I do not know how to use them in detail. Could you please give me some help? A detailed usage may be more helpful. Thanks! Best wishes, Jia-Ju Bai
2010 Jun 05
3
[LLVMdev] Converting into SSA form
...m2reg pass and obviously not getting desired thing. What I want is convert it into SSA form without replacing any variable by their constant value. Please elaborate on your point. Also, what call an inbuilt pass from my own pass after doing some analysis. Thank you & regards, Chayan On Tue, Jun 1, 2010 at 10:59 PM, Ander Martinez <dwarfnauko at gmail.com> wrote: > You can use STOREs and LOADs on memory and then use mem2reg pass. > > 2010/6/1 Chayan Sarkar <chayan.ju at gmail.com>: >> Hi, >> >> Can anyone tell me, whether it is possible to convert a...
2010 Jun 05
0
[LLVMdev] Converting into SSA form
...tions, mem2reg could rename %add11 to %c.1 when it eliminates that store, which might make the optimized form a little easier to read. On the other hand, doing that would slow down mem2reg (I don't know how much), so it shouldn't be on by default. What are you really trying to do? On Sat, Jun 5, 2010 at 5:53 AM, Chayan Sarkar <chayan.ju at gmail.com> wrote: > Suppose my Input function is like : > > myfunc(int x,int y){ >    int a=2, b=3,c=5; >    if(x>y) { >        c=a+b; >        a=6; >    } >    else { >        c=a*b; >        b=4; >    }...
2010 Jun 07
2
[LLVMdev] Converting into SSA form
...%a.0 = bitcast i32 2 to i32 So, these need to be inserted before the mem2reg pass or within the pass. In first case, how to call an inbuilt pass after doing some analysis from my own pass? In second case, how to change/modify an inbuilt pass? Please elaborate on this. Thank you, Chayan On Sun, Jun 6, 2010 at 1:32 AM, Jeffrey Yasskin <jyasskin at google.com> wrote: > There is no existing pass to do this in LLVM, mostly because it > wouldn't be useful for optimizing programs. From your input, mem2reg > produces: > > define i32 @myfunc(i32 %x, i32 %y) nounwind { > e...
2016 May 12
0
[PATCH 3/4] appliance: Move code for creating supermin appliance directory to tmpdirs.c.
...char **kernel, char **initrd, char **appliance) { - CLEANUP_FREE char *tmpdir = guestfs_get_cachedir (g); CLEANUP_FREE char *cachedir = NULL, *lockfile = NULL, *appliancedir = NULL; - struct stat statbuf; - cachedir = safe_asprintf (g, "%s/.guestfs-%ju", tmpdir, (uintmax_t) uid); - lockfile = safe_asprintf (g, "%s/lock", cachedir); + cachedir = guestfs_int_lazy_make_supermin_appliance_dir (g); + if (cachedir == NULL) + return -1; + appliancedir = safe_asprintf (g, "%s/appliance.d", cachedir); + lockfile = safe_a...
2010 Jun 05
2
[LLVMdev] Converting into SSA form
...nc(int x,int y){ int a.0=2, b.0=3,c.0=5; if(x>y) { c.1=a.0+b.0; a.1=6; } else { c.2=a.0*b.0; b.1=4; } a.2=phi(a.1,a.0); b.2=phi(b.0,b.1); c.3=phi(c.1,c.2); a.3=c.3+a.2; c.4=a.3+b.2; } Thank you for your response. On Sat, Jun 5, 2010 at 3:03 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Sat, Jun 5, 2010 at 2:03 AM, Chayan Sarkar <chayan.ju at gmail.com> wrote: >> But, the mem2reg pass removes all load store instructions. It replaces >> all variables by their if possible (kind of co...
2010 Jun 07
0
[LLVMdev] Converting into SSA form
E-path PRE requires the program in SSA form like SSAPRE algorithm. Then it finds the eliminatable path (e-path) for an expression and converts partially redundant to fully redundant and removes redundancy Chayan On Mon, Jun 7, 2010 at 1:58 PM, Eli Friedman <eli.friedman at gmail.com> wrote: > On Sun, Jun 6, 2010 at 8:56 PM, Chayan Sarkar <chayan.ju at gmail.com> wrote: >> Hi Jeffrey, >> >> Actually I am trying to implement "E-path PRE" which is based on >> non-algebric...
2010 Jun 07
1
[LLVMdev] Converting into SSA form
On Sun, Jun 6, 2010 at 8:56 PM, Chayan Sarkar <chayan.ju at gmail.com> wrote: > Hi Jeffrey, > > Actually I am trying to implement "E-path PRE" which is based on > non-algebric equivallence. So, the  variable names need to be > preserved. Then why do you want to run mem2reg befo...
2009 May 29
1
[PATCH v2] klibc-utils: add simple ls
...+ +static size_t max_linksiz = 128; +static int max_nlinks = 1; +static int max_size = 1; +static int max_uid = 1; +static int max_gid = 1; +static int max_min = 1; +static int max_maj = 1; + +static void do_preformat(const struct stat *st) +{ + int bytes; + + if ((bytes = snprintf(NULL, 0, "%ju", (uintmax_t) st->st_nlink)) > max_nlinks) + max_nlinks = bytes; + + if ((bytes = snprintf(NULL, 0, "%ju", (uintmax_t) st->st_uid)) > max_uid) + max_uid = bytes; + + if ((bytes = snprintf(NULL, 0, "%ju", (uintmax_t) st->st_gid)) > max_gid) + max_gid = b...
2009 May 28
1
[PATCH] klibc-utils: add minils
...mask) (((mode) & mask) == mask) + +static int max_nlinks = 1; +static int max_size = 1; +static int max_uid = 1; +static int max_gid = 1; +static int max_min = 1; +static int max_maj = 1; + +static void do_preformat(const struct stat *st) { + int bytes; + + if ((bytes = snprintf(NULL, 0, "%ju", (uintmax_t) st->st_nlink)) > max_nlinks) + max_nlinks = bytes; + + if ((bytes = snprintf(NULL, 0, "%ju", (uintmax_t) st->st_uid)) > max_uid) + max_uid = bytes; + + if ((bytes = snprintf(NULL, 0, "%ju", (uintmax_t) st->st_gid)) > max_gid) + max_gid = b...
2009 Nov 02
5
info about hdds in raid
How can I tell wich HDD to swap, when the "cat /proc/mdstat" says one HDD of the RAID1 array has died? Does the HDD's has some serial numbers, that I can see in "reality", and I can get that number from e.g.: a commands output? How could I know wich HDD to swap in e.g.: a RAID1 array? thank you -------------- next part -------------- An HTML attachment
2019 Jul 25
1
[PATCH] gpu: drm: qxl: Fix possible null-pointer dereferences in qxl_crtc_atomic_flush()
...58: DRM_DEBUG_KMS(..., crtc->state->active, ...); Thus, possible null-pointer dereferences may occur. To fix these bugs, crtc->state is checked before calling qxl_crtc_update_monitors_config(). These bugs are found by a static analysis tool STCheck written by us. Signed-off-by: Jia-Ju Bai <baijiaju1990 at gmail.com> --- drivers/gpu/drm/qxl/qxl_display.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/qxl/qxl_display.c b/drivers/gpu/drm/qxl/qxl_display.c index 8b319ebbb0fb..fae18ef1ba59 100644 --- a/drivers/gpu/drm/qxl/qxl_display.c ++...
2015 Apr 06
4
Samba as AD member can not validate domain user
Cit?ju Rowland Penny <rowlandpenny at googlemail.com>: >> CFG files from fileserver: >> ============ >> krb5.conf >> [libdefaults] >> default = INTERNAL.DOMAIN.LV >> dns_lookup_realm = false >> dns_lookup_kdc = true >> >> =========== >> ns...