search for: mget

Displaying 20 results from an estimated 146 matches for "mget".

Did you mean: get
2005 May 12
2
mget empty strings
Dear R community, I am a beginner to R and have a question concerning mget, about I could not find anything in the various documentation. I have a column in a dataframe x for which I want to get values in y: mget(x[,1], env=y, ifnotfound=NA) I receive an error mesage: Error in mget(x[, 1], env = y, ifnotfound = NA) : attempt to use zero-length variable name...
2007 May 01
1
Possible problem with S4 dispatch
...object of class AtomicAnnMap (subclass of AnnMap) Browse[1]> class(LLe) [1] "AtomicAnnMap" attr(,"package") [1] "AnnotationDbi" ## See what selectMethod has to say (it finds the method I'm expecting) Browse[1]> selectMethod("mget", signature(x="character", envir=class(LLe))) Method Definition: function (x, envir, mode = "any", ifnotfound = list(function(x) stop(paste("value for '", x, "' not found", sep = ""), call. = FALSE)), inherits = FA...
2020 Aug 21
4
smbclient mask command seems not to work the same way with recurse ON for mget and mput
...; recurse smb: \> prompt smb: \> mask *M.xls smb: \> mput * it transfer both AM.xls an AT.xls files, which seems not to agree what man page states: " mask <mask> This command allows the user to set up a mask which will be used during recursive operation of the mget and mput commands. The masks specified to the mget and mput commands act as filters for directories rather than files when recursion is toggled ON. The mask specified with the mask command is necessary to filter files within those directories. For example, if the mask specif...
2002 Mar 28
2
[Bug 181] Undocumented mget and mput in sftp
http://bugzilla.mindrot.org/show_bug.cgi?id=181 ------- Additional Comments From jason at rndpkt.org 2002-03-28 15:26 ------- mget and mput are just "aliased" commands to get and put, I'm assuming for some kind of compatability. mget and mput expect the get and put parameters and DO NOT function like FTP-based mget and mput (i.e. mget file1 file2.. file#). I'd be happy to submit a patch for this, but not su...
2020 Jun 23
1
mget(missingArgument)?
Currently, when mget() is used to get the value of a function's argument with no default value and no value in the call it returns the empty name (R_MissingArg). Is that the right thing to do or should it return 'ifnotfound' or give an error? E.g., > a <- (function(x) { y <- "y from function...
2020 Aug 24
0
smbclient mask command seems not to work the same way with recurse ON for mget and mput
...mask *M.xls > smb: \> mput * > > it transfer both AM.xls an AT.xls files, which seems not to agree what man > page states: > > " mask <mask> > This command allows the user to set up a mask which will be > used during recursive operation of the mget and mput commands. > > The masks specified to the mget and mput commands act as > filters for directories rather than files when recursion is toggled ON. > > The mask specified with the mask command is necessary to filter > files within those directories. For...
2020 Aug 24
4
smbclient mask command seems not to work the same way with recurse ON for mget and mput
...mput * >> >> it transfer both AM.xls an AT.xls files, which seems not to agree what >> man page states: >> >> " mask <mask> >> This command allows the user to set up a mask which will be >> used during recursive operation of the mget and mput commands. >> >> The masks specified to the mget and mput commands act as >> filters for directories rather than files when recursion is toggled ON. >> >> The mask specified with the mask command is necessary to >> filter files withi...
2020 Aug 24
0
smbclient mask command seems not to work the same way with recurse ON for mget and mput
...strange in how the DC or the Linux server are configured. So a basic issue with a basic feature suggests, again in my humble opinion, there is a kind of misunderstanding or regression bug here. Will you please confirm it should works as described by man? I have look into client.c, and the way cmd_mget and cmd_mput are programmed differs. Many thanks. Best regards. El lun., 24 ago. 2020 a las 14:48, LPC DPG (<lpcdpg at gmail.com>) escribi?: > A new update. Same behaviour with 4.6.16. Exact issue as Bug 1249. > > Many thanks. Kind regards. > > El lun., 24 ago. 2020 a las 12...
2011 Jun 09
2
Coercing Output from mget() into Proper Data Frame
Hello R-philes: I have the following function that gets the output of mget() and converts it to a data frame to return. What I am finding is that the dimensions are wrong. Basically, I get: bridesmaid wed u see m gt lt like love X.0 dress pagetrack one go X3 get 1 56 35 27 30 24 20 20 23 28 17 25 16 16 28 15 26 Instead, I want someth...
2016 Sep 05
1
mget call can trigger C stack usage error
Hi all, not sure if you will call this a bug or something else but the following silly call trigger a low level error: foo <- list(x=1) class(foo) <- "new" print.new <- function(x, ...) print(mget(names(formals()))) foo > Error: C stack usage 7969412 is too close to the limit -- Alexandre Courtiol http://sites.google.com/site/alexandrecourtiol/home *"Science is the belief in the ignorance of experts"*, R. Feynman [[alternative HTML version deleted]]
2013 Apr 22
1
Converting an environment to a list: mget vs. as.list
Hi all, An interesting discovery: if you want to convert an environment to a list, and you already know the names of the objects in the environment, using mget is about twice as fast as using as.list on the environment. https://gist.github.com/hadley/5434786 Hadley -- Chief Scientist, RStudio http://had.co.nz/
2020 Aug 24
2
smbclient mask command seems not to work the same way with recurse ON for mget and mput
...> Linux server are configured. So a basic issue with a basic feature > suggests, again in my humble opinion, there is a kind of misunderstanding > or regression bug here. > > Will you please confirm it should works as described by man? I have look > into client.c, and the way cmd_mget and cmd_mput are programmed differs. > > Many thanks. Best regards. > > El lun., 24 ago. 2020 a las 14:48, LPC DPG (<lpcdpg at gmail.com>) escribi?: > >> A new update. Same behaviour with 4.6.16. Exact issue as Bug 1249. >> >> Many thanks. Kind regards. >&g...
2014 Oct 15
1
mget timeout
hello I am trying to download a large file (9 Go) with smbclient on a linux machine from a NAS. Apparently, smbclient mget has a timeout that prevents me to download this large file. smbget is a possible solution. Also I'm doing this over an ssh tunnel. So I need to proxify smbget. Yet I cannot specify another port than 445 on smbget. I am stuck. can anyone help me? thanks -- *--* *Mouloud A?t-Kaci * Intrusion te...
2020 Aug 24
2
smbclient mask command seems not to work the same way with recurse ON for mget and mput
Dear Jeremy. Really appreciate you took your time to answer. I had already reviewed source4/client/client.c looking for mput (cmd_mput) command, but unluckily saying that my C programming skills are poor woud be really overrating them. I'm sorry to disagree for two reasons 1-. It works for mget, true that the source code is completely different. 2-. If taking a look into smbclient man latest release: " mask <mask> This command allows the user to set up a mask which will be used during recursive operation of the mget and mput commands. The masks specified to the mget and mp...
2012 Oct 24
0
Shouldn't the \usage section tell the truth?
Hi, The signature of mget() changed between R-2.15.1 and recent R-devel. In R-2.15.1: > args(mget) function (x, envir, mode = "any", ifnotfound = list(function(x) stop(paste0("value for '", x, "' not found"), call. = FALSE)), inherits = FALSE) NULL In R-devel:...
2020 Apr 30
3
io_uring cause data corruption
...000 files to a local disk D:\test\ >> 5) Verify local files in D:\test with sha256sum > I just tried to reproduce this using > Samba master on Ubuntu 19.10 kernel 5.3.0-51-generic > liburing-dev:0.4-2. > > I only tried with 100 files, and fetched > them using smbclient "mget", and the results > were always the same - identical sha256sum > hashes on all files. > > We're going to need more info to track this > down in your environment I'm afraid. > I'll do some more testing with locally mounted samba using the cifs module and also the...
2002 Mar 22
0
[Bug 181] New: Undocumented mget and mput in sftp
http://bugzilla.mindrot.org/show_bug.cgi?id=181 Summary: Undocumented mget and mput in sftp Product: Portable OpenSSH Version: 3.1p1 Platform: All OS/Version: All Status: NEW Severity: trivial Priority: P5 Component: sftp AssignedTo: openssh-unix-dev at mindrot.org ReportedBy:...
2002 Aug 18
0
SEGV on mget with wildcards with no match
This is on FreeBSD 4.6-STABLE, doing an mget with wildcard char on a non-existent file(s) produces a SEGV. Reproduce the bug as follows (Note: "zqw*" is a pattern that does not match): % sftp user at host user at host's password: sftp> mget zqw* Program received signal SIGSEGV, Segmentation fault. 0x804c5db in process_ge...
2009 Aug 31
1
mput/mget misbehavior
A couple of notes about mget/mput in SFTP (5.1p1). 1. They aren't documented in the SFTP man page 2 They misbehave -- "mput a.txt b.txt" copies a.txt to b.txt on the server "mput *.txt b.txt" copies the first wildcard match to b.txt on the server "mput a.txt b.txt c.tx...
2002 Jul 19
0
[Bug 181] Undocumented mget and mput in sftp
...|Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Additional Comments From mouring at eviladmin.org 2002-07-20 04:14 ------- mget/mput will stay undocumented. ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.