search for: speedbump

Displaying 11 results from an estimated 11 matches for "speedbump".

2015 Jan 23
0
speedbump in library
...he leading dot) won't load the package. I can't speak to whether there are any pitfalls in changing the library path searching, though. -Winston On Thu, Jan 22, 2015 at 12:25 PM, Peter Haverty <haverty.peter at gene.com> wrote: > Hi all, > > Profiling turned up a bit of a speedbump in the library function. I > submitted a patch to the R bug tracker as bug 16168 and I've also > included it below. The alternate code is simpler and easier to > read/maintain, I believe. Any thoughts on other ways to write this? > > Index: src/library/base/R/library.R > ====...
2015 Jan 22
3
speedbump in library
Hi all, Profiling turned up a bit of a speedbump in the library function. I submitted a patch to the R bug tracker as bug 16168 and I've also included it below. The alternate code is simpler and easier to read/maintain, I believe. Any thoughts on other ways to write this? Index: src/library/base/R/library.R =================================...
2015 Jan 26
0
speedbump in library
A isNamespaceLoaded() function would be a useful thing to have in general if we are interested in readable code. An efficient implementation would be just a bonus. On Mon, Jan 26, 2015 at 3:36 AM, Martin Maechler <maechler at lynne.stat.math.ethz.ch> wrote: >>>>>> Winston Chang <winstonchang1 at gmail.com> >>>>>> on Fri, 23 Jan 2015 10:15:53
2015 Jan 26
0
speedbump in library
isLoadedNamespace() sounds fine to me.. Thanks for addressing this, Michael On Mon, Jan 26, 2015 at 5:51 AM, Martin Maechler < maechler at lynne.stat.math.ethz.ch> wrote: > >>>>> Michael Lawrence <lawrence.michael at gene.com> > >>>>> on Mon, 26 Jan 2015 05:12:55 -0800 writes: > > > A isNamespaceLoaded() function would be a useful
2020 Jan 21
2
Security implications of using ControlMaster
On Tue, Jan 21, 2020 at 11:08:51AM +1100, Damien Miller wrote: > So IMO disallowing session multiplexing is at most a speedbump that an > attacker will cross with relative ease. Speedbumps make sense sometimes, An attacker getting root on the jumphost gets immediate control of any _current_ persistent connections and new connections. Without ControlMaster it's a _lot_ harder to take control of current connections,...
2015 Jan 26
2
speedbump in library
>>>>> Winston Chang <winstonchang1 at gmail.com> >>>>> on Fri, 23 Jan 2015 10:15:53 -0600 writes: > I think you can simplify a little by replacing this: > pkg %in% loadedNamespaces() > with this: > .getNamespace(pkg) almost: It would be !is.null(.getNamespace(pkg)) > Whereas getNamespace(pkg) will load the
2020 Jan 20
4
Security implications of using ControlMaster
Dear Mailing List We are using a ControlMaster with a short ControlPersist to access the bastion host which then gives access to customer hosts. Our Information Security Manager would like to disallow the ControlMaster. His attack scenario is an admin workstation with a compromised root account. An attacker can then use the ControlMaster to trivially get shell access on the bastion host
2015 Jan 26
2
speedbump in library
>>>>> Michael Lawrence <lawrence.michael at gene.com> >>>>> on Mon, 26 Jan 2015 05:12:55 -0800 writes: > A isNamespaceLoaded() function would be a useful thing to > have in general if we are interested in readable code. An > efficient implementation would be just a bonus. Good point (readability), and thank you for the support! Note
2006 Apr 05
0
Another application design question
...as being the sort of main view, and just add bits and pieces to that, but that seems ugly. It seems like all the examples and tutorials out there focus on showing one particular kind of functionality for one or two tables, so I''ve gotten started pretty quickly but have now hit a little speedbump trying to figure out how to put it all together. If I can reduce out a simple example of this, and there''s interest, I might try to put together a tutorial, perhaps in the wiki. Thoughts? Thanks! Dan -- Posted via http://www.ruby-forum.com/.
2005 Aug 03
0
Error: "The local policy of this system does not permit you to logon interactively"
Hi all, I have been having a bit of trouble setting up my Samba 3-OpenLDAP PDC...This is something totally new to me (no previous Samba experience at all). I've had several speedbumps, but I've finally got my setup almost complete. I can join computers to the domain, however, if I try to logon with a user, I get the above error from Windows. I can logon as a Domain Administrator, but if the user is a member of any other group, they cannot login. I have setup my mach...
2006 Aug 03
30
How to protect your code? Obfuscater?
I just made a rails application that I plan to sell and dsitribute. I want to distribute it without having to worry about someone stealing the code and selling their own version. How do I do this? Is there a ruby obfuscator or anything that can keep someone from seeing the code? Thanks for your help. -- Posted via http://www.ruby-forum.com/.