Displaying 15 results from an estimated 15 matches for "l68".
Did you mean:
468
2014 May 14
1
Bug in read.dcf(all = TRUE)?
...g the problem, it seems the on.exit() call in
read.dcf() is the culprit:
on.exit(Sys.setlocale("LC_CTYPE", Sys.getlocale("LC_CTYPE")), add = TRUE)
Sys.setlocale("LC_CTYPE", "C")
https://github.com/wch/r-source/blob/96a2cc920/src/library/base/R/dcf.R#L68-L69
> sessionInfo()
R version 3.1.0 (2014-04-10)
Platform: x86_64-pc-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
LC_TIME=en_US.UTF-8
[4] LC_COLLATE=en_US.UTF-8 LC_MONETARY=en_US.UTF-8
LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
LC_ADDRESS=...
2017 Oct 02
1
relaunching libguestfs with the same overlay
...h
> the same overlay from the last run? The documentation tells the overlay is
> removed when the handle to libguestfs is closed.
Right, the overlay is created by libguestfs itself and thrown away
when the handle is closed:
https://github.com/libguestfs/libguestfs/blob/master/lib/drives.c#L68
https://github.com/libguestfs/libguestfs/blob/master/lib/launch-direct.c#L78
However you can simply create your own overlay and use that. Run
something like:
qemu-img create -b orig_disk -f qcow2 my_overlay
and change the guestfs_add_drive_opts call to use ?my_overlay? and
don't use the...
2013 Jul 11
0
[LLVMdev] [PATCH] x86: disambiguate unqualified btr, bts
http://www.cs.fsu.edu/~baker/devices/lxr/http/source/linux/arch/x86/include/asm/bitops.h#L68
Here is one example that I found. Are the inline assembly arguments
ambiguous in size?
-Jevin
Sent from my mobile device. Typos are par for the course.
On Jul 10, 2013, at 5:47 PM, Jim Grosbach <grosbach at apple.com> wrote:
On Jul 10, 2013, at 2:30 PM, Eric Christopher <echristo at...
2020 Jun 06
2
install.packages(): About an option for installing archived versions
...er archived versions of
CRAN packages, for example `remotes::install_version() ` or
`versions::install.version()`.
The former makes use of an ?archive.rds? file stored in the CRAN
/Meta directory:
https://github.com/r-lib/remotes/blob/9b5dc29102a486df2f42c88bb19027a7cd54a721/R/install-version.R#L68
Given its existence, I was wondering why there is no official support in
`install.packages()`?
I was browsing the mailing archives of r-devel but surprisingly could
not find a previous discussion about it.
`remotes::install_version()` only uses the tarballs and enforces
installation from source...
2016 Jul 21
3
Re: How to debug supermin5 issue?
At 2016-07-21 19:52:11, "Pino Toscano" <ptoscano@redhat.com> wrote:
>On Thursday, 21 July 2016 18:50:52 CEST Chen Hanxiao wrote:
>>
>> At 2016-07-21 18:43:04, "Richard W.M. Jones" <rjones@redhat.com> wrote:
>> >On Thu, Jul 21, 2016 at 06:36:20PM +0800, Chen Hanxiao wrote:
>> >> the virtio modules in kmods did existed in this
2012 Dec 05
3
Fwd: Issue starting unicorn with non-ActiveRecord Rails app
Hi,
I''m trying to use unicorn in a test deployment of a Rails app that
uses Mongoid, so Activerecord isn''t included in the app. When I start
unicorn through Capistrano though, the stderr log fills up endlessly
with identical ActiveRecord-related errors:
I, [2012-12-05T04:19:25.375952 #5096] INFO -- : Refreshing Gem list
I, [2012-12-05T04:19:32.941249 #5096] INFO -- :
2013 Jul 10
6
[LLVMdev] [PATCH] x86: disambiguate unqualified btr, bts
On Jul 10, 2013, at 2:30 PM, Eric Christopher <echristo at gmail.com> wrote:
> On Wed, Jul 10, 2013 at 2:08 PM, Ramkumar Ramachandra
> <artagnon at gmail.com> wrote:
>> Jim Grosbach wrote:
>>> To say that another way, is the assembler correctly diagnosing a previously
>>> unnoticed problem in the project source code, or is the assembler not
>>>
2016 Jul 21
0
Re: How to debug supermin5 issue?
....
>
> It works fine now.
>
> But why we make initrd only depends on modules.dep?
modules.dep is used to work out the module dependencies, so we know
which minimal set of modules should be copied into the initrd:
https://github.com/libguestfs/supermin/blob/master/src/ext2_initrd.ml#L68-L152
If you copy too many modules into the initrd, then it will be huge and
boot times will be very slow, so knowing the exact set of modules
which are required is important.
Of course if modules.dep is broken then that won't work.
Do you understand who broke the file and/or why it was broke...
2020 Jun 06
0
install.packages(): About an option for installing archived versions
...of
> CRAN packages, for example `remotes::install_version() ` or
> `versions::install.version()`.
> The former makes use of an ?archive.rds? file stored in the CRAN
> /Meta directory:
> https://github.com/r-lib/remotes/blob/9b5dc29102a486df2f42c88bb19027a7cd54a721/R/install-version.R#L68
>
> Given its existence, I was wondering why there is no official support in
> `install.packages()`?
Because it's not needed? Some functions belong in base packages because
they require access to R internals that aren't available to contributed
packages. Other functions suppo...
2006 Jul 21
0
[PATCH] TestResponseBehavior#binary_content calls block improperly
(In lieu of the broken bug-tracker)
TestResponseBehavior#binary_content calls the block generated by
send_file with no parameters. But the block created at http://
dev.rubyonrails.org/browser/trunk/actionpack/lib/action_controller/
streaming.rb#L68 expects a response and an output stream.
The following patch corrects the block.call in binary_content at
http://dev.rubyonrails.org/browser/trunk/actionpack/lib/
action_controller/test_process.rb#L264.
_______________________________________________
Rails-core mailing list
Rails-core@lists....
2008 Apr 06
1
markdown PEG (parsing expression grammar)
...n.wikipedia.org/wiki/Parsing_expression_grammar
The code is at <http://github.com/jgm/markdown-peg/tree/master>.
All that is required to compile it is the GHC haskell compiler.
The grammar itself begins at line 68 of Markdown.hs:
<http://github.com/jgm/markdown-peg/tree/master/Markdown.hs#L68>.
This implementation is not particularly fast, though it is still
faster than Markdown.pl. It should be fairly easy to modify and extend,
though, and the grammar provides a precise specification of (one
interpretation of!) the syntax of markdown, which might be a useful
basis for discussion....
2013 Jul 11
1
[LLVMdev] [PATCH] x86: disambiguate unqualified btr, bts
On Wednesday 10 July 2013 22:18:23 Jevin Sweval wrote:
> http://www.cs.fsu.edu/~baker/devices/lxr/http/source/linux/arch/x86/include/
> asm/bitops.h#L68
>
> Here is one example that I found. Are the inline assembly arguments
> ambiguous in size?
It would help us for sure to build the kernel and others.
--
JS
2019 Jun 13
1
Libvirt API for getting disk capacity from VM XML
Hello everyone,
I am doing an outreachy internship at Openstack Ironic. In the sushy-tools
project, we are using libvirt VMs to simulate bare metal machines for
testing purposes.
In the XML description of a domain, there are a bunch of disk elements
giving information about the various storage devices attached to the
domain. Is there some way to get the size/capacity of those disks using the
2007 Apr 03
5
Inifinite loop problem with DRb server
...t;ferret server error #{$!}\n#{$!.backtrace.join ''\n''}"
raise
end
end
end
end
When I change the logging statement inside the first begin/rescue clause of:
http://projects.jkraemer.net/acts_as_ferret/browser/trunk/plugin/acts_as_ferret/lib/ferret_server.rb#L68
I get this (see patch at end of message):
ActsAsFerret::Server#method_missing calling:
Email.id_multi_search(["*position*", ["Contact", "Company", "Email"],
{}])
ActsAsFerret::Server#method_missing calling:
Email.id_multi_search(["*position*", [&qu...
2008 Jul 04
5
Samba v2.2.12 NTLM versions?
Hi,
I am working on an old Unix system, UNIX SVR4 MP-RAS, running a Teradata database.
Due to the age of the system (notably the C compiler, which won't handle v3 source code), I have built Samba 2.2.12
I want to use this to share Unix directories out to XP clients as network drives, for read-write access, keeping the file ownership as strict unix users.
This all works fine, except for