search for: tramp

Displaying 20 results from an estimated 24 matches for "tramp".

Did you mean: ramp
2012 Jan 12
3
remoting ESS/R with tramp
...to run R] configured >>> [in .ssh/config] such that I can `ssh t` from commandline. >>> 1 I can open an R file on the cluster with >>> `C-x C-f /t:/home/me/onlyOrigDN2.r` >>> from my laptop, and note the following >>> *Messages* >>> > Tramp: Opening connection for t using scpc...done >>> > Tramp: Encoding remote file /scpc:t:/home/me/onlyOrigDN2.r [...] >>> > Tramp: Decoding remote file /scpc:t:/home/me/onlyOrigDN2.r [...] >>> > Wrote /tmp/tramp.62007lZ.r >>> > Tramp: Decoding remote fil...
2011 Sep 03
7
scp fails after sending command: scp -v -t
I encounter a strange problem with scp / sftp: I travel quite a bit. Normally I never have had any problems using ssh / scp / sftp to connect from my laptop to my computer at home / in the office. Currently (for the next 6 months, too long to ignore it) I'll stay in a place where scp / sftp seem to fail, while as usual I have no problems to establish an interactive ssh connection to these
2009 Sep 05
4
[LLVMdev] loads from a null address and optimizations
Hi, I don't intentionally want to induce a tramp, the load null is created by an llvm optimization pass from code like: v = null; ..... v.Call (); Zoltan On Sat, Sep 5, 2009 at 11:39 PM, Bill Wendling <isanbard at gmail.com> wrote: > Hi Zoltan, > > We've come across this before where people meant to indu...
2010 Jul 15
1
[off topic] gpxelinux bartpe
...rd http://<path to iso> append iso raw Both of these I think I have working correctly. So my question I guess is for people that may have done this? Anyways I see the bartpe load screen then the xp load screen and then it blue screens. Reading the memdisk homepage I suspect that windows is tramping over memdisk. I read on the memdisk page that there are two things to deal with this and I can't find one. the other looks like it is already installed so I need to figure out what else might be going wrong. The two methods I see listed on memdisk page http://syslinux.zytor.com/wiki/index.p...
2011 Aug 31
0
[LLVMdev] [PATCH] Split init.trampoline into init.trampoline & adjust.trampoline
Hi Sanjoy, the first and last patches look good (except that you didn't add any tests for the auto-upgrade functionality). Comments on the other two below. > Attached patches split init.trampoline into adjust.trampoline and > init.trampoline, like in gcc. > > As mentioned in the previous mail, I've not made a documentation > patch, since I'm not sure about what the documented semantics of > llvm.adjust.trampoline should be. Here's what the GCC docs say: @hoo...
2011 Aug 29
3
[LLVMdev] [PATCH] Split init.trampoline into init.trampoline & adjust.trampoline
Hi! Attached patches split init.trampoline into adjust.trampoline and init.trampoline, like in gcc. As mentioned in the previous mail, I've not made a documentation patch, since I'm not sure about what the documented semantics of llvm.adjust.trampoline should be. Thanks! -- Sanjoy Das http://playingwithpointers.com ---------...
2016 Oct 31
1
problems with ESS 16.10-1 and R version 3.3.2
Hello everyone, does anyone reported similar problems with ess 16.10-1 and R version 3.3.2 RC? These are the steps I do to reproduce it - Open any R script - C-c C-n (or C-c C-j) on any line to start the interactive session - the R process is started but it's hanging and emacs "freeze" (any command is ignored) R version 3.3.2 RC (2016-10-23 r71578) -- "Sincere Pumpkin
1999 Dec 27
0
Accessing multiple Samba shares
...How do I access USER2 account too? One other issue, is the umask for all the users on Linux is set to 027. All I can see for USER1, is some dot files. Nothing else. How do I get to list all the files in a share? This is my smb.conf ==================== # Global parameters [global] workgroup = TRAMP netbios name = myhost server string = myhost syslog only = yes log level = 2 log file = /var/log/samba.log max log size = 50000 socket options = TCP_NODELAY IPTOS_LOWDELAY debug timestamp = yes security = user encrypt passwords = yes smb passwd file = /var/samba/priv...
2009 Sep 05
0
[LLVMdev] loads from a null address and optimizations
Hi Zoltan, We've come across this before where people meant to induce a trap by dereferencing a null. It doesn't work for LLVM (as you found out). Essentially, it's a valid transformation to turn this into unreachable. The better solution is to use something like __builtin_trap. -bw On Sep 5, 2009, at 2:19 PM, Zoltan Varga <vargaz at gmail.com> wrote: > >
2009 Sep 03
2
[LLVMdev] Non-local DSE optimization
...onstant %struct.RETURN ; < > %struct.RETURN*> [#uses=1] > > define void > @system__tasking__activation_chainIP > (%struct.c974001__timed_calculation* nocapture %_init) nounwind { > entry: > ret void > } > > define void @_ada_c974001() { > entry: > %tramp = call i8* @llvm.init.trampoline(i8* undef, i8* bitcast > (void (%struct.FRAME.c974001*, %struct.c974001__timed_calculation*)* > @c974001__timed_calculationB.1770 to i8*), i8* undef) ; <i8*> > [#uses=0] > unreachable > } > > declare i8* @llvm.init.trampoline(i8*, i...
2004 Apr 28
0
Emacs Speaks Statistics version 5.2.0 has been released
...architecture-independent unix support as well as support for BUGS v. 0.5 * ESS[SAS]: convert .log to .sas with ess-sas-transcript; info documentation improved; Local Variable bug fixes; SAS/IML statements/functions now highlighted; files edited remotely by ange-ftp/EFS/tramp are recognized and pressing SUBMIT opens a buffer on the remote host via the local variable ess-sas-shell-buffer-remote-init which defaults to "ssh"; changed the definition of the variable ess-sas-edit-keys-toggle to boolean rather than 0/1; added the function ess-elec...
2004 Apr 22
0
Release candidate (5.2.0rc3) of Emacs Speaks Statistics
...architecture-independent unix support as well as support for BUGS v. 0.5 * ESS[SAS]: convert .log to .sas with ess-sas-transcript; info documentation improved; Local Variable bug fixes; SAS/IML statements/functions now highlighted; files edited remotely by ange-ftp/EFS/tramp are recognized and pressing SUBMIT opens a buffer on the remote host via the local variable ess-sas-shell-buffer-remote-init which defaults to "ssh"; changed the definition of the variable ess-sas-edit-keys-toggle to boolean rather than 0/1; added the function ess-elec...
2009 Sep 06
0
[LLVMdev] loads from a null address and optimizations
...ondition is in fact a constant true (since that reduction might not have been run after ptr became a constant null) and turn it into an unconditional trap. On Sat, Sep 5, 2009 at 4:59 PM, Zoltan Varga<vargaz at gmail.com> wrote: > Hi, > >   I don't intentionally want to induce a tramp, the load null is created by > an llvm optimization > pass from code like: >    v = null; >    ..... >    v.Call (); > >             Zoltan > > On Sat, Sep 5, 2009 at 11:39 PM, Bill Wendling <isanbard at gmail.com> wrote: >> >> Hi Zoltan, >> >&g...
2009 Sep 06
0
[LLVMdev] Non-local DSE optimization
...ct.RETURN*> [#uses=1] >> >> define void >> @system__tasking__activation_chainIP >> (%struct.c974001__timed_calculation* nocapture %_init) nounwind { >> entry: >> ret void >> } >> >> define void @_ada_c974001() { >> entry: >> %tramp = call i8* @llvm.init.trampoline(i8* undef, i8* bitcast >> (void (%struct.FRAME.c974001*, %struct.c974001__timed_calculation*)* >> @c974001__timed_calculationB.1770 to i8*), i8* undef) ; <i8*> >> [#uses=0] >> unreachable >> } >> >> declare i8*...
2017 Feb 15
5
[Bug 2677] New: Provide a way to set an environment variable from ssh_config
...to the server side. E.g. when forwarding sockets, the remote socket name needs to include some string unique to the local side (like the host name) to avoid collisions between connections from different hosts. Think gpg-agent forwarding or using emacsclient on the remote host to open the file (via TRAMP) on the local host. This is currently possibly by using a wrapper script around ssh that sets some environment variable, but setting an environment variable directly in ssh_config would make things a lot smoother (no messing with PATH required). Being able to expand environment variables and use e...
2009 Sep 05
3
[LLVMdev] loads from a null address and optimizations
Hi, Currently, llvm treats the loads from a null address as unreachable code, i.e.: load i32* null is transformed by some optimization pass into unreachable This presents problems in JIT compilers like mono which implement null pointer checks by trapping SIGSEGV signals. It also looks incorrect since it changes program behavior, which might be undefined in general, but it is quite
2009 Sep 08
2
[LLVMdev] Non-local DSE optimization
...>> >>> define void @system__tasking__activation_chainIP >>> (%struct.c974001__timed_calculation* nocapture %_init) nounwind { >>> entry: >>> ret void >>> } >>> >>> define void @_ada_c974001() { >>> entry: >>> %tramp = call i8* @llvm.init.trampoline(i8* undef, i8* bitcast >>> (void (%struct.FRAME.c974001*, >>> %struct.c974001__timed_calculation*)* >>> @c974001__timed_calculationB.1770 to i8*), i8* undef) ; <i8*> >>> [#uses=0] >>> unreachable >>...
2006 May 13
4
Simple routing question from networking newbie
I''ve recently got a new modem. In fact, it''s a modem-router with NAT functionality. Before I had a plain modem-modem, and I was able to access my workstation from my remote server using the IP address assigned to me by my ISP. Now however, that IP address only reaches the modem-router and the IP address of my workstation is set by my modem-router to 192.168.0.2 How can I
2009 Sep 03
0
[LLVMdev] Non-local DSE optimization
Hi Jakub, interesting patch. I ran it over the Ada testsuite and this picked up some problems even without enabling dse-ssu. For example, "opt -inline -dse -domtree" crashes on the attached testcase. Ciao, Duncan. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: dom_crash.ll URL:
2009 Aug 31
2
[LLVMdev] Non-local DSE optimization
Hello, This patch adds non-local DSE optimization. It uses Static Single Use representation. This is my first "big" patch, please be tolerant :-) Please note that optimization is disabled by default. -Jakub -------------- next part -------------- A non-text attachment was scrubbed... Name: dse_ssu.patch Type: application/octet-stream Size: 17352 bytes Desc: not available URL: