Displaying 20 results from an estimated 279 matches for "rcp".
Did you mean:
rc
2012 Nov 15
0
[LLVMdev] X86 rcp instruction generated
Hi,
We have implemented the rcp instruction generation for X86 target architecture. We have introduced a flag -fp-rcp flag which controls the generatation of X86 rcp instruction generation.
We have observed minor effects on precision and hence hve put these transformations under the mentioned flag.
Note that -fp-rcp is only enabl...
1997 Feb 03
1
Linux rcp bug
[Mod: This is a misconfiguration of a site. nobody''s uid should not be -1 -- alex]
When playing around with rcp on Linux, we found something interesting,
that we haven''t seen mentioned on bugtraq before:
SUMMARY: Root privileges can be obtained by user nobody with uid 65535 by
exploiting a problem with /usr/bin/rcp. Many applications are running as
''nobody'', in particular the NCSA...
2003 Mar 26
1
A checksum question
I'd like to know a little about the internals of RSYNC. I am a little
confused as to why RSYNC is using both the simple 32 bit algorithm and
the MD4 checksum function on the same files. From my testing this causes
a vast overhead that is clearly not represented by RCP (fairly
obvious!). Removing checksumming from a secure whole-file LAN transfer
brings RSYNC in line with the general performance of RCP.
Can someone explain to me the rationale behind the checksum algoritm and
use within the RSYNC protocol?
I'm asking this question as I am finding it rathe...
2002 Mar 14
1
SCP or RCP standards
Hi All,
I am looking for SCP or RCP standards. I searched on the web but I am not
able to find the standards. Please mail me the link where I can find the
standards for SCP or RCP.
Thanks,
Abhijeet
2003 Feb 20
2
rsync vs. rcp
I got used to rsync's -v --progress option so much that I used it
instead of rcp even to simply copy files across the network. I dont
like software that doesnt talk to me! :-) I like the percentage bar
that --progress gives!
To my surprise, I found that, when dealing with 1GB+ files, rsync is
4-5 _times_ slower than rcp.
Yes, I know that rsync is optimized for sending delt...
2001 May 17
5
AIX SSH 2.x ssh and /etc/ftpusers rcp rlogin WRONG !
IF ssh is a replacement for rlogin,rsh etc I can accept it respecting
rlogin=false as rlogin does and rsh does not, however scp is a replacement
for rcp, and rcp does NOT use rlogin attribute, so the implementation is
NOT standard as scp fails if rlogin=false, but rcp succeeds, as documented.
thanks
mark
2003 Oct 31
1
rsync & rcp
...by
> remotely executing a cat command, i.e. "cat > foo.txt"
> and then sending data through the socket to the stdin of the remote
> process. This all works fine, except for the fact that I have to
> close the socket to force and end of file.
>
> My question is, does rcp/rsync close a socket when it sends files
> to signify and end of file? If not, how does it send multiple files
> without closing the socket?
It uses a binary protocol to delimit files and describe metadata such
as their name and ownership. As you say you cannot use the
end-of-file mark more...
2006 Oct 27
2
resolving difference in interface between rsync and cp/rcp/scp
I've run into a situation where we'd like to replace rcp with rsync, but
we've run into a difference in interface, which is causing us problems.
Here's the problem. If we run this in rsync:
> mkdir tmpdir; cd tmpdir
> mkdir a; touch a/b
> rsync -r a b/
> ls b
a/
But for all the other programs, we get something different:
>...
2003 Apr 21
0
Fix for rcp -r
rcp -r is broken in 4.7 and 4.8. A fix is included below. The
web-based bug interface is currently disabled so I can't open a bug
report. I believe the person that provided the patch to me also
indicated the problem exists in 5.0, but I'm unable to verify that
since I'm only running 4.x....
2007 Jan 17
11
[PATCH] Add RCU support into Xen - Repost
...*/
+#include <xen/types.h>
+#include <xen/kernel.h>
+#include <xen/init.h>
+#include <xen/spinlock.h>
+#include <xen/smp.h>
+#include <xen/rcupdate.h>
+#include <xen/sched.h>
+#include <asm/atomic.h>
+#include <xen/bitops.h>
+#include <xen/percpu.h>
+#include <xen/softirq.h>
+
+/* Definition for rcupdate control block. */
+struct rcu_ctrlblk rcu_ctrlblk = {
+ .cur = -300,
+ .completed = -300,
+ .lock = SPIN_LOCK_UNLOCKED,
+ .cpumask = CPU_MASK_NONE,
+};
+
+DEFINE_PER_CPU(struct rcu_data, rcu_data) = { 0L };
+
+static int blimit =...
2007 Jan 17
11
[PATCH] Add RCU support into Xen - Repost
...*/
+#include <xen/types.h>
+#include <xen/kernel.h>
+#include <xen/init.h>
+#include <xen/spinlock.h>
+#include <xen/smp.h>
+#include <xen/rcupdate.h>
+#include <xen/sched.h>
+#include <asm/atomic.h>
+#include <xen/bitops.h>
+#include <xen/percpu.h>
+#include <xen/softirq.h>
+
+/* Definition for rcupdate control block. */
+struct rcu_ctrlblk rcu_ctrlblk = {
+ .cur = -300,
+ .completed = -300,
+ .lock = SPIN_LOCK_UNLOCKED,
+ .cpumask = CPU_MASK_NONE,
+};
+
+DEFINE_PER_CPU(struct rcu_data, rcu_data) = { 0L };
+
+static int blimit =...
2003 Jun 04
8
[Bug 485] scp doesn't preserve symbolic links
...-------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From djm at mindrot.org 2003-06-04 23:28 -------
no, scp behaves like Berkeley rcp - which has never copied links.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2015 Feb 23
0
[Mesa-dev] [PATCH 2/2] nvc0/ir: improve precision of double RCP/RSQ results
Oh right. I think the NVIDIA blob executes those steps conditionally
based on the upper bits not being 0x7ff (== infinity/nan). I should do
the same thing here. [FWIW I was able to test the nv50 code last night
and that one's a total fail for rcp/rsq... will need to port that over
to my nvc0 and debug there.]
On Mon, Feb 23, 2015 at 8:24 AM, Roland Scheidegger <sroland at vmware.com> wrote:
> Does this give correct results for special floats (0, infs)?
> We tried to improve (for single floats) x86 rcp in llvmpipe with
> newt...
2020 Jul 15
3
Deprecation of scp protocol and improving sftp client
On Wed, 15 Jul 2020, Red Cricket wrote:
> I have had this in my .bashrc for years:
>
> alias scp='rsync -avzP'
Similar, though I named it rcp because nobody has the real rcp installed
any more, but sometimes I need scp to connect to systems that lack rsync.
https://evolvis.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=shellsnippets/shellsnippets.git;a=blob;f=mksh/rcp;hb=HEAD
> maybe rsync is a better replacement for scp than sftp would be...
1997 Sep 16
8
Re: Security Concern..
...il
> my procmail is -s.
If it is used as a local mail delivery agent, it should be suid
>
> >-rwxr-sr-x 1 root mail 8552 Jun 15 01:14 /usr/bin/lockfile
> I also chmoded -s this one
why>
>
> >-rwsr-xr-x 1 root bin 13937 Dec 5 1995 /usr/bin/rcp
> and also this one
losing rcp functionality.
>
> >-rwsr-xr-x 1 root bin 9516 Dec 5 1995 /usr/bin/rlogin
> I chmoded 700 it. There are some dangers.
That breaks the protocol. It was fixed long time ago
> >-r-sr-xr-x 1 root bin 6856 Dec 5 1...
2003 Oct 05
1
4.9-RC1 issues
For what it's worth...
1. You cannot do a recursive rcp to a 4.9-RC1 machine. For
example, "rcp -r somedir testbox:/tmp" fails. The attached
patch fixes this.
2. Only the dial picobsd build will compile. The others (bridge,
isp, net and router) all fail at various points.
_________________________________________________________________
G...
2005 Oct 24
0
R interpreter in Java/R plugin or RCP for Eclipse
...ces to internal data structures. I would appreciate any
comments/suggestions regarding this direction. Directness is a plus ("No,
that's a dumb idea" is fine, as long as a good explanation is provided).
My hope is that as the Eclipse environment (especially the Rich Client
Platform RCP and the Standard Widget Toolkit SWT) evolves, we can piggy-back
on it and develop a free R environment that can compete with S-Plus in the
GUI-oriented circles.
Thanks in advance,
Vu Ha, PhD.
Information and Decision Technology
Honeywell Aerospace
3660 Technology Dr.
Minneapolis, MN 55418
612-95...
2011 Jul 03
0
Web services - json-rcp
Hello.
I am starting to write a web services in RoR, and considering different
technologies to use. I am wondering if someone had experience working with
json-rcp and what are its (dis)advandages over SOAP and REST.
Thank you,
Derek
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To un...
2013 Oct 04
1
[Bug 70130] New: unable to compile fragment shader program
...24: RSQ TEMP[6].x, TEMP[6].xxxx
25: MUL TEMP[5].xyz, TEMP[5].xyzz, TEMP[6].xxxx
26: LRP TEMP[6].xyz, TEMP[1].xxxx, TEMP[5].xyzz, IMM[1].zwzz
27: MAD TEMP[7].x, IMM[0].yyyy, TEMP[0].zzzz, IMM[2].zzzz
28: MUL TEMP[7].x, TEMP[7].xxxx, IMM[2].wwww
29: ADD TEMP[7].x, IMM[2].yyyy, -TEMP[7].xxxx
30: RCP TEMP[7].x, TEMP[7].xxxx
31: MUL TEMP[7].x, IMM[2].xxxx, TEMP[7].xxxx
32: RCP TEMP[8].x, CONST[12].xxxx
33: RCP TEMP[8].y, CONST[12].yyyy
34: MUL TEMP[8].xy, TEMP[0].xyyy, TEMP[8].xyyy
35: MOV TEMP[8].xy, TEMP[8].xyyy
36: TEX TEMP[8].x, TEMP[8], SAMP[5], 2D
37: RCP TEMP[9].x, CONST[12].xxxx...
2015 Feb 23
0
[PATCH 2/2] nvc0/ir: improve precision of double RCP/RSQ results
...en/nv50_ir_lowering_nvc0.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp
index 87e75e1..9767566 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp
@@ -77,8 +77,9 @@ NVC0LegalizeSSA::handleRCPRSQ(Instruction *i)
bld.setPosition(i, false);
// 1. Take the source and it up.
- Value *src[2], *dst[2], *def = i->getDef(0);
- bld.mkSplit(src, 4, i->getSrc(0));
+ Value *input = i->getSrc(0);
+ Value *src[2], *dst[2], *guess, *def = i->getDef(0);
+ bld.mkSplit(src,...