Displaying 20 results from an estimated 24 matches for "tramping".
Did you mean:
ramping
2012 Jan 12
3
remoting ESS/R with tramp
Tom Roche Thu, 12 Jan 2012 11:56:25 -0500
>>> * I have access to the cluster [where I want 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*
>>> >
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 induce a trap by
> dereferencing a null. It
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.php/...
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
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
-------------- next part --------------
A non-text attachment was
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
I have defined 2 shares in my smb.conf. When I try to access these
shares from the NT box, I can access only USER1 home directory. For USER2,
I always get the login dialog. I have used smbpasswd to add USER2, but still
can't access it. 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
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
Hi,
It looks like PDT.getRootNode() returns NULL for:
define fastcc void @c974001__lengthy_calculation.
1736(%struct.FRAME.c974001* nocapture %CHAIN.185) noreturn {
entry:
br label %bb
bb:
br label %bb
}
Isn't it a bug in PostDominatorTree?
Please note that this crashes:
opt -postdomtree -debug dom_crash.bc
I think this should be reported as a bug,
-Jakub
On Sep 3, 2009, at
2004 Apr 28
0
Emacs Speaks Statistics version 5.2.0 has been released
Emacs Speaks Statistics (ESS) version 5.2 is available for download
at:
http://www.analytics.washington.edu/downloads/ess/ess-5.2.0.tar.gz
or
http://www.analytics.washington.edu/downloads/ess/ess-5.2.0.zip
Changes since 5.1.24 are listed below.
Thanks,
The ESS Core Team.
Changes/New Features in 5.2.0:
* ESS[BUGS]: new info documentation! now supports interactive
processing thanks to
2004 Apr 22
0
Release candidate (5.2.0rc3) of Emacs Speaks Statistics
We are almost ready to release Emacs Speaks Statistics (ESS) version
5.2. A release candidate, 5.2.0rc3, is available at:
http://www.analytics.washington.edu/downloads/ess/ess-5.2.0rc3.tar.gz
or
http://www.analytics.washington.edu/downloads/ess/ess-5.2.0rc3.zip
If you know of any release-critical bugs, please report them with
Emacs using "M-x ess-submit-bug-report". If no bugs are
2009 Sep 06
0
[LLVMdev] loads from a null address and optimizations
How about this:
1. A custom pass run at the beginning that inserts a null check before
every load/store:
if ( ptr == null )
trap;
Then if any pointers get optimized to null, the if condition becomes a
constant true,and the trap call should become unconditional.
2. A custom pass at the end that takes out every remaining null check
that your first pass inserted. It should first check whether
2009 Sep 06
0
[LLVMdev] Non-local DSE optimization
Jakub Staszak wrote:
> Hi,
>
> It looks like PDT.getRootNode() returns NULL for:
>
> define fastcc void @c974001__lengthy_calculation.
> 1736(%struct.FRAME.c974001* nocapture %CHAIN.185) noreturn {
> entry:
> br label %bb
>
> bb:
> br label %bb
> }
>
>
> Isn't it a bug in PostDominatorTree?
>
> Please note that this crashes:
>
2017 Feb 15
5
[Bug 2677] New: Provide a way to set an environment variable from ssh_config
https://bugzilla.mindrot.org/show_bug.cgi?id=2677
Bug ID: 2677
Summary: Provide a way to set an environment variable from
ssh_config
Product: Portable OpenSSH
Version: 7.4p1
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: ssh
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
Hello,
Bug is already fixed by Chris (see: http://llvm.org/bugs/show_bug.cgi?id=4915)
.
I added getRootNode() == NULL condition to my patch. It's not a great
solution, but it is enough for now I think. New patch attached.
-Jakub
-------------- next part --------------
A non-text attachment was scrubbed...
Name: dse_ssu-2.patch
Type: application/octet-stream
Size: 17762 bytes
Desc: not
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: