search for: unreasonably

Displaying 20 results from an estimated 884 matches for "unreasonably".

Did you mean: unreasonable
2015 Aug 11
0
[Bug 1898] possible unreasonable behaviour when using ProxyCommand with multiple IdentityFile(s)
https://bugzilla.mindrot.org/show_bug.cgi?id=1898 Damien Miller <djm at mindrot.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #16 from Damien Miller <djm at mindrot.org> --- Set all RESOLVED bugs to CLOSED with
2004 Aug 06
0
ices2 - Unreasonable error?
On Wed, 2003-08-13 at 04:11, Michael Smith wrote: > On Wednesday 13 August 2003 03:33, Karl Heyes wrote: > > On Tue, 2003-08-12 at 17:45, Geoff Shang wrote: > > > "/var/music/Rush/Different_Stages_(Disc_3)/11_Cinderella_Man.ogg" > > > [2003-08-12 12:17:26] EROR playlist-builtin/playlist_read Cannot play > > > same file twice in a row, skipping >
2013 Jul 12
0
[Bug 1898] possible unreasonable behaviour when using ProxyCommand with multiple IdentityFile(s)
https://bugzilla.mindrot.org/show_bug.cgi?id=1898 Damien Miller <djm at mindrot.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution|--- |FIXED --- Comment #15 from Damien Miller <djm at
2004 Aug 06
2
ices2 - Unreasonable error?
On Wednesday 13 August 2003 03:33, Karl Heyes wrote: > On Tue, 2003-08-12 at 17:45, Geoff Shang wrote: > > "/var/music/Rush/Different_Stages_(Disc_3)/11_Cinderella_Man.ogg" > > [2003-08-12 12:17:26] EROR playlist-builtin/playlist_read Cannot play > > same file twice in a row, skipping > > > > after trying several times to get a different filename, which
2004 Aug 06
2
ices2 - Unreasonable error?
Hi: I hit a problem where a script that should return one of a list of files to be played is returning the same one each time. This is obviously not an ices problem, it's what ices did with it that bugs me. Here's the error: [2003-08-12 12:17:26] DBUG playlist-script/playlist_script_get_filename Program/script ("/usr/bin/egosched") returned filename
2002 May 29
2
OpenSSH 3.2.3p1 won't compile under IRIX 6.5.14
Previously 3.2.2 would not compile under Solaris, then 3.2.3 came out with a bug fix for the problem. Now 3.2.3 won't compile under IRIX 6.5.14. I've tried using both gcc 3.0.1 and the IRIX MIPSpro 7.1 compilers. I've been compiling previous versions of OpenSSH for years using these same compilers (we haven't updated the MIPSpro compiler for 3 years, and I've been using it on
2013 Jun 03
1
Problem inspecting Windows images with large registry hives
...Fairly successfully for the most part, but had one Windows image today that fails in the following manner. File "/usr/lib/python2.7/site-packages/guestfs.py", line 910, in inspect_os r = libguestfsmod.inspect_os (self._o) RuntimeError: size of /Windows/System32/config/SOFTWARE is unreasonably large (141819904 bytes) Reproduced it with guestfish: [root@cagedbird images]# guestfish --ro -i -a windows-2008-r2-base+updates-20120518.img libguestfs: error: size of /Windows/System32/config/SOFTWARE is unreasonably large (141819904 bytes) [root@cagedbird images]# guestfish --version guestfish...
2006 Jan 26
2
can I do this with read.table??
Hi, I'm trying to figure out if there's an automated way to get read.table to read in my data and *not* convert the character columns into anything, just leave them alone. What I'm referring to as 'character columns' are columns in the data that are quoted. For columns of alphabetic strings (that aren't TRUE or FALSE) I can suppress conversion to factor with as.is=TRUE,
2008 Oct 10
2
autosign issues
Hi folks Back again with another head-scratcher... I''m trying to get autosigning to work, and am partially succeeding, but not really... Running puppet v24.4, and not yet ready to upgrade unless I have to On puppetmaster, I have autosign.conf (and puppet.conf indicates autosign = /etc/puppet/autosign.conf, which should be redundant, but, covering that base as I can) In autosign.conf,
2013 Apr 08
0
[LLVMdev] Integer divide by zero
On Sun, Apr 7, 2013 at 9:28 PM, Cameron McInally <cameron.mcinally at nyu.edu>wrote: > More productive (IMO) is to emit explicit guards against the undefined >> behavior in your language, much as -fsanitize does for undefined behavior >> in C++. Then work to build a mode where a specific target can take >> advantage of target specific trapping behaviors to emit these
2003 Jun 02
2
Exim as default MTA?
Yes, I've been reading /. :) But this isn't the first time this has occured to me. With all the security vulnerbilties, would it be unreasonable to either change the default MTA from sendmail to Exim/Qmail/Postfix, or give people the option of installing something instead of Sendmail at install time? -- Avleen Vig "Say no to cheese-eating surrender-monkeys"
2011 Jul 06
2
[LLVMdev] [MCJIT] Why does it allocate function by function?
...T adoption. But instead of simply fulfilling relocations and finding exported symbol locations, now we have to copy each function into the separate location? What if it they have the hardcoded assumptions that they are located with particular offsets against each other? This is quite clumsy and unreasonably complex approach. I think the right and simple solution would be to make the allocators an internal affair of JIT, so that old JIT defines and uses JITMemoryManager inside as it needs, and MCJIT doesn't, and clients don't see any of this. Yuri
2011 Jul 06
0
[LLVMdev] [MCJIT] Why does it allocate function by function?
On Jul 5, 2011, at 6:04 PM, Yuri wrote: > I am implementing ELFObject class for MCJIT to be able to run ELFs on ELF-platforms. > > One thing bothers me: I see that the RTDyldMemoryManager-based allocator is always passed to MCJIT and to RuntimeDyld classes from outside. This enforces the approach that memory will be allocated function by function with startFunctionBody/endFunctionBody.
2017 Oct 24
5
Problem Subsetting Rows that Have NA's
This has every appearance of being a bug. If it is not a bug, can someone tell me what I am asking for when I ask for "x[x[,2]==0,]". Thanks. > #here is the toy dataset > x <- rbind(c(1,1),c(2,2),c(3,3),c(4,0),c(5,0),c(6,NA), + c(7,NA),c(8,NA),c(9,NA),c(10,NA) + ) > x [,1] [,2] [1,] 1 1 [2,] 2 2 [3,] 3 3 [4,] 4 0 [5,] 5 0
2007 Oct 10
11
please help me
dear list I am student M.S. statistics in department statistics . I am working in the function "nls" in the [R 2.3.1] with 246 data and want to fit the "exp" model to vectors( v and u ) but I have a problem to use it u 5.000000e-13 2.179057e+03 6.537171e+03 1.089529e+04 1.525340e+04 1.961151e+04 2.396963e+04 2.832774e+04 3.268586e+04 3.704397e+04 4.140209e+04
2016 Jan 14
3
High memory use and LVI/Correlated Value Propagation
On Wed, Jan 13, 2016 at 03:38:24PM -0800, Philip Reames wrote: > I don't think that arbitrary limiting the complexity of the search is the > right approach. There are numerous ways the LVI infrastructure could be > made more memory efficient. Fixing the existing code to be memory efficient > is the right approach. Only once there's no more low hanging fruit should > we
2011 Jun 20
3
Unreasonable syntax error
http://r.789695.n4.nabble.com/file/n3612530/PSC.r PSC.r Hi all, I just wrote a program in R by editing it in Microsoft Word and then pasting into the text editor of R. The above is the file. And below is what the console complains.... Why doesn't it recognise 'r'?? I have to mention that at least when I typed this first several lines into the console, the first error didn't
2020 Feb 19
5
amount of camelCase refactoring causing some downstream overhead
...disputes that. * There was nothing even remotely unreasonable done in the patch series which triggered this discussion and I don't want any upstream contributor coming to believe there was. I disagree with you about “nothing even remotely unreasonable” in that I think it was done slightly unreasonably, and I think it’s worthwhile to have other upstream contributors acknowledge that feeling. What I’m aware of is a series of 5 separate patches, each of which re-capitalized a select subset of APIs in the same area. This fixing-up is *long overdue* and I’m very happy to see it done. But I will di...
2013 Jan 14
17
[LLVMdev] RFC: Codifying (but not formalizing) the optimization levels in LLVM and Clang
...;-Oz' - Attribute: minsize (we already have it, nothing to do here) - Goal: minimize the size of the resulting binary, at (nearly) any cost. 2) Optimize for size or '-Os' - Attribute: optsize (we already have it, nothing to do here) - Goal: Optimize the execution of the binary without unreasonably[1] increasing the binary size. This one is a bit fuzzy, but usually people don't have a hard time figuring out where the line is. The primary difference between minsize and optsize is that with minsize a pass is free to *hurt* performance to shrink the size. [1] The definition of 'unreason...
2013 Nov 19
6
[PATCH] Btrfs: fix very slow inode eviction and fs unmount
The inode eviction can be very slow, because during eviction we tell the VFS to truncate all of the inode''s pages. This results in calls to btrfs_invalidatepage() which in turn does calls to lock_extent_bits() and clear_extent_bit(). These calls result in too many merges and splits of extent_state structures, which consume a lot of time and cpu when the inode has many pages. In some