search for: implict

Displaying 18 results from an estimated 18 matches for "implict".

Did you mean: implicit
2018 Apr 09
2
Issue with shrink wrapping
...written with an incorrect value. I've "fixed" this by modifying `ShrinkWrap::useOrDefCSROrFI` to explicitly check for the stack pointer register (using `TLI.getStackPointerRegisterToSaveRestore`) and also to ignore tall call instructions (`isCall() && isReturn()`), since they implictly use SP (for AArch{32,64} at least). Does this look correct? Are there alternatives? Shouldn't `ShrinkWrap::useOrDefCSROrFI` also check whether or not `MachineInstr::Frame{Setup,Destroy}` flags are set? In that case, I suppose an alternative slution would be to ensure that `llvm.{stacksave,...
2004 Nov 07
3
Zone to same zone policy
Are there any scenarios that require traffic from a zone to itself to be blocked? If not, Shorewall should possibly allow it as a matter of course. It seems strange having to explicitly create such a policy & it''s not immediately obvious when it is required. -- Taso Hatzi caesar 17 <<-salad cjbx jc vdwwjar jc xi jc jd salad
2018 Apr 10
0
Issue with shrink wrapping
...ShrinkWrap::useOrDefCSROrFI` to explicitly check > for the stack pointer register (using > `TLI.getStackPointerRegisterToSaveRestore`) This part sounds ok to me. Can you put up a patch please? > and also to ignore tall call > instructions (`isCall() && isReturn()`), since they implictly use SP (for > AArch{32,64} at least). Calls are handled through the regmask check, and return blocks should be handled by the common-dominator call. Did you run into any issues with this? Marking blocks containing `isReturn` instructions as used will basically make shrink-wrapping to fail all...
2006 Mar 14
5
Maddening library loading problem
Hi everyone. I recently wrote a nice module that I want to use in my rails app. It consists of a few files in a directory that I have places in the lib directory. It looks like this: /lib/KMLTools/foo.rb, bar.rb, baz.rb Some of these files load each other and I finally got those to work by using the File.dirname(__FILE__) trick. When I simply require the file into my controller, everything is
2018 Aug 15
0
[trees-plugin] - Dovecot index gets corrupted,^M when using maildir and recievend and accessing mail at the same time
...'s not apparent those who clamour for it know the difference. > For end user, only PGP or similar provides sufficient security against admin. For content. Metadata can also reveal a lot. If the goal is to ensure privacy using a third-party storage provider (and assuming mail handlers are implictly trusted), it seems more productive to invest effort into block/FS level encryption that comprehensively protects all data. Joseph Tam <jtam.home at gmail.com>
2006 Mar 13
0
save''s implicit transactions when updating?
...has child objects (corresponding to a child table), activerecord cleverly does the save as an implicit transaction and saves the model object and the children objects. However, after reading the model object from the database and updating it and it''s children, activerecord does not do an implict transaction when saving the model object. The modified object does get saved but the modified children do not get saved. Why not? Major pain for my current application. Thanks, Peter
2008 May 10
1
[LLVMdev] How to handle divide-by-zero exception?
Hi, > What about logically breaking a (complex) SEH method into two logical > methods, as per this pseudo-code as an example: > > ----------------------- > > foo(parameter-list) > { > leading-statements; > > try { > try-statements; > } > catch(Execption0 ex0) { > catch-0-statements; > } > . > catch(ExceptionN exN) { >
1998 Aug 20
0
macro subsitution inconsistancies
...makes sense, considering that it then tries to read the file /etc/smb-confs/smb.conf.guest (my guest account = guest). I don't know if this should be chalked up to a bug in NT (not sending a username to get a browse list on subsequient requests unlike how it does the first time) or a samba bug implictly using the guest account even though that connection has already been auth'ed. As such I'm not sure of a "correct" solution. Note that I was unable to reproduce this with smbclient, I think because smbclient sends the username you specify and doesn't do crazy things like &...
2010 Jan 29
2
sieve script
Hello, after qmail migration need convert some .procmailrc scripts. Found converter procmail -> sieve, but i'm not sure of quality of conversion. My script: --------------- if header :contains "from" ["user at domain1.tld", "user2 at domain2.tld", "user3 at domain3.tld"] { redirect "foo1 at bar.tld"; redirect "foo2 at
2012 Dec 05
1
request
Dear Dr. bernhard cc. r-help Thank you very much for deverlopping rneos package. I read the document of rneos. however, due to my inability, i could not figure-out how to connect with neos server from R environment. let me explain the steps, i took. my laptop is using wireless of my laboratory. to connect the internet, i need proxy address and specific port (that i have mentioned in protocols in
2011 Oct 11
4
need help on read.spss
Hi, I have one doubt about one of the parameter of 'read.spss()' from 'foreign' package. Here is the syntax :- read.spss ( file, use.value.labels = TRUE, to.data.frame = FALSE, max.value.labels = Inf, trim.factor.names = FALSE, trim_values = TRUE, reencode = NA, use.missings = to.data.frame ) In above syntax when I pass *'to.data.frame=
2007 Sep 07
3
NTLMv2, Samba, and Squid
Here is the problem: I'm setting up a new squid proxy server with authentication via Samba and NTLM because the old one died suddenly. The new one is up and running and i have it working; mostly. The kicker is the 2 employees testing Vista (myself and my supervisor) could not authenticate against the server. I say could because through a variety of testing and some lucky reading I found the
2019 May 27
0
[ANNOUNCE] iptables 1.8.3 release
...rs static arptables-nft: fix decoding of hlen on bigendian platforms tests: return-codes script is bash specific xtables: unify user chain add/flush for restore case xtables: add skip flag to objects xtables: add and use nft_build_cache xtables: add and set "implict" flag on transaction objects xtables: handle concurrent ruleset modifications tests: add test script for race-free restore extensions: SYNPROXY: should not be needed anymore on current kernels Lucas Stach (1): xtables-legacy: add missing config.h include Pablo Neira A...
2004 Jan 15
3
Extracting multiple elements from a list
For a long time I've wanted a way to conveniently extract multiple elements from a list, which [[ doesn't allow. Can anyone suggest an efficient function to do this? Wouldn't it be a sensible addition to R? For example, alist <- list() alist[[1]] <- list() alist[[1]]$name <- "first" alist[[1]]$vec <- 1:4 alist[[2]] <- list() alist[[2]]$name <-
2015 Dec 10
2
Allowing virtual registers after register allocation
...rval class and such), you need to maintain the SSA form behind the scene with the VNIs and other related objects. This is usually complicated and error prone. Moreover recomputing that information from scratch in the out of SSA form is not supported and is basically the same as reconstructing SSA (+implict def and fun for sub registers) and that does not seem worth to me. > >> On the other hand, all the infrastructure we have in >> place for physical registers would be suited. >> >> >> (modulo supporting a dynamic number of physical registers) >> > >...
2003 Mar 17
4
X11 connection error in web cgi mode only
Dear all, I am trying to create a web interface using Perl-CGI to call R plots and to display them. The following codes works perfectly fine when I copy and paste into the console directly or if I save it into script.file and then R --no-save < script.file producing the graphs. jpeg("graph.jpeg", width=400, height=400) plot(rnorm(100)) dev.off() Now, I put the line system("R
2015 Dec 10
3
Allowing virtual registers after register allocation
> On Dec 9, 2015, at 4:13 PM, Quentin Colombet <qcolombet at apple.com> wrote: > > Hi, > > I would actually go the other direction, i.e., stick to physical registers but with an infinite number. > The rational is that after register allocation we broke all the nice properties of the pre-alloc virtual registers. For instance, the existing liveness algorithm cannot be used
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...FOptPercent -> pr " %s : float option;\n" name ) cols; pr "}\n"; pr "\n" @@ -6738,7 +6738,7 @@ DESTROY (g) | RStringList _ | RStruct _ | RStructList _ | RHashtable _ -> - pr "void\n" (* all lists returned implictly on the stack *) + pr "void\n" (* all lists returned implictly on the stack *) ); (* Call and arguments. *) pr "%s " name; @@ -6746,148 +6746,148 @@ DESTROY (g) pr "\n"; pr " guestfs_h *g;\n"; iteri (...