search for: _data

Displaying 20 results from an estimated 118 matches for "_data".

Did you mean: data
2016 Dec 06
2
2.2.27 panic file mail-index-map.c: line 549 (mail_index_map_lookup_seq_range): assertion failed: (first_uid > 0)
...and they are below. I will mail you the binary and core in seperate mail. (gdb) f 14 #14 0x08058219 in cmd_search (cmd=0x85e1800) at cmd-search.c:42 42 ret = imap_search_args_build(cmd, args, charset, &sargs); (gdb) p args[0] $1 = {type = IMAP_ARG_ATOM, parent = 0x0, str_len = 3, _data = {str = 0x85e40f8 "ALL", literal_size = 140394744, list = {arr = {buffer = 0x85e40f8, element_size = 0}, v = 0x85e40f8, v_modifiable = 0x85e40f8}}, literal8 = 0} (gdb) p args[1] $2 = {type = IMAP_ARG_ATOM, parent = 0x0, str_len = 3, _data = {str = 0x85e4100 "NOT", literal...
2016 Dec 06
2
2.2.27 panic file mail-index-map.c: line 549 (mail_index_map_lookup_seq_range): assertion failed: (first_uid > 0)
...5d0, change_uidsets=true, search_saved_uidset=0x85e0e7c) at > mail-search.c:45 > i = 1 > seq1 = 1 > seq2 = 78 > #11 mail_search_arg_init (args=0x8602500, arg=0x86025d0, > change_uidsets=true, search_saved_uidset=0x85e0e7c) at mail-search.c:72 > _data_stack_cur_id = 4 > thread_args = <value optimized out> > keywords = {0xbfe82b78 "?+?o\231F", 0x46b936 > "\204?u?\211?\204?u?\203?\020^_]?\213E\b\211?\213P\b\213@\f?\004$\001"} > __FUNCTION__ = "mail_search_arg_init" > #12 0...
2010 Jul 07
2
What does `_data` mean in transform()?
...X Y Z 1 1 1 0 2 2 2 0 3 3 3 0 4 4 4 0 5 5 5 0 6 6 6 0 7 7 7 0 8 8 8 0 9 9 9 0 10 10 10 0 I try to look at the source code to understand what transform() does. I know that ` can be used to refer to a column in a data.frame. But I don't understand what the usage of `_data` in transform.data.frame. Could you please help me understand what `_data` means and min doesn't work row by row? > transform.data.frame function (`_data`, ...) { e <- eval(substitute(list(...)), `_data`, parent.frame()) tags <- names(e) inx <- match(tags, names(`_data...
2013 Feb 15
1
Dovecot-2.1.14 - pop3 processes always hangs forever - another follow-up
...2 and the log shows (here, when the user connects for the first time) dovecot[2997]: pop3-login: Login: user=<user2>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, mpid=3113, secured, session=<GTOlMjfV3gB/AAAB> dovecot[2997]: pop3(user2): Debug: Effective uid=100003, gid=100003, home=/_Data/Mailstores/100003 dovecot[2997]: pop3(user2): Debug: Home dir not found: /_Data/Mailstores/100003 dovecot[2997]: pop3(user2): Debug: fs: root=/_Data/Mailstores/100003/mboxes, index=, control=, inbox=/_Data/Mailstores/100003/mboxes/inbox, alt= dovecot[2997]: pop3(user2): Debug: Namespace : /_Data...
2023 Mar 02
1
transform.data.frame() ignores unnamed arguments when no named argument is provided
Dear r-devel, See below: transform(data.frame(a = 1), 2, 3) #> a #> 1 1 transform(data.frame(a = 1), b=2, 3) #> a b X3 #> 1 1 2 3 We need a small modification to make it work consistently, see below: transform.data.frame <- function (`_data`, ...) { e <- eval(substitute(list(...)), `_data`, parent.frame()) tags <- names(e) ## NEW LINE ----------------------------------------------- if (is.null(tags)) tags <- character(length(e)) inx <- match(tags, names(`_data`)) matched <- !is.na(inx) if (any(match...
2013 Feb 08
0
Dovecot-2.1.14 - pop3 processes always hangs forever
...OK Logout completed. Connection closed by foreign host. In mail.log: dovecot[2997]: imap-login: Login: user=<user1>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, mpid=3006, secured, session=<EOWWzjbVxQB/AAAB> dovecot[2997]: imap(user1): Debug: Effective uid=100002, gid=100002, home=/_Data/Mailstores/100002 dovecot[2997]: imap(user1): Debug: Home dir not found: /_Data/Mailstores/100002 dovecot[2997]: imap(user1): Debug: fs: root=/_Data/Mailstores/100002/mboxes, index=, control=, inbox=/_Data/Mailstores/100002/mboxes/inbox, alt= dovecot[2997]: imap(user1): Debug: Namespace : /_Data...
2009 May 19
3
Remove objects names like character String
Hi, how can I use rm() on objects named like: paste("site",i,"_data",sep="") while looping through i? I tried rm(paste("site",i,"_data",sep="")) but I get the error that rm() must contain names or text strings which is confusing me as I thought paste() would create something like that...? Thanks, Katharina...
2003 Jan 17
1
More info - S-Plus compatability
...nts Execution halted. traceback() 8: scan(file=file, what=what, sep = sep, quote = quote, dec = dec, nmax = nrows, skip =0, na.strings, quiet = TRUE, fill = fill, strip.white = strip.white, nlak.lines.skip = blank.lines.skip, multi.line = FLASE, comment.char = comment.char) 7: read.table("_data\\TempFile, sep = ",", col.names = c("pair1", "pair2")) 6:ReadIBD.data("ibd.out") 5:RunGH(dat) 4:Read.Data(dat, x, HRallele) 3:eval.with.vis(expr, envir, enclos) 2:eval.with.vis(ei, envir) 1:source("TrendTest.Main.SSC") grep -e 'read.table; *.S...
2010 Jun 28
2
[LLVMdev] Strange pointer aliasing behaviour
On Jun 27, 2010, at 2:26 PM, Eugene Toder wrote: > Hi Dan, > > Are you referring to my reasoning for why _length and _data[i] do not > alias? No, I was referring to the discussion of C99 6.7.2.1, 6.5.6, 6.2.6, and so on. > I don't think this needs TBAA or any "strict" aliasing rules. > All that sufficient is 1) assumption about struct layout: > offsetof(_length) < offsetof(_data) 2) assum...
2010 Jun 16
3
[LLVMdev] Strange pointer aliasing behaviour
I'm hitting a strange pointer aliasing "bug". Here is a test case : /* SOURCE CODE */ #define little_list_size 8 class LittleList1 { public: int _length; double _data[ little_list_size ]; LittleList1( int length ) { _length = length; for( int i=0; i<length; i++ ) _data[i] = 0; } }; class LittleList2 { public: int _length; double _data[ little_list_size ]; LittleList2( int length ) { _length = length; for( int i=0; i<_length; i++ ) _...
2023 Mar 02
1
transform.data.frame() ignores unnamed arguments when no named argument is provided
...1), 2, 3) > > #> a > > #> 1 1 > > > transform(data.frame(a = 1), b=2, 3) > > #> a b X3 > > #> 1 1 2 3 > > > We need a small modification to make it work consistently, see below: > > > transform.data.frame <- function (`_data`, ...) { > > e <- eval(substitute(list(...)), `_data`, parent.frame()) > > tags <- names(e) > > ## NEW LINE ----------------------------------------------- > > if (is.null(tags)) tags <- character(length(e)) > > inx <- match(tags, names(...
2010 Jun 28
0
[LLVMdev] Strange pointer aliasing behaviour
...ddition, so according to llvm rules addition can overflow and i can be < 0. Also, if original example used unsigned type (e.g. size_t, which is very common), I don't think ir can express the fact that i is guaranted to be >= 0. Another line of reasoning is that if sizeof(i)*8+log2(sizeof(_data[0])) > address_size_in_bits, overflowing i requires going out of bounds when storing to _data[i] (because address space can't contain objects large enough). Can this be used for alias analysis? Eugene On Mon, Jun 28, 2010 at 7:46 PM, Dan Gohman <gohman at apple.com> wrote: > >...
2010 Jun 27
0
[LLVMdev] Strange pointer aliasing behaviour
Hi Dan, Are you referring to my reasoning for why _length and _data[i] do not alias? I don't think this needs TBAA or any "strict" aliasing rules. All that sufficient is 1) assumption about struct layout: offsetof(_length) < offsetof(_data) 2) assumption that i >= 0. My understanding is that 1) is guaranteed by llvm rules and 2) by C rules, howe...
2010 Jun 27
2
[LLVMdev] Strange pointer aliasing behaviour
...offsetof macro, which > would have no use otherwise; 6.2.6/4, which allows to copy any object > into array of chars; aliasing rules of 6.5, which allow accessing any > object through char*. > > On the original subject -- in this example, isn't it guaranteed that > _length and _data[i] do not alias? i is non-negative (if it's unsigned > -- by definition, if it's signed -- because signed overflow is > undefined behaviour), so &_data[i] >= &_data > &_length. > > Eugene > > On Thu, Jun 17, 2010 at 6:58 PM, John McCall <rjmccall at...
2012 Oct 29
0
data.frame() args in transform()
...--------------------------------------- Index: src/library/base/man/transform.Rd =================================================================== --- src/library/base/man/transform.Rd (revision 61043) +++ src/library/base/man/transform.Rd (working copy) @@ -27,6 +27,10 @@ \code{_data}. The tags are matched against \code{names(_data)}, and for those that match, the value replace the corresponding variable in \code{_data}, and the others are appended to \code{_data}. + + \code{transform.data.frame} also accepts the additional named + arguments that the \code{data.frame}...
2009 Jun 08
2
[PATCH] few minor bugfixes
...-46,9 +47,6 @@ /* constants */ -// port to try to listen on, if we can't, increment until we find one we can -const int PORT_RANGE_START = 5600; - // max length of a vm name const int VM_NAME_MAX_LEN = 250; @@ -137,6 +135,8 @@ stop_tunnel(void) static gpointer tunnel_thread (gpointer _data) { + struct hostent *dns_serv; + //char vm_data[VM_NAME_MAX_LEN]; int local_server_socketfd, ovirt_server_socket, client_socketfd; unsigned int local_server_len, client_len, ovirt_server_len; @@ -145,6 +145,9 @@ tunnel_thread (gpointer _data) struct sockaddr_in ovirt_server_address;...
2009 Jul 19
1
transform(_data,...) using strptime gives an error
I have timstamped data like this: > sd[1:10,] Tstamp Density Mesh50 Mesh70 Mesh100 Mesh150 Mesh200 2 2009/02/27 07:00 30.5 0.7 10.7 21.4 32.8 41.6 3 2009/02/27 08:00 32.2 1.6 12.4 23.3 34.5 43.0 4 2009/02/27 09:00 32.7 4.8 13.0 24.0 35.1 43.5 5 2009/02/27 10:00 26.7 0.3 6.5 17.6 28.1 36.9 6 2009/02/27 11:00
2009 Dec 04
0
Renaming columns of a data.frame
...aming function that has a syntax consistent with the 'transform' function (unlike 'rename', whose arguments have a reverse syntax compared to 'transform'). Here is my attempt at a rename function similar to 'transform'. Improvements are welcome. ren <- function(`_data`, ...){ # Influenced by transform.data.frame e <- unlist(list(...)) inx <- match(e, names(`_data`)) if(any(is.na(inx))) stop("Couldn't find these columns in the data: ", paste(as.vector(e)[is.na(inx)], collapse=" ") ) names(`_data`)[inx] <- na...
2009 Jun 01
2
[PATCH viewer] few minor bugfixes
...-46,9 +47,6 @@ /* constants */ -// port to try to listen on, if we can't, increment until we find one we can -const int PORT_RANGE_START = 5600; - // max length of a vm name const int VM_NAME_MAX_LEN = 250; @@ -137,6 +135,8 @@ stop_tunnel(void) static gpointer tunnel_thread (gpointer _data) { + struct hostent *dns_serv; + //char vm_data[VM_NAME_MAX_LEN]; int local_server_socketfd, ovirt_server_socket, client_socketfd; unsigned int local_server_len, client_len, ovirt_server_len; @@ -145,6 +145,9 @@ tunnel_thread (gpointer _data) struct sockaddr_in ovirt_server_address;...
2010 Jun 26
0
[LLVMdev] Strange pointer aliasing behaviour
...wever there are many hints -- offsetof macro, which would have no use otherwise; 6.2.6/4, which allows to copy any object into array of chars; aliasing rules of 6.5, which allow accessing any object through char*. On the original subject -- in this example, isn't it guaranteed that _length and _data[i] do not alias? i is non-negative (if it's unsigned -- by definition, if it's signed -- because signed overflow is undefined behaviour), so &_data[i] >= &_data > &_length. Eugene On Thu, Jun 17, 2010 at 6:58 PM, John McCall <rjmccall at apple.com> wrote: > >...