search for: indiscriminate

Displaying 20 results from an estimated 49 matches for "indiscriminate".

2012 May 27
2
[LLVMdev] Linking times
Hi, Just a brief follow-up on my link time issue: It was caused by excessive trashing; I tried rebuilding on a box with 8 gigs of RAM and observed the memory load while linking clang.exe: It peaked at 5 gigabytes memory, so now I've written this piece of info into the LLVM/Windows document that I posted earlier (I have already made a substantial number of corrections in the document). All in
2010 May 09
2
Non-zero exit status for survival package
...message sometimes is caused by incorrect or missing java packages and the like. I generally don't have issues with the installation of R or R packages but I don't know where to start on this. I have looked to ensure that I have fortran and C++ compilers installed. I want to (if I can) avoid indiscriminately installing packages "until it starts working". I'm not sure how to go about troubleshooting this. Could anyone lend a hand, please? Thanks, Patrick > sessionInfo() R version 2.11.0 (2010-04-22) x86_64-pc-linux-gnu locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=...
2012 May 27
0
[LLVMdev] Linking times
Do you specify CMAKE_BUILD_TYPE if you are using cmake? 2012/05/27 18:21 "Mikael Lyngvig" <mikael at lyngvig.org>: > Hi, > > Just a brief follow-up on my link time issue: It was caused by excessive > trashing; I tried rebuilding on a box with 8 gigs of RAM and observed the > memory load while linking clang.exe: It peaked at 5 gigabytes memory, so > now I've
2000 Oct 13
1
question about ssh / security
...rsh or other services). I create a user "guest", and put "trusted.pub" in my authorized file. I give away "trusted" (the private key) to people I trust, but lets assume for a moment that it is public (its hard to enforce that "trusted" will not be distributed indiscriminately). For the user guest, i set the shell in /etc/passwd to be my own server program that i make as bullet-proof as possible. For the people i give the key away to, i give them a client program to access this server program which uses the "trusted" key. My question is, is it possible for...
2018 Nov 23
0
Wine release 3.21
...not specify WINED3D_TEXTURE_CREATE_MAPPABLE in cubetexture_init(). d3d8: Do not specify WINED3D_TEXTURE_CREATE_MAPPABLE in d3d8_device_CreateDepthStencilSurface(). d3d8: Do not specify WINED3D_TEXTURE_CREATE_MAPPABLE in d3d8_device_CreateImageSurface(). d3d8: Do not add map access indiscriminately in texture_init(). d3d8: Do not add map access indiscriminately in cubetexture_init(). d3d8: Do not add map access indiscriminately in d3d8_device_create_surface(). wined3d: Introduce a separate structure for OpenGL rendertarget view information. wined3d: Introduce a separ...
2003 Jun 04
2
gam()
...significance of smooth terms:" part of the summary.gam(). 2. John Fox has modified anova.glm() into anova.gam() (http://www.socsci.mcmaster.ca/jfox/Books/Companion/nonparametric-regression.txt) for comparison of two or more fitted models based on the difference between residual deviances. Indiscriminate use of such a procedure shouldn't perhaps be encouraged, but I think that many users expect it to be part of the mgcv package since this model selection idea is covered in several texts and also implemented in S-plus (and may be OK for truly nested models). And even if it's been decided...
2012 Oct 21
1
suppress *specific* warnings?
Not desperately important, but nice to have and possibly of use to others, is the ability to suppress specific warnings rather than suppressing warnings indiscriminately. I often know of a specific warning that I want to ignore (because I know that's it's a false positive/ignorable), but the current design of suppressWarnings() forces me to ignore *any* warnings coming from the expression. I started to write a new version that would check and, if supp...
2018 Dec 02
4
RFC: Supported Optimizations attribute
...ant.group is inactive now, so it can be stripped. %v1 = load i8, i8* %p, !invariant.group !0 %p2 = call i8* @llvm.launder.invariant.group.p0i8(i8* %p) %b = icmp eq i8* %p, %p2 call void @llvm.assume(i1 %b) %v2 = load i8, i8* %p2, !invariant.group !0 ret void } Possible extensions Instead of indiscriminately taking the intersection of supported optimizations' lists, we may imagine that some of such optimizations may be able to provide a conservative set of annotations to a function lacking them. By doing so, we may retain at least some level of information available to the optimizer, by preservi...
2012 May 30
2
[LLVMdev] [llvm-commits] [llvm] r157649 - /llvm/trunk/lib/Transforms/Scalar/BoundsChecking.cpp
...9; solution, I can simply take the constant and verify statically if the GEP will overflow or not. Adding inbounds flag is not really in the scope of this pass. Isn't there any pass that will do that? You would have to do some pattern matching to make best use of existing values instead of the indiscriminate rewrite that SCEVExpander does. It's more work and maybe not worthwhile in your case. My response was mainly intended to warn other developers and have them go through the mental exercise: "what would I do if SCEVExpander didn't exist"... instead of instinctively using it as a gen...
2002 Jun 17
1
overzealous help-links.sh script! (PR#1682)
Starting html help in the current version of R has a very annoying side-effect. It indiscriminantly removes $HOME/.R, and replaces it with a virgin copy. I discovered that when all of a sudden I got complaints about my startup "library" not being found. Below is a modified version of the script that doesn't do this. It is not perfect yet (it shouldn't try to recreate links
2000 Sep 28
1
[PATCH] Next cleanup part 4 or 5 by now.=)
...- - -int -waitpid(int pid, int *stat_loc, int options) +pid_t +waitpid(int pid, int *stat_loc, int options) { + union wait statusp; + pid_t wait_pid; + if (pid <= 0) { if (pid != -1) { errno = EINVAL; return -1; } - pid = 0; /* wait4() expects pid=0 for indiscriminate wait. */ + pid = 0; /* wait4() wants pid=0 for indiscriminate wait. */ } - return wait4(pid, (union wait *)stat_loc, options, NULL); -} - -pid_t setsid(void) -{ - return setpgrp(0, getpid()); + wait_pid = wait4(pid, &statusp, options, NULL); + stat_loc = (int *)statusp.w_stat...
2008 May 02
0
A word about compatibility with JRuby and Ruby 1.9
...onably authoritative source for builds of Ruby 1.9.0 on Windows, I probably won''t release a gem for that version. What we''re beginning to see are some problems that I (and others) noted early on in the development of RubyGems, and that''s that the system is pretty indiscriminate with regards to Ruby versions, OS versions, etc. The result is that it can make it difficult to know which components will work properly with each other. Hopefully this situation will improve over time. Thanks, Lyle --- "FXRuby: Create Lean and Mean GUIs with Ruby" Now available...
2006 Jun 16
0
FW: Ajax used for the Yamanner virus
...ed message ---------- From: Babu, Shaurya <Shaurya.Babu@qwest.com> Date: Jun 16, 2006 8:53 AM Subject: FW: Ajax used for the Yamanner virus To: Bakki Kudva <bakki.kudva@gmail.com> FYI _____________________________________________ Hi Guys, A first! for the pitfalls of Ajax, if used indiscriminately: http://www.informationweek.com/security/showArticle.jhtml?articleID=189400799 -------------------------------------------------------------------------------------- Yahoo Mail Worm May Be First Of Many As Ajax Proliferates Companies are quickly embracing Ajax and related techniques for Web ap...
2008 Jan 09
0
FXOTUNE update
...ne can be the difference between having echo problems and not having echo problems. This is the update: I just committed a new version of fxotune which uses a better technique for measuring echo return loss. Before, there was a simple power calculation which was done on the samples that would indiscriminately check the power of all samples received. This works well when the line is silent, but if there are any sort of tones in the background or noise due to noisy line conditions, this calculation can yield results which may improve things, but are not the best results. The new method involves us...
2004 Mar 26
1
--link-dest mostly useless on a server without chroot
...ss. This is because sanitize_paths is called on the link-dest directory, stripping out leading dots and slashes. Thus, the only possiblitiy for a link-dest directory is under the target directory, which is generally not useful. There doesn't seem to be an easy fix. sanitize_paths is applied indiscriminately to all arguments, so in order to give link-dest directory special treatment, the code would have to be restructured. Maybe someone can think of a clever solution. As for work-arounds, I can't use chroot, because the server is running as my user account. However, I can arrange for the link-d...
2005 Oct 05
1
[LLVMdev] Cast instructions
The following situation comes up a lot in what I'm doing. I want to check if a value is a certain kind of instruction. The test also needs to succeed if the value is a *cast* of the instruction (or a cast of a cast, etc.) I.e., I need to "see through" any intervening casts to get to the "real" value. It's trivial to write a function that does this, but does
2014 Nov 11
1
/etc/locale.conf is ignored
It seems that /etc/locale.conf is ignored in Centos 7. As a traditionalist who prefers things sorted lexicographically rather than indiscriminately with case ignored and dates to be displayed in the form "Sep 11 2008", I have always added lines to this file: $ cat /etc/locale.conf LANG="en_US.UTF-8" # Fix collating sequence for sort and ls export LC_COLLATE=C # Fix time format in ls -l to Sep 11 2008 expo...
2003 Mar 20
9
Routing/forwarding/shaping problems in v2.2.x (Long - sorry)
Greetings from a newbie! (Well, to this list anyway) I''m having a problem and I hope someone here might be able to help... I am strongly expecting an answer along the lines of "upgrade to v2.4.x", but I would REALLY preffer to avoid that for now... The setup: "Home brewed" v2.2.24 (will patch to v2.2.25 later today) with the DS8 patch applied. Currently
2017 Sep 13
1
[3.11.2] Bricks disconnect from gluster with 0-transport: EPOLLERR
...rt when glusterd is started. pid files are stored in `/var/lib/glusterd` which persists across reboots. When glusterd is started (or restarted or host rebooted) and the pid of any process matching the pid in the brick pid file, brick fails to start. b. self-heal-deamon pid file leave stale pid and indiscriminately kills pid when glusterd is started. pid files are stored in `/var/lib/glusterd` which persists across reboots. When glusterd is started (or restarted or host rebooted) the pid of any process matching the pid in the shd pid file is killed. due to the nature of these bugs sometimes bricks/shd will...
2014 Aug 18
7
[LLVMdev] [RFC] Removing static initializers for command line options
...able options. The OptionStore should be created when a command line is parsed, or by an API call in libraries, and can be passed through the pass manager and targets to populate option data. The OptionStore should have a lifetime independent of contexts, and pass managers because it can be re-used indiscriminately. The core principle in this design is that the objects involved in parsing options only need to exist once, but you need a full list of all options in order to parse a command line. You should be able to have multiple copies of the actual stored option data. Having multiple copies of the data st...