search for: rationale

Displaying 20 results from an estimated 1385 matches for "rationale".

2006 Jan 19
1
Rationale behind render opposed to render_action
Guys, What was the rationale behind moving to the swiss army-ish method of render(:X), as opposed to the various render_X methods that existed before? I find it easier to keep the render_X style in my brain, rather than trying to remember what the valid parameters to render() are. It''s also more code completion f...
2011 May 10
1
Rationale for an absence of a native file-logging configuration option for OpenSSH-Server
Good afternoon, I wanted to ask quickly about the rationale for not allowing explicit declaration of a log file to receive logging output. Whilst using syslogd is convenient for system processes, for short-lived applications, such as booting an SSH server (and wishing to monitor it) for testing purposes? having to also configure syslogd to receive output is...
2015 Aug 13
2
Rationale for the object cache design?
Hello, I am a bit curious about the rationale for the current callback-based object cache API. For Numba, it would be easier if there would be a simple procedural API: - one method to get a module's compiled object code - one method to load/instantiate a module from a given piece of object code I manage to get around the callback-based A...
2012 Jun 12
3
[LLVMdev] [Patch, RFC] Re: Adding support for explicitly specified TLS models (PR9788)
>> Do you know what is the rationale for that? The static linker will >> optimize it anyway (but not do as good a job as the compiler could). > > codegen can be more efficient. E.g. less or no calls to __tls_get_addr > needed. My point also :-) What I was asking for a rationale on was *not* doing the optimization in th...
2020 Mar 25
4
Need help to fix bug in rsync
> On Wed, 2020-03-25 at 14:39 +0000, Leroy Tennison wrote: >> Since you state that using -z is almost always a bad idea, could you >> provide the rationale for that? I must be missing something. >> > I think the "rationale" is that at some point the > compression/decompression takes longer than the time reduction from > sending a compressed file. It depends on the relative speeds of the > machines and the network. > &g...
2015 May 01
5
sftp chroot requirements
...some reference, then it is highly appreciated. I would like to understand the rationaly. Not why 'it is just like it is'. No, why. What is the reasoning behind it. I speak Dutch, English, some Japanese and C. So, I can write something to patch it up in C. But if I do not understand the rationale behind it, what is the value of the writing in any language? If I do not understand the context, that you think I should implicitly understand, what should I do? I can send in a patch if you like. Kind regards, Stephan On 01-05-15 23:42, Damien Miller wrote: > On Fri, 1 May 2015, Stephan L...
2012 Jun 12
4
[LLVMdev] [Patch, RFC] Re: Adding support for explicitly specified TLS models (PR9788)
...Also, my patch does make a difference between the default and > globaldynamic. If user specifies globaldynamic, LLVM will use that > model, even if some other model would be better (it even adds support > for doing globadynamic in non-PIC code). GCC does the same. Do you know what is the rationale for that? The static linker will optimize it anyway (but not do as good a job as the compiler could). If unsure I think it is safer to go without the 'default'. It is easier to add it to IL later than to remove it if it turns out we don't need it. > Thanks, > Hans Cheers, Rafae...
2020 Mar 25
4
Need help to fix bug in rsync
Since you state that using -z is almost always a bad idea, could you provide the rationale for that? I must be missing something. ________________________________ From: CentOS <centos-bounces at centos.org> on behalf of Peter Kjellstr?m <cap at nsc.liu.se> Sent: Wednesday, March 25, 2020 9:34 AM To: Simon Matter <simon.matter at invoca.ch> Cc: centos at centos.org &lt...
2019 Nov 04
0
Rationale behind MACExpire
Hi Guus, I am wondering why MACExpire was introduced in: ,---- | commit 14979f835df4214a7c2510852f7ffedc9e08c2c0 | Author: Guus Sliepen <guus at tinc-vpn.org> | Date: Fri Mar 1 14:09:31 2002 +0000 | | - Global time_t now, so that we don't have to call time() too often. | - MAC addresses expire after a time configurable by MACExpire (default 600 | seconds) `---- Is
2006 Apr 07
1
Rationale for hashed .so?
I'm curious, and perhaps a bit naive about this stuff. I'd like to know the reason for having a klibc-$HASH.so version which the shared apps are linked against. It makes it less simple to build a static initramfs file list to use. Currently, one has to read the libc.so.hash file to build the filename, something that can't be done in a file list passed to gen_init_cpio unless it's
2013 Jun 26
1
[LLVMdev] clang-format: `AlwaysBreakTemplateDeclarations: true` for LLVMStyle?
Hi guys, Is the current setting of `AlwaysBreakTemplateDeclarations: false` for LLVMStyle intentional? What was the rationale? Some rough counts on the LLVM codebase: same-line: $ git grep -E 'template.*(class|struct).*{' -- '*.h' '*.cpp' | wc -l 214 (most of them are tiny traits classes, like isPodLike or DenseMapInfo) not-same-line: $ git grep -A1 -h 'template' -- '*.h' '*...
2006 May 12
10
why dtrace is not quiet?
i''m running the following script: #pragma D option quiet profile:::tick-1sec / ++x >= 15 / { exit(0); } io:::start { @io_size[execname] = sum(args[0]->b_bcount); } on exit, the script prints out the value of @io_size, why? there''s no printa(), and i also specified "D option quiet" (i also tried -q). this seems to happen with any kind of probe: on exit(0) all
2010 Sep 01
1
[LLVMdev] Assertion failure in tablegen: rationale ?
While I'm at it, I noticed a behaviour which is not exactly related but similar. To put it simply, you can 't do T.V.W, you need to do !cast<Bla>(T.V).W Example: class Bla<string t> { string blu = t; } class Bli<Bla t> { Bla bla = t; } def a : Bli<Bla<"">>; def b : Bla<!cast<Bla>(a.bla).blu>; // works def b :
2011 Mar 22
5
live migration in between different CPU families
...http://www.gossamer-threads.com/lists/xen/users/177385#177385. I have the same thing going on: hypervisors with E5620 Xeon CPUs and hypervisors with E5410 CPUs. Live migrations go wrong when domU''s are not created on the latter and move from the E5410 servers to more recent ones. The rationale being that these CPU''s have less or other capabilities than the newer ones. Is there any way to work around this? Thx, B. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2012 Jun 12
0
[LLVMdev] [Patch, RFC] Re: Adding support for explicitly specified TLS models (PR9788)
On Tue, Jun 12, 2012 at 12:36:28PM -0400, Rafael EspĂ­ndola wrote: > >> Do you know what is the rationale for that? The static linker will > >> optimize it anyway (but not do as good a job as the compiler could). > > > > codegen can be more efficient. E.g. less or no calls to __tls_get_addr > > needed. > > My point also :-) What I was asking for a rationale on was *not...
2009 Sep 11
4
Question about the pop3 feature "leave messages on server for a certain period of time"
Hi all I am missing something on the the pop3 "leave messages" rationale. Although the UIDL feature solves for the MUA the problem "whch mails should be downloaded", how the duration that these mails should be kept on server, say 10 days for one MUA and 20 days for another MUA for the same account, is resolved on the server? thanks in advance -- ??????...
2008 Jan 24
4
Why Kudzu, Why?
...rk. Luckilly, someone said (and I quote) 'mv /etc/sysconfig/networking-scripts/ifcfg-eth0.bak /etc/sysconfig/networking-scripts/ifcfg-eth0 and blame kudzu'... So, what did I do wrong, or what should I have done differently? What's the reasoning behind this? I'll bet there is some rationale, and I'd like to understand it. Thanks, Mike
2019 Nov 12
3
calls with comment attribute
...1:3, comment=c("a comment", "another comment")) [1] 1 2 3 but if the object is a call it prints it in an unusual format > structure(quote(func(arg)), comment=c("a comment", "another comment")) a comment another comment func(arg) What is the rationale for the special treatment of calls? Bill Dunlap TIBCO Software wdunlap tibco.com [[alternative HTML version deleted]]
2013 Mar 21
1
sshfs -o rellinks (module option) rejected by fuse
...lackware64 14.0 Incidentally, I'm thinking of making two sshfs documentation enhancement requests. But are they based on misconception? They are: 1. Mount options. In the sshfs general options, mount options (-o opt,[opt...]) documentation, additionally specify which options are available. Rationale: sshfs rightly does not support all the mount man page's "FILESYSTEM INDEPENDENT MOUNT OPTIONS" and the mount man page does not have a section for sshfs. There is thus no documentation to tell the sshfs user which mount options are available. For example I found by experiment that n...
2016 Apr 09
3
[FORGED] Re: identical() versus sapply()
...rately I think, since in R there is *no such thing as a scalar*, only a vector of length 1) I don't see why "1" should be treated in a manner that is categorically different from the way in which "1:2" is treated. Can you, or someone else with deep insight into R and its rationale, explain the basis for this difference in treatment? > for the clue you need, and then > > sapply( 1:2, identical, 1L ) cheers, Rolf -- Technical Editor ANZJS Department of Statistics University of Auckland Phone: +64-9-373-7599 ext. 88276