search for: _outside_

Displaying 19 results from an estimated 19 matches for "_outside_".

2006 Apr 19
4
Deployment with Capistrano
...r a deployment (with updated symlinks) that a mongrel restart does not pick up the new deployed site. It seems to me (in my linkted experience) that the HUP that is sent to mongrel does not re-evaluate the ./current symlink that Cap puts in to the appropriate release. If I do a mongrel restart from _outside_ the ./current dir by providing the -e option to mongrel, all is well. The result of all this is that a :restart from Capistrano that just sends a HUP is not effective, but I am not sufficiently familiar as yet with the pathing stuff in Cap to get it going another way. Anyway, if someone has some c...
2009 Jan 18
0
libmsi.a import library from wine, and header files available (entirely free software), available for python-win32 builds under msys+wine
...ocumented the process by which it is possible to take wine 1.1.13 (current development release) source code, modify the header files for use with mingw, create a typelibrary (using dlltool) and then, surprise-surprise, _msi.pyd successfully builds. i say successfully builds: but then, running from _outside_ of a wineconsole cmd, doing this: /usr/local/bin/wine ./python.exe -c 'import _msi' succeeds. but if you do this: /usr/local/bin/wineconsole cmd c:/python2.5/bin/python.exde -c 'import _msi' you get an "access violation - no access to memory" blah blah to be...
2003 Nov 02
0
lattice function splom
Hola! In the lattice function splom, is it possible to get the tickmarks/value labels _outside_ the scatterplot matrix, and not inside each of the panels in the antidiagonal of panels with variable labels? Kjetil Halvorsen
2009 May 19
1
[RSpec, Rails] POST create action spec and before_filter
2009-05-18 21:40, Florent Florent: > I have this controller: http://pastie.org/482270 > I wrote this spec: http://pastie.org/482273 There are a few spots which draw my attention. At spec line 4 you create a mock Page with #save that always fails (succesfull save returns true). Is that intentional? At line 9 you .and_return a value from a variable you don''t set anywhere.
2010 Dec 09
1
displaying a note or comment when --format doc
I''m new to rspec, so, I might be coloring outside the lines, but, there have been several instances where I have wanted to display a comment or note. for example: describe "truck" do it "should require model" do end end rspec spec --format doc truck should require model What I mean by display a comment or note would be like: truck NOTE: blah, blah,
2010 Aug 08
2
[1.3] Cannot eject drive D:
Hi there. I would install Call of Duty 1 on my laptop (C2D 2Ghz, 4GB DDR3, 9600M GS) on Gentoo ~amd64 with wine 1.3.0. The beginning of the installation is just fine, but when I've to put the 2nd disc, I cannot eject D: with "wineconsole cmd", or umount /mnt/cdrom? Anyone could bring here some help ? I try to install it with ISO files. Thanks in advance !
2013 Jul 09
0
[Bug 616] Duplicate rules for multi-homed hostnames. IPv4 and IPv6 inconsistent treatment.
...filter.org/show_bug.cgi?id=616 --- Comment #6 from Phil Oester <netfilter at linuxace.com> 2013-07-09 03:50:27 CEST --- Yes, I fully understand what is happening in the one specific example you have provided. However you need to answer what happens if Cloudmark suddenly decides to add an IP _OUTSIDE_ of that /22 that is assigned to them. Let's say they open a new datacenter using subnet 1.2.3.0/24. Your rule will now allow 1.2.0.0/22 even though they don't necessarily own that entire /22. And you won't even know about this change because of how you have specified a DNS name with...
2016 Sep 07
0
Building R under Linux - library dependencies
...tion of the aggregate). And while share the overall sentiment a little bit, you have to realize that it is 2016 with the corresponding bandwith and storage: edd at max:~$ du -csh /usr/local/lib/R/site-library/ 1.5G /usr/local/lib/R/site-library/ 1.5G total edd at max:~$ And that it _outside_ of R itself, or the (numerous) other shared libraries. | > -- relying on package management which is what every Linux distro does | > | > (...) | > | > PS For the latter point, our .deb based R package currently shows this: | > | > (...) | > | > Depends: zip, unzip...
2016 Sep 07
4
Building R under Linux - library dependencies
> | Is there a way to overcome this problem? Precompiled versions of R can be installed on various system configurations, so I guess that there should be a way to compile it in a version-agnostic manner. > > Yes, for example by > > -- using a Docker container which is portable across OSs (!!) and versions Docker R containers are north of 250 MB. I have checked experimentally
2009 Apr 20
11
manual access to session data outside of request?
So, given a sessionID, I have need to read and write the session stored information ''manually'', from _outside_ an actual Rails request/controller. Readers, I know your first response may be to tell me I don''t really want to do that. Trust me though, I really do, it makes sense for me in my case. I know this wouldn''t work if you''re using the new cookie session storage mechanism....
2008 Dec 14
1
NAMESPACE/DESCRIPTION and imports
Hi, Could someone point me to the relevant documentation that covers what should be in the DESCRIPTION file for packages that have functions imported via the NAMESPACE file? I have read the R Extensions manual, but I cannot find where it covers the DESCRIPTION file vis a vis importing from a namespace. An example: I have a package foo that uses two functions x and y from package bar. Both
2017 Oct 17
2
[Xen-devel] [PATCH 11/13] x86/paravirt: Add paravirt alternatives infrastructure
...* ff 15 9c 95 d0 ff callq *-0x2f6a64(%rip) > 31: 58 pop %rax > > because instbuf points to 'push' and not to 'call'. Ah. I forgot that asm paravirt patches put the saves/restores _in_ the replacement, whereas in C code they're _outside_ the replacement. Changing PV_INDIRECT to use absolute addressing would be a decent fix, but I think that would break the PIE support Thomas Garnier has been working on. Maybe we can add a new field to the alternatives entry struct which specifies the offset to the CALL instruction, so apply_alter...
2017 Oct 17
2
[Xen-devel] [PATCH 11/13] x86/paravirt: Add paravirt alternatives infrastructure
...* ff 15 9c 95 d0 ff callq *-0x2f6a64(%rip) > 31: 58 pop %rax > > because instbuf points to 'push' and not to 'call'. Ah. I forgot that asm paravirt patches put the saves/restores _in_ the replacement, whereas in C code they're _outside_ the replacement. Changing PV_INDIRECT to use absolute addressing would be a decent fix, but I think that would break the PIE support Thomas Garnier has been working on. Maybe we can add a new field to the alternatives entry struct which specifies the offset to the CALL instruction, so apply_alter...
2012 Sep 07
4
Trying to learn how to write a function... can't define a variable??
I am just starting to experiment with writing a function and have run into what seems like a limitation or more likely a lack of understanding on my part. Very Simple Example: I want to define a function that does 1+1=2. z<-1 ADD<-function(x) { x<-x+1 } ADD(z) z output for z is 1 not the expected 2. Now if I were to do print(x+1) instead of x<-x+1 it does return 2, so the
2017 Oct 17
1
[Xen-devel] [PATCH 11/13] x86/paravirt: Add paravirt alternatives infrastructure
On Mon, Oct 16, 2017 at 02:18:48PM -0400, Boris Ostrovsky wrote: > On 10/12/2017 03:53 PM, Boris Ostrovsky wrote: > > On 10/12/2017 03:27 PM, Andrew Cooper wrote: > >> On 12/10/17 20:11, Boris Ostrovsky wrote: > >>> There is also another problem: > >>> > >>> [ 1.312425] general protection fault: 0000 [#1] SMP > >>> [ 1.312901]
2005 Nov 10
0
Ogg audio surround-sound
...cale. Let's start here, 5 years ago.. http://lists.xiph.org/pipermail/vorbis-dev/2000-July/009513.html (I included this email, below) I emailed David (author of that email) and asked him to join this list. I'm thinking, as I look at the problem, that surround sound needs to be defined _outside_ the audio codec stream. Comments are inappropriate, since we need to know if our apps can support a stream based on packet0. As Silvia mentioned recently, we've been lacking a multi-audio codec handling system for a long time. Wether that be for surround sound, prehaps with different samp...
2012 Aug 10
5
help error histograma
Hi, My error isErro em hist.default(dados[[1]], freq = TRUE, seq(0, 30, 0.5), prob = FALSE, : some 'x' not counted; maybe 'breaks' do not span range of 'x' hist(dados[[1]],seq(0, 30, 0.5), prob=TRUE, xlab="chuva (mm/dia)",ylab="frequĂȘncia", main="", cex.lab=1.6, cex.sub=3,cex.axis=3,cex.main=6) Someone help me? [[alternative
2023 Apr 21
0
[Rd] R 4.3.0 is released
...nd is.mts() is documented _and_ stricter. * Rd2txt() now preserves line breaks of \verb Rd content and from duplicated \cr. The former also fixes the rendering of verbatim output from Rd \Sexpr in plain-text help. * uniroot(f, interval) should no longer wrongly converge _outside_ the interval in some cases where abs(f(x)) == Inf for an x at the interval boundary, thanks to posts by Ben Bolker and Serguei Sokol on R-devel. * Vectorized alpha handling in palette functions such as in gray(), rainbow(), or hcl.colors() works correctly now, thanks to...
2023 Apr 21
0
[Rd] R 4.3.0 is released
...nd is.mts() is documented _and_ stricter. * Rd2txt() now preserves line breaks of \verb Rd content and from duplicated \cr. The former also fixes the rendering of verbatim output from Rd \Sexpr in plain-text help. * uniroot(f, interval) should no longer wrongly converge _outside_ the interval in some cases where abs(f(x)) == Inf for an x at the interval boundary, thanks to posts by Ben Bolker and Serguei Sokol on R-devel. * Vectorized alpha handling in palette functions such as in gray(), rainbow(), or hcl.colors() works correctly now, thanks to...