search for: miss

Displaying 20 results from an estimated 66487 matches for "miss".

Did you mean: misc
2019 Sep 30
5
Is missingness always passed on?
There's a StackOverflow question https://stackoverflow.com/q/22024082/2554330 that references this text from ?missing: "Currently missing can only be used in the immediate body of the function that defines the argument, not in the body of a nested function or a local call. This may change in the future." Someone pointed out (in https://stackoverflow.com/a/58169498/2554330) that this isn't tru...
2011 Apr 19
5
Simple Missing cases Function
Dear all I have written a function to perform a very simple but useful task which I do regularly. It is designed to show how many values are missing from each variable in a data.frame. In its current form it works but is slow because I have used several loops to achieve this simple task. Can anyone see a more efficient way to get the same results? Or is there existing function which does this? Thanks for your help Tim Function:...
2013 Jan 23
1
Arguments passing through dot-dot-dot lose ability to check for missing()?
Hi R-devel. Is the following behavior in g1() and h1() expected? It seems to make "..." arguments work slightly differently from named arguments. #missing() has the property that it looks "up the chain" #for example, "z" can be missing in f3 even if #that argument did have a name ("y") in f2 f1 <- function(x, ...) { cat("In f1, missing(x) is ", missing(x), "\n") f2(x, ...) } f2 <- functi...
2004 Aug 07
1
memory usage of S4 methods
...t; f.A <- function(a) + { + print("f.A"); + return(0); + } > f.AB <- function(a,b) + { + print("f.B"); + return(0); + } > setGeneric("f",f.default) [1] "f" > setMethod("f",signature=signature("A","B","missing","missing","missing","missing","missing","missing","missing","missing","missing","missing","missing"),f.AB); [1] "f" > setMethod("f",signature=signature("A",...
2002 Mar 19
0
BSD/OS and 2.5.2-current
...eanly, or make testing correctly : gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c log.c -o log.o log.c: In function `log_transfer': log.c:574: warning: unused parameter `file' gcc -I. -I. -g -O2 -DHAVE_CONFIG_H -Wall -W -I./popt -c options.c -o options.o options.c:273: warning: missing initializer for `long_options[0].descrip' options.c:274: warning: missing initializer for `long_options[1].val' options.c:275: warning: missing initializer for `long_options[2].val' options.c:276: warning: missing initializer for `long_options[3].val' options.c:277: warning: miss...
2011 Apr 03
1
Function for finding NA's
Quick question, I tried to find a function in available packages to find NA's for an entire data set (or single variables) and report the row of missing values (NA's for each column). I searched the typical routes through the blogs and the help manuals for 15 minutes. Rather than spend any more time searching I created my own function to do this (probably in less time than it would have taken me to find the function). Now I still have...
2006 Sep 14
2
openSSH 4.3p2
..._connect: needpriv 0 debug1: Connecting to sam [127.0.0.1] port 22. debug1: Connection established. debug1: identity file /home/rmarshall/.ssh/identity type 0 debug3: Not a RSA1 key file /home/rmarshall/.ssh/id_rsa. debug2: key_type_from_name: unknown key type '-----BEGIN' debug3: key_read: missing keytype debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whi...
2018 Nov 29
4
Unexpected argument-matching when some are missing
When trying out some variations with `[.data.frame` I noticed some (to me) odd behaviour, which I found out has nothing to do with `[.data.frame`, but rather with the way arguments are matched, when mixing named/unnamed and missing/non-missing arguments. Consider the following example: myfun <- function(x,y,z) { ? print(match.call()) ? cat('x=',if(missing(x)) 'missing' else x, '\n') ? cat('y=',if(missing(y)) 'missing' else y, '\n') ? cat('z=',if(missing(z))...
2020 Feb 27
3
[PATCH nbdkit] server: When using --run, wait for captive nbdkit to exit.
I'd like to propose we backport this to 1.18 and some earlier stable branches too. Rich.
2003 Apr 24
1
"Missing links": Hmisc and Design docs
...at/s/library/r Checked the dependencies: Hmisc: grid, lattice, mva, acepack -- all already installed Design: Hmisc, survival -- survival already installed, so installed Hmisc first All seems to go well till the "help" docs are compiled, whereupon I get several reports of "missing links", as below (where I omit cases with no such reports). I can't recall seeing "missing links" when installing other libraries. Two questions: 1. Have I overlooked something here, which I should have done? 2. Do these "missing links" matter? Or is this simply a...
2011 May 18
1
Problem SSHing to HP ILO SSH-2.0-mpSSH_0.1.0 with 5.8p1
...dentity file /home/efo/.ssh/identity type -1 debug1: identity file /home/efo/.ssh/identity-cert type -1 debug3: Incorrect RSA1 identifier debug3: Could not load "/home/efo/.ssh/id_rsa" as a RSA1 public key debug2: key_type_from_name: unknown key type '-----BEGIN' debug3: key_read: missing keytype debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_read: missing whi...
2007 Feb 08
1
bug(?) with OpenSSH 4.4+ and large DSA ID keys
...nnect: needpriv 0 debug1: Connecting to northstar [192.168.99.2] port 22. debug1: Connection established. debug1: identity file /Users/peter/.ssh/identity type 0 debug3: Not a RSA1 key file /Users/peter/.ssh/id_rsa. debug2: key_type_from_name: unknown key type '-----BEGIN' debug3: key_read: missing keytype debug2: key_type_from_name: unknown key type 'Proc-Type:' debug3: key_read: missing keytype debug2: key_type_from_name: unknown key type 'DEK-Info:' debug3: key_read: missing keytype debug3: key_read: missing whitespace debug3: key_read: missing whitespace debug3: key_rea...
2018 Nov 29
3
Unexpected argument-matching when some are missing
...t; When trying out some variations with `[.data.frame` I noticed some (to me) > > odd behaviour, > > Not just in 'myfun' ... > > plot(x=1:10, y=) > plot(x=1:10, y=, 10:1) > > In both cases, 'y=' is ignored. In the first, the plot is for y=NULL (so not 'missing' y) > In the second case, 10:1 is positionally matched to y despite the intervening 'missing' 'y=' > > So it isn't just 'missing'; it's 'not there at all' What exactly is the difference between "missing" and "not there at all&q...
2015 Nov 18
2
[PATCH] virtio_ring: Shadow available ring flags & index
...is _very_ stable; variance of < 0.5% run-to-run; figure of merit is "seconds elapsed" here) * Producer / consumer bound to Hyperthread pairs: Performance counter stats for './vring_bench_noshadow 1000000000': 343,425,166,916 L1-dcache-loads 21,393,148 L1-dcache-load-misses # 0.01% of all L1-dcache hits 61,709,640,363 L1-dcache-stores 5,745,690 L1-dcache-store-misses 10,186,932,553 L1-dcache-prefetches 1,491 L1-dcache-prefetch-misses 121.335699344 seconds time elapsed Performance counter stats for './vring_bench_shadow 100000000...
2015 Nov 18
2
[PATCH] virtio_ring: Shadow available ring flags & index
...is _very_ stable; variance of < 0.5% run-to-run; figure of merit is "seconds elapsed" here) * Producer / consumer bound to Hyperthread pairs: Performance counter stats for './vring_bench_noshadow 1000000000': 343,425,166,916 L1-dcache-loads 21,393,148 L1-dcache-load-misses # 0.01% of all L1-dcache hits 61,709,640,363 L1-dcache-stores 5,745,690 L1-dcache-store-misses 10,186,932,553 L1-dcache-prefetches 1,491 L1-dcache-prefetch-misses 121.335699344 seconds time elapsed Performance counter stats for './vring_bench_shadow 100000000...
2011 Jan 14
4
Yum packages error.
...sound.so.2(ALSA_0.9.0rc8) for package: alsa-lib ---> Package alsa-lib.i386 0:1.0.23-34.el5 set to be updated --> Processing Dependency: libasound2 = 1.0.23-34.el5 for package: alsa-lib --> Finished Dependency Resolution 1:esound-0.2.36-3.i386 from installed has depsolving problems --> Missing Dependency: libasound.so.2(ALSA_0.9.0rc4) is needed by package 1:esound-0.2.36-3.i386 (installed) alsa-lib-1.0.23-34.el5.i386 from atrpms has depsolving problems --> Missing Dependency: libasound.so.2(ALSA_0.9.0rc8) is needed by package alsa-lib-1.0.23-34.el5.i386 (atrpms) 1:control-center-...
2010 Jan 28
1
Possible issue with stdio forwarding
...ith the SSH.COM server. Here's the debug3 output from the proxy command attempting to do the stdio forwarding. debug2: ssh_connect: needpriv 0 debug1: Connecting to sfe1 [129.99.242.1] port 22. debug1: Connection established. debug1: could not open key file '/etc/ssh/ssh_host_key': Permission denied debug1: could not open key file '/etc/ssh/ssh_host_dsa_key': Permission denied debug1: could not open key file '/etc/ssh/ssh_host_rsa_key': Permission denied debug1: identity file /u/wk/imorgan/.ssh/identity type -1 debug3: Not a RSA1 key file /u/wk/imorgan/.ssh/id_rsa. de...
2020 Feb 10
3
[nbdkit PATCH] eval: Allow user override of 'missing'
...d Hat Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -169,6 +169,12 @@ create_script (const char *method, const char *value) return NULL; } + /* Special case for user override of missing */ + if (missing && strcmp (script, missing) == 0 && unlink (script) == -1) { + nbdkit_error ("unlink: %m"); + return NULL; + } + fp = fopen (script, "w"); if (fp == NULL) { nbdkit_error ("fopen: %s: %m", script); @@ -216,7 +222,7...
2008 Sep 19
1
Update troubles for wxGTK apps
...ith the RPMForge repo enabled. I just ran 'yum update', and there seems to be some trouble with the wxGTK apps. A simple 'yum update' gives this error message: --8<-------------------------------------------------------------------- --> Finished Dependency Resolution Error: Missing Dependency: libwx_gtk2u_adv-2.6.so.0 is needed by package audacity Error: Missing Dependency: libwx_gtk2u_xrc-2.6.so.0 is needed by package audacity Error: Missing Dependency: libwx_gtk2u_html-2.6.so.0(WXU_2.6) is needed by package audacity Error: Missing Dependency: libwx_gtk2u_html-2.6.so.0...
2006 Mar 15
0
Missing Dependency problem while upgraing a pure (?) whitebox 4 install to Centos 4.2
...fresh install & there should be an upgrade log file in my root from anaconda...not there) Comments? Also, how do I downgrade packages using yum to get out of this dependency hell? Can I do it with one yum command or do I have to uninstall packages creating problems one by one? Sanjay. Error: Missing Dependency: gcc = 3.4.3-9.EL4 is needed by package gcc-g77 Error: Missing Dependency: php = 4.3.9-3.2 is needed by package php-domxml Error: Missing Dependency: gcc4 = 4.0.0-0.14.EL4 is needed by package gcc4-gfortran Error: Missing Dependency: php = 4.3.9-3.2 is needed by package php-xmlrpc Err...