search for: boil

Displaying 20 results from an estimated 1172 matches for "boil".

Did you mean: bail
2008 Jul 09
3
[LLVMdev] Refusing to store single element
...; If I ignore it the generated code appears correct so I'm not sure what this assert is supposed to be for. Am I doing something wrong on my end or is this a superfluous assert or it really indicates an LLVM bug? The code I'm generating is fairly long but if necessary I could try to boil it down. Cheers, Nicolas -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080709/71c63fdb/attachment.html>
2010 Mar 08
6
strange su behavior
...re ESXi virtualizied environment: If I am root and want to change the user to a non-root user, the system prompts me for a password: [root at halifax ~]# useradd test00 [root at halifax ~]# su - test00 We trust you have received the usual lecture from the local System Administrator. It usually boils down to these three things: #1) Respect the privacy of others. #2) Think before you type. #3) With great power comes great responsibility. Password: [test00 at halifax ~]$ logout [root at halifax ~]# su - test00 [test00 at halifax ~]$ logout [root at halifax ~]# At this test proce...
2006 Aug 17
8
instance variables in templates
Hey all, Well... hmm... feeling pretty stupid here... For some reason my controller instance variables are not displaying in my templates. I''ve boiled it down to this test case. class Rss::FilmController < ApplicationController def display @time = Time.now end end and the template: <html> <head> <title>Is This Ever Going To Work</title> </head> <body> <p>it is now <%= @time %>&l...
2010 Oct 28
3
get the rows so that there is no redundant element in a certain column
Dear everyone in the Mailing list:   It is easy to get the unique elements in a column. But I would like to get rid of those rows that the elements of this column are redundant. Or sometimes, to have a look at the rows that the elements of this column are redundant is also important. I guess it boils down to throw out the index of the redundant elements.   With millions of rows, how can I efficiently perform the task?   Thank you in advance.   Boshao [[alternative HTML version deleted]]
2005 Dec 05
5
What is wrong with this FOR-loop?
Hi, I have a more complex example, but the problem boils down to this FOR-loop not filling in the res-matrix run_rows<-seq(0,1,0.05) run_cols<-seq(0.3,0.6,0.05) res<-matrix(NA,length(run_rows),length(run_cols)) for(i in run_rows) { for(j in run_cols) { res[i,j]=i+j #niether the above, nor res[[i,j]]=i+j work, why...
2018 Aug 17
4
Call for testing: OpenSSH 7.8
On 13 August 2018 at 15:06, Val Baranov <val.baranov at duke.edu> wrote: [...] > test_utf8: ........................ > regress/unittests/utf8/tests.c:48 test #25 "c_esc" > ASSERT_INT_EQ(len, wantlen) failed: > len = -1 > wantlen = 5 This boils down to meaning OpenSSH's smnprintf call failed for the string "\033x" instead of returning the expected escaped version "\\033x". The code is in utf8.c but I am not sure why it failed. What's your locale set to? You can run the rest of the tests on your platform by r...
2002 Apr 11
4
X11UseLocalhost option and the DISPLAY variable
...t "X11UseLocalhost yes" setting. If I run the X app with the display set to "localhost:16.0" it gets a "BadAccess" error, but if I run it with the display set to "127.0.0.1:16.0" or "realhostname:16.0" it works fine. Can someone please explain the boiled-down version of what's going on here and save me some trouble? Is there anything wrong with setting "X11UseLocalhost no" in sshd_config? Thanks in advance! Ed Ed Phillips <ed at udel.edu> University of Delaware (302) 831-6082 Systems Programmer III, Network and Systems Se...
2019 Apr 24
3
firewalld configuration for securing SSH
...outdated. From what I can tell the given snippets, relay arguments directly down to iptables, and do not cover both IPv4 and v6. (and in fact when attempting to extend to v6 the firewall would fail to reload). I came up with an "all firewall-cmd" solution which I'd like to share. It boils down to using rich rules in firewalld instead of direct rules for iptables. The code snippets in section 6 of < https://wiki.centos.org/HowTos/Network/SecuringSSH> would be changed to firewall-cmd --permanent --add-rich-rule='rule port port="22" protocol="tcp" accept...
2016 Jul 18
2
Samba 4.2 extremely slow with (some) XP & Seven boxes
hi there, On 07/18/2016 10:24 AM, kendell clark wrote: > I can confirm this. […] maybe debian bug #827141 is relevant … we've seen similiar symptoms, recompiling samba and friends with the patch mentioned there restored the behaviour we got with pre-badlock 4.1.17. it boils down to winbind not re-using signed&sealed connections when pulling user information from the ad, which seems to be _really_ expensive. hth, t. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 473 bytes De...
2009 May 18
4
[LLVMdev] Getting exceptions to work?
I've been struggling for several days, trying to get native exceptions to work in my code. I managed to boil down the IR to the simplest possible example that I can think of. If anyone on this list can tell me what changes I need to make to the following code to get it to work (i.e. return 0 instead of a bus error), it would make my life immensely better. ; ModuleID = 'ExceptionTest'...
2007 Sep 04
7
1.05 to 1.08
...problem with some of our helper specs They work fine in 1.05 but error in 1.08 and it is the calls to route helper methods that seems to be the problem. I did some playing around .. because the code being tested is reasonably large etc ... but this sample (using the peepcode app) seems to boil down the problem describe WeathersHelper do it do weather = Weather.new weather.id = 1 weather_path(weather).should == "/weathers/1" end end This passes in 1.05 and throws an exception in 1.08 ... is seems that the route helper method is not available. BTW, in ou...
2017 Jul 06
5
GEP with a null pointer base
Hi everyone, I've got a problem that I would like some input on. The problem basically boils down to a program that I am compiling, whose source I don't control, doing something like this: p = (char*)0 + n where 'n' is an intptr_t-sized value that the program knows is actually a valid address for a pointer. clang translates this as %p = getelementptr inbounds i8, i8* n...
2013 Dec 09
3
[LLVMdev] [cfe-dev] ARM EABI and modulo
...-target arm-elf-eabi -S mod.c -o - | grep mod > .file "mod.c" > bl __modsi3 > bl __umodsi3 I was discussing this with Tim on IRC and he raised the valid question of a pure mod operation being faster when emulated as it doesn't have to keep track of the quotient. So it really boils down to whether it has a fancy enough dress to be called a feature. Joerg
2020 Sep 28
1
Schema version 87 and windows Hello
...tered with the server. The PIN is only used to unlock the TPM on the PC, so that the TPM can use it's knowledge of the private key/certificate to authenticate against the server that contains a copy of the public key. The following is what I think the authentication (not provisioning) process boils down to: - User attempts to login and provides their PIN to unlock their TPM - Kerberos PKINIT authentication is attempted using the private key/certificate stored in the TPM With the above authentication process in mind, I'm thinking that the provisioning process could be boiled down to: - C...
2017 Jul 03
3
[LLD] Adding WebAssembly support to lld
...nformation required in the wasm format. For example, as you point > out, the type of each function. Functions also live in their own > index space outside of the program's memory space. This means that > the simple approach of traditional linkers where almost everything can > be boiled down to virtual addresses don't make as much sense here. > This is part of the reason why early attempts to use ELF as the > encapsulation format were abandoned: wasm is different enough that is > didn't make sense. BTW, is that summarized somewhere? I remember the discussion...
2004 Sep 24
2
Throwing expressions around
I'm trying to write some code that throws a few expressions around the place, and I've boiled down the problem to be equivalent to this. Consider the curve function which plots expressions in 'x': > curve(x^2) Now wrap that in the most naive wrapper function: > fc=function(m){curve(m)} and try it: > fc(x^2) Error in eval(expr, envir, enclos) : Object &quot...
2016 Feb 26
2
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
...ncan P. N. Exon Smith <dexonsmith at apple.com> wrote: >> // In C >> void foo() { >> int c; >> if (c) print("X"); >> escape(&c); // escape is an empty function >> } >> >> which I think is not UB in C (is it?), but will boil down to the kind >> of IR above. > > I'm pretty sure the `if (c)` is UB because it's branching on an uninitialized > value, which could have a trap representation. I am *way* out of my depth here, but what if 'c' was an 'unsigned char' (and not an 'int...
2008 Jun 22
8
3ware 9650 issues
I've been having no end of issues with a 3ware 9650SE-24M8 in a server that's coming on a year old. I've got 24 WDC WD5001ABYS drives (500GB) hooked to it, running as a single RAID6 w/ a hot spare. These issues boil down to the card periodically throwing errors like the following: sd 1:0:0:0: WARNING: (0x06:0x002C): Command (0x8a) timed out, resetting card. Usually when this happens, it's followed by: 3w-9xxx: scsi1: AEN: INFO (0x04:0x005E): Cache synchronization completed:unit=0. On the less pleasan...
2013 Apr 24
0
[LLVMdev] Optimize away sqrt in simple cases?
...ve c, the only possible output values are Inf and zero. However, if we apply the pow2/sqrt peephole, suddenly non-zero finite outputs are possible. The equivalent example for FMA formation is x*x - x*x. If we convert that to "fma x, x, (-x*x)", you can get a non-zero finite result. It boils down to the fact that giving excess precision in some-places-but-not-others can lead to bad behavior. --Owen
2010 Sep 23
2
extending survival curves past the last event using plot.survfit
Hello, I'm using plot.survfit to plot cumulative incidence of an event. Essentially, my code boils down to: cox <-coxph(Surv(EVINF,STATUS) ~ strata(TREAT) + covariates, data=dat) surv <- survfit(cox) plot(surv,mark.time=F,fun="event") Follow-up time extends to 54 weeks, but the last event occurs at week 30, and no more people are censored in between. Is there a direct...