Displaying 20 results from an estimated 41616 matches for "arguments".
Did you mean:
argument
2007 Nov 15
0
4 commits - libswfdec/swfdec_asbroadcaster.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame_internal.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_interpret.c test/trace
libswfdec/swfdec_as_frame.c | 14 ++
libswfdec/swfdec_as_frame_internal.h | 3
libswfdec/swfdec_as_function.c | 12 --
libswfdec/swfdec_as_interpret.c | 1
libswfdec/swfdec_asbroadcaster.c | 3
test/trace/arguments-5.swf |binary
test/trace/arguments-5.swf.trace | 82 +++++++++--------
test/trace/arguments-6.swf |binary
test/trace/arguments-6.swf.trace | 137 ++++++++++++++---------------
test/trace/arguments-7.swf |binary
test/trace/arguments-7.swf.trace | 137...
2013 Nov 06
1
Multiple String word replacements: Performance Issue
...D4\\b..."
Thus, those 'replacement vectors' are character vectors of length 1, each containing up to 800 words
**Main code:**
library("parallel")
library("stringr")
preprocessText<-function(x){
# Replace the 'html-and'
arguments<-list(pattern="\\&\\;",replacement="and",x=x, ignore.case=TRUE)
y<-do.call(gsub, arguments)
# Remove some special characters
arguments<-list(pattern="[^-[:alnum:]\\'\\:\\/\\$\\%\\.\\,\\+\\-\\#\\@\\_\\!\\?+[:space:]]",repl...
2013 Jan 07
2
Samba 4 on AIX with XLC
Has anyone tried building Samba 4.0 on AIX with XLC?
I'm moving right along, but tripping up on some bugs in source3/utils/net_rpc.c, source3/utils/net_rpc_printer.c, and source3/utils/net_cache.c where there is an invalid use of the ":" operator. According to some other posts on the PostgreSQL forum, this shouldn't compile anywhere, even though GCC apparently allows it??
2010 Jun 10
1
Re: Recognising an unrecognisable scanner
Hi from Z?rich,Schweiz and a hot , humid day.
The SCANNER,Canoscan LiDE 600F,is not detected by XSANE/SIMPLE SCAN.
It is probably detected :- here is the OUTPUT from TERMINAL COMMAND "sane-find-scanner -v"
*****************************************************
found USB scanner (vendor=0x04a9 [Canon], product=0x2224 [CanoScan]) at libusb:001:005
2012 Jun 13
2
drivers/block/cpqarray.c:938:2: error: too many arguments to function ‘blk_rq_map_sg’
...queue *?
drivers/block/cpqarray.c:938:2: warning: passing argument 2 of ?blk_rq_map_sg? from incompatible pointer type [enabled by default]
include/linux/blkdev.h:845:12: note: expected ?struct scatterlist *? but argument is of type ?struct request *?
drivers/block/cpqarray.c:938:2: error: too many arguments to function ?blk_rq_map_sg?
include/linux/blkdev.h:845:12: note: declared here
drivers/block/cciss.c:3339:2: warning: passing argument 1 of ?blk_rq_map_sg? from incompatible pointer type [enabled by default]
include/linux/blkdev.h:845:12: note: expected ?struct request *? but argument is of type ?s...
2012 Jun 13
2
drivers/block/cpqarray.c:938:2: error: too many arguments to function ‘blk_rq_map_sg’
...queue *?
drivers/block/cpqarray.c:938:2: warning: passing argument 2 of ?blk_rq_map_sg? from incompatible pointer type [enabled by default]
include/linux/blkdev.h:845:12: note: expected ?struct scatterlist *? but argument is of type ?struct request *?
drivers/block/cpqarray.c:938:2: error: too many arguments to function ?blk_rq_map_sg?
include/linux/blkdev.h:845:12: note: declared here
drivers/block/cciss.c:3339:2: warning: passing argument 1 of ?blk_rq_map_sg? from incompatible pointer type [enabled by default]
include/linux/blkdev.h:845:12: note: expected ?struct request *? but argument is of type ?s...
2003 Mar 13
0
Still warnings on Solaris 9 (sparc)
Sun's Forte C 6.2 Solaris 9 (sparc64),
CVS of 2.2 as of Weds 13th March about 1130 UK time
CC=cc ./configure --with-readline=/usr/local/ --with-quotas --with-utmp --with-acl-support --with-syslog --with-libsmbclient --with-automount --without-winbind
Using FLAGS = -O -I./popt -Iinclude -I./include -I./ubiqx -I./smbwrapper -I/usr/local//include -I/usr/local//include -D_LARGEFILE_SOURCE
2005 Nov 08
0
gcc4 noise
Is anyone besides me using gcc 4.*.*? I noticed that NUT generates an
enormous amount of warning noise with that compiler, mostly due to
implicit casts between signed/unsigned pointer types. Any volunteers
to de-noise the code a bit? The easy way is to insert typecasts; the
better way is to actually take care about signedness. -- Peter
gcc -I../include -O -Wall -Wsign-compare -c -o everups.o
2011 Jan 27
2
[LLVMdev] Question about compiling plugins for LLVM tools
When I load my plugin into opt or llc, I get a bunch of warnings:
llc: CommandLine Error: Argument 'use-unknown-locations' defined more than
once!
llc: CommandLine Error: Argument 'disable-debug-info-print' defined more
than once!
llc: CommandLine Error: Argument 'print-dbgscope' defined more than once!
llc: CommandLine Error: Argument 'disable-sched-hazard'
2006 Apr 09
0
Realtime oracle compiling problem
I can'T compile my oracle realtime library any more i updatet the svn
today and now i tried to recompile my oracle realtime driver and now it
gives me that errors:
cc -fPIC -I../asterisk -D_GNU_SOURCE
-I/usr/include/oracle/10.1.0.4/client -c -o res_config_oracle.o
res_config_oracle.c
res_config_oracle.c:53: warning: data definition has no type or storage
class
res_config_oracle.c: In
2014 Nov 27
2
Feature request: mixing `...` (three dots) with other formal arguments in S4 methods
...suggesting methods be dispatched based on the *contents* of ...
[...]?"
Yes, I guess currently I kind of do - but not on the argument *names*
I'm not expecting functions to detect the argument *names* from `...`, but
the relevant "argument containers" from which then the actual arguments
should be extracted and used:
I thought the *actual* arguments to be passed via `...` to subsequent
functions/methods could be put into an "arguments container" (as a list so
you could easily use them with `do.call(foo)`) that has a class that `foo`
expects for its `...` argument (e.g. `...
2013 Jan 18
3
new errors in /var/log/messages since update to 5.9
since updating to 5.9 a little while ago I find a load of these in
/var/log/messages, which I've not seen before:
Jan 17 22:17:18 fcshome ntpd[4680]: sendto(216.230.228.211) (fd=22): Invalid argument
Jan 17 22:17:20 fcshome ntpd[4680]: sendto(199.4.29.166) (fd=22): Invalid argument
Jan 17 22:17:31 fcshome ntpd[4680]: sendto(129.70.132.37) (fd=22): Invalid argument
Jan 17 22:34:22 fcshome
2013 May 26
2
[LLVMdev] Mixing noalias and regular arguments
...who is Chris Lattner in
this case, "Everything not covered by someone else".)
+/// isNoAliasArgument - Return true if this is an argument with the noalias
+/// attribute.
+bool isNoAliasArgument(const Value* V);
"const Value* V" should be "const Value *V".
+ // Arguments can't alias with noalias arguments
+ if ((isa<Argument>(O1) && isNoAliasArgument(O2)) ||
+ (isa<Argument>(O2) && isNoAliasArgument(O1)))
+ return NoAlias;
Fold this into the logic right above it:
// Arguments can't alias with local allocatio...
2009 Apr 02
2
actual argument matching does not conform to the definition (PR#13634)
...4)
In the following example (and many other cases):
quote(a=1)
# 1
the argument matching is apparently incorrect wrt. the documentation (The R
Language Definition, v 2.8.1, sec. 4.3.2, p. 23), which specifies the following
algorithm for argument matching:
1. Attempt to match named actual arguments to formal arguments exactly.
2. For the arguments remaining from step 1, attempt to match named actual
arguments to formal arguments partially.
3. For the arguments remaining from step 1, collectively match all unnamed
actual arguments to the formal argument '...', if available.
4. If any a...
2018 May 09
0
Compiling 3.13.2 under FreeBSD 11.1?
...ine-argument]
CC libglusterfs_la-common-utils.lo
cc: warning: argument unused during compilation: '-rdynamic'
[-Wunused-command-line-argument]
cc: warning: argument unused during compilation: '-rdynamic'
[-Wunused-command-line-argument]
common-utils.c:3220:58: error: too few arguments provided to
function-like macro invocation
BIT_SET (ports, tmp_port1);
^
/usr/include/sys/bitset.h:50:9: note: macro 'BIT_SET' defined here
#define BIT_SET(_s, n, p)...
2003 Mar 26
0
Solaris 9 sparc, Forte C compile errors (2_2 branch)
Still compile errors on Solaris 9 (Ultra Sparc in 64bit mode)
Forte C, 2_2 branch from CVS as of about 11am UK time.
Only errors shown: -
rebuilding include/proto.h
Using FLAGS = -O -I./popt -Iinclude -I./include -I./ubiqx -I./smbwrapper -I/usr/local//include -I/usr/local//include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DLOGFILEBASE="/usr/local/samba/var"
2014 Nov 27
2
Feature request: mixing `...` (three dots) with other formal arguments in S4 methods
...e
S4 method mechanism (for those interested see
http://stackoverflow.com/questions/26963900/generalizing-three-dots-argument-dispatch-s4-methods-for-argument-set-i
for an (conceptual) approach of how this could be realized).
AFAICT, this would require that `...` can be *mixed* with other signature
arguments, which is currently not supported as stated in `?dotsMethods`:
Quote {
Using "..." in a Signature
Beginning with version 2.8.0 of R, S4 methods can be dispatched (selected
and called) corresponding to the special argument ?...?. Currently, ?...?
cannot be mixed with other formal argumen...
2013 May 27
2
[LLVMdev] Mixing noalias and regular arguments
...single caller in BasicAA, maybe move it there?
Nick
>
> -----Original Message-----
> From: Nick Lewycky [mailto:nicholas at mxc.ca]
> Sent: Sunday, May 26, 2013 09:54
> To: Kuperstein, Michael M
> Cc: LLVMdev at cs.uiuc.edu
> Subject: Re: [LLVMdev] Mixing noalias and regular arguments
>
> Kuperstein, Michael M wrote:
>> Ping?
>
> Pong! Sorry for the slow review, I had this patch starred but hadn't got around to it. Yes, the rationale and implementation are correct.
>
>> (Is there a code owner for AA, btw?)
>
> (It falls back on the more gener...
2014 Nov 28
1
Feature request: mixing `...` (three dots) with other formal arguments in S4 methods
Well, the benefit lies in the ability to pass along arguments via `...` to
more than one recipient that use *identical argument names* and/or when
these recipients are not necessarily located on the same calling stack
layer.
I'm *not* after a *general* change in the way arguments are
dispatched/functions are called as I'm actually a big friend of kee...
2011 Feb 02
0
[LLVMdev] Question about compiling plugins for LLVM tools
On Thu, Jan 27, 2011 at 1:27 AM, Talin <viridia at gmail.com> wrote:
> When I load my plugin into opt or llc, I get a bunch of warnings:
>
> llc: CommandLine Error: Argument 'use-unknown-locations' defined more than
> once!
> llc: CommandLine Error: Argument 'disable-debug-info-print' defined more
> than once!
> llc: CommandLine Error: Argument