search for: unadorned

Displaying 20 results from an estimated 27 matches for "unadorned".

2018 Apr 18
0
[PATCH] drm: Print unadorned pointers
On Wed, Apr 18, 2018 at 12:24:50PM +0300, Alexey Brodkin wrote: > After commit ad67b74 ("printk: hash addresses printed with %p") > pointers are being hashed when printed. However, this makes > debug output completely useless. Switch to %px in order to see the > unadorned kernel pointers. > > This was done with the following one-liner: > find drivers/gpu/drm -type f -name "*.c" -exec sed -r -i '/DRM_DEBUG|KERN_DEBUG|pr_debug/ s/%p\b/%px/g' {} + > > Signed-off-by: Alexey Brodkin <abrodkin at synopsys.com> > Cc: Borislav Pe...
2009 Aug 26
4
[LLVMdev] Slow jitter.
....5 seconds. llc -pre-RA-sched=fast -regalloc=local takes 26 seconds. Much better but still slow IMO. The question is if this avoids the non-linear algorithms and if the generated code is faster enough to justify LLVM. I'll do some experimentation. The generated assembly file is 290K lines for unadorned llc and 616K lines for -pre-RA-sched=fast -regalloc=local. This does not inspire much hope :-) -- Óscar
2009 Aug 26
0
[LLVMdev] Slow jitter.
...-sched=fast -regalloc=local takes 26 seconds. Much better but > still slow IMO. The question is if this avoids the non-linear algorithms > and if the generated code is faster enough to justify LLVM. I'll do some > experimentation. > > The generated assembly file is 290K lines for unadorned llc and 616K > lines for -pre-RA-sched=fast -regalloc=local. This does not inspire much > hope :-) Is this a Release or a Release-Asserts build? You could try how much time it takes on a Release-Asserts build. Also if you use -time-passes with llc it should show which pass in llc takes so m...
2014 Dec 14
1
Using a "compose key" on Centos6
...ists, and I can choose a key to use, but after completion, the compose key doesn't seem to work. It works like a charm on Centos-7, though. If I select Right Win as the compose key, typing <compose>ae results in "?" as I expect. but doing the same thing on Centos-6 gives me an unadorned "ae", not the ligature, but the individual characters. i.e., it doesn't do anything helpful. Since the keyboard setup dialog includes the options to define a compose key I'm going to assume it's supposed to work, and th at I'm just overlooking something. Anybody got any...
2010 Mar 12
1
symbol name caching bug: attributes get tied to symbol names
...[2]] Response attr(,"isResponse") [1] TRUE > quote(Response) Response attr(,"isResponse") [1] TRUE The attribute actually does go away after quite a while, but I haven't figured out the trigger. rm(z) followed by gc() does not affect it. If I use an unadorned variable called Response before making the structure z, then the isResponse attribute doesn't seem to stick to the name Response. Bill Dunlap Spotfire, TIBCO Software wdunlap tibco.com
2016 May 18
9
one-shot yum command to match rpms between systems?
Given a list of rpms on one system (rpm -qa > list.txt), is there a one-shot command that I can run on another system to remove all of the rpms not listed and add any that are on the list and not present on the second system? -- MELVILLE THEATRE ~ Real D 3D Digital Cinema ~ www.melvilletheatre.com
2016 May 18
0
one-shot yum command to match rpms between systems?
...e-shot command that I can run on another system to remove all of > the rpms not listed and add any that are on the list and not present > on the second system? I'd probably turn it into a puppet manifest or ansible playbook, and use that to install the packages. I'd not use rpm -qa unadorned, though, but rpm -qa --qf "%{NAME}.%{ARCH}\n". -- Jonathan Billings <billings at negate.org>
2010 Jun 04
0
Hostbased authentication with certificates
...rincipals. Thus, the list of principals should include the fully-qualified name of the client host. The ordering of hostbased authentication attempts has been chosen to prefer certificates if they are available. Once the client has tried any available certificates without success, it will then try unadorned host keys in the usual order (DSA followed by RSA). This means that in a worst-case scenario four hostbased authentication attempts may be tried. However, it is expected that most sites will only deploy one host certificate type and thus the maximum number of attempts under such circumstances would...
2008 Nov 11
0
RFC: Offline help
...ried to yesterday I found a number of issues (the most important of which is that I couldn't have R_DVIPSCMD="dvips -Pbdr" to send output to my office printer: the lack of error reporting is also problematic, and hid the fact that I don't have a default printer set for lpr, so unadorned 'dvips' does not work). I've patched up the issues I found, but wondered if anyone was indeed making frequent use of offline help? Two other things I am aware of is that there is no documentation on how to use it with MiKTeX on Windows (although it is possible), and that on Unix-al...
2011 May 19
1
Border-Layout by multiple Plots
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt. Name: nicht verf?gbar URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20110519/f0ce5a0d/attachment.pl>
2009 Aug 26
0
[LLVMdev] Slow jitter.
On Tue, Aug 25, 2009 at 4:58 PM, Óscar Fuentes<ofv at wanadoo.es> wrote: > Eli Friedman <eli.friedman at gmail.com> writes: > >> On Wed, Aug 26, 2009 at 1:10 AM, Óscar Fuentes<ofv at wanadoo.es> wrote: >>> While compiling some sources, translating from my compiler's IR to LLVM >>> using the C++ API requires 2.5 seconds. If the resulting LLVM
2010 Nov 29
0
[LLVMdev] RFC: Exception Handling Proposal II
On Nov 28, 2010, at 3:47 PM, John McCall wrote: > This is well-formed SSA; the alloca instruction %x is in the entry block and thus dominates both the store in %try and the load in %catch. mem2reg wants to eliminate %x and replace the load in %catch with a fixed value. This involves looking at the value stored in %x at all predecessor points, which is a challenge because one of those
2009 Aug 26
2
[LLVMdev] Slow jitter.
...c=local takes 26 seconds. Much better but >> still slow IMO. The question is if this avoids the non-linear algorithms >> and if the generated code is faster enough to justify LLVM. I'll do some >> experimentation. >> >> The generated assembly file is 290K lines for unadorned llc and 616K >> lines for -pre-RA-sched=fast -regalloc=local. This does not inspire much >> hope :-) > > Is this a Release or a Release-Asserts build? > You could try how much time it takes on a Release-Asserts build. Assertions are disabled. > Also if you use -time-passes...
2009 Aug 25
2
[LLVMdev] Slow jitter.
Eli Friedman <eli.friedman at gmail.com> writes: > On Wed, Aug 26, 2009 at 1:10 AM, Óscar Fuentes<ofv at wanadoo.es> wrote: >> While compiling some sources, translating from my compiler's IR to LLVM >> using the C++ API requires 2.5 seconds. If the resulting LLVM module is >> dumped as LLVM assembler, the file is 240,000 lines long. Generating >> LLVM
2009 May 19
4
proper way to ensure atomic model changes
Hi! Say we have a rails active-record-based model called "instance" which can have different states - STOPPED, RUNNING, STARTING_UP, SHUTTING_DOWN, etc... There is a method #start which changes the instance state to STARTING_UP only if it is STOPPED. def start if self.state == STOPPED self.state = STARTING_UP self.save ... end end As you understand if we have multiple
2018 Nov 13
3
[PATCH 0/2] build: Replace ./nbdkit with a C program.
...hings besides. I propose that we replace ./nbdkit with a C program. The C program is a straightforward translation of the shell script. Some advantages of this approach are: - We can parse options in exactly the same way as the real program. - Use the more accurate ‘is_short_name’ test for unadorned plugin/filter names on the command line. - Fixes the FreeBSD problem with shebangs caused because FreeBSD refuses the use a shell script as a shebang path. - No longer need to maintain that troublesome shell script. I have verified that this does indeed fix the FreeBSD shebang proble...
2002 Sep 21
4
OpenSSH -current fails regression on Solaris 8, sshd dumps core
Hi All. While working on something I noticed a regression failure on Solaris 8. It turned out to be present in -cvs and wasn't due to my changes. One of the tests that fail is basically: ssh -2 -F $build/regress/ssh_proxy 999.999.999.999 true The server reports: sshd[20529]: Disconnecting: Command terminated on signal 11. The culprit seems to be session.c line 1019 or so: snprintf(buf,
2018 Nov 14
3
[PATCH nbdkit v2 0/2] build: Replace ./nbdkit with a C program.
v1 was here: https://www.redhat.com/archives/libguestfs/2018-November/msg00147.html v2: - Use stdbool for booleans. - Use __attribute__((format(printf))). - Don't abort on invalid options, exit with failure instead. - Preserve long/short option choices in the output. - Add '=' in long option output, ie. always use --longopt=arg. - Add "--" parameter
2006 Dec 02
0
[770] trunk/wxsugar/lib/wx_sugar/keyword_classes.rb: Fix some broken ones (Alex Spelling), add some new & missing ones; add
...2 +13,21 @@ </span><span class="cx"> $VERBOSE = v </span><span class="cx"> </span><span class="cx"> module WxSugar </span><ins>+ @defined_classes = {} + </ins><span class="cx"> # accepts a string unadorned name of a WxWidgets class, and block, which </span><span class="cx"> # defines the constructor parameters and style flags for that class. </span><span class="cx"> # If the named class exists in the available WxRuby, the block is run and </span&gt...
2018 Nov 13
0
[PATCH 2/2] build: Replace ./nbdkit with a C program.
There are advantages to having the same code parse the options in the ./nbdkit wrapper as in the real nbdkit: - We can parse options in exactly the same way as the real program. - Use the more accurate ‘is_short_name’ test for unadorned plugin/filter names on the command line. - Fixes the FreeBSD problem with shebangs caused because FreeBSD refuses the use a shell script as a shebang path. Apart from the above, this is a straightforward translation of the original shell script into C and preserves all the existing features s...