search for: backfil

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

Did you mean: backfill
2018 Jun 20
5
[RFC] Removing debug locations from ConstantSDNodes
...ry and that is of course an interesting action. So in the original example I would hope to see debug info on whatever instructions are used to fill the array with values. That said I'm not familiar with the inner workings of dwarf or other debugger formats, so it may very well be reasonable to backfill the information in a late pass to avoid having assembler instructions without debug info as some people proposed. - Matthias > On Jun 20, 2018, at 11:09 AM, via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > DwarfDebug::beginInstruction sets the location to line 0 because other...
2008 May 13
6
Testing that named_scope is defined
Hi guys, I''m just beginning to use RSpec and I ran into the issue of testing a named_scope. I''m not actually trying to test its behavior, as it''s not my code, but I wanted to test at least that it''s defined. I tried doing this: describe Post, ".most_recent" do it "should be defined" do Post.method_defined?(:most_recent).should be_true
2001 Oct 10
2
basic indexing
...indicator of x such that x y z 1 5 8 NA 2 8 9 5 3 1 2 8 4 6 8 1 5 9 8 6 in stata this would be gen z=x[N-1] or even x y z 1 5 8 NA 2 8 9 NA 3 1 2 NA 4 6 8 1 5 9 8 6 in stata this would be gen z=x[N-1] if y==8 I've tried : z _ x[-1], but this leaves the vector too short. I could "backfill" but this seem pretty contrived. In practice, I need to get flexible lagging system as appropriate lags may depend of variable combinations. Thanks for any comments you may have. Michaell -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list...
2020 May 31
1
Simple backup of maildir folder
> On 31 May 2020, at 11:13, Laura Smith <n5d9xq3ti233xiyif2vp at protonmail.ch> wrote: > > ? > > > Sent with ProtonMail Secure Email. > > ??????? Original Message ??????? >> On Sunday, 31 May 2020 09:35, @lbutlr <kremels at kreme.com> wrote: >> >> >> >> A couple of notes on this quite useful script: >> >> My
2018 Dec 29
13
[Bug 2949] New: "limits@openssh.com" extension to SFTP to query various transfer limits
...ets. when doing a read of a really large size, OpenSSH will respond with short reads. e.g. if you request 1MiB, the server will just respond with 64KiB (sftp-server.c:process_read hardcodes buf[64*1024]). this leaves the client with expecting to chunk things up at one size, but ends up having to backfill things dynamically. the client is able to recover though, so that's good. when doing a write of a really large size, OpenSSH will just close the connection as soon as it sees the header with the large write. the server hardcodes 256KiB (SFTP_MAX_MSG_LENGTH) and any attempt to write anything...
2010 Dec 07
1
[ANNOUNCE] xorg-server 1.9.99.901
...und xfree86: Remove an open-coded strtoul() xfree86: Remove %M expansion from config parser dri1: Remove "buffers" from the config logic xfree86: Drop linux libc5 support from the SIGIO code ddc: Don't probe for DDC/CI or EEPROM composite: Don't backfill non-bg-None windows composite: Don't backfill non-MapWindow allocations composite: Move the backfill comment to a more appropriate indent level randr: Remove mirandr shadow: Optimize shadowUpdatePacked(). (#26973) linux: Fix CPU usage bug in console fd flushing...
2018 Jun 20
2
[RFC] Removing debug locations from ConstantSDNodes
> On Jun 19, 2018, at 6:36 PM, Reid Kleckner <rnk at google.com> wrote: > > On Tue, Jun 19, 2018 at 5:46 PM Vedant Kumar <vsk at apple.com <mailto:vsk at apple.com>> wrote: > Someone (Reid?) mentioned that we could try sinking constants to their point of first use as an alternative, and (IIUC) create new nodes with distinct DebugLocs for each use of a constant. I
2009 Aug 23
3
CentOS Mirrors and Adjacent country groups
...u are in PH, you will first get mirrors in conutry (PH), then from the small group (VN, CN, TW ), THEN from the large group (AP), THEN back filled from C1. Or if you are in ZA, you would get mirrors from the country (ZA), then from small group (IL, BR, TR, ES, IN), then from large group (AF), THEN backfill from C1. ===================================================== We also have a cross reference having one country masquerade as another for grouping purposes (countries with mirrors are on the right) ... here is that list: A2 => "C1", AD => "ES", A...
2000 Nov 18
5
Sample still has horrorible distortions... anyone know why?
Hi, I am subscribed to this list, and have learned a lot just from the discussions i see although i don't reply to the msgs, simply coz i'm no big deal programmer. I feel, though, that as i'm really optimistic about vorbis and want it to grow and start to have more and more people using it, i feel that i should warn you about a bug the encoder have (i'm sure monty receives loads
2008 Sep 24
19
How to define request.domain in when testing
Hi, My application relies on request.domain for doing its job. The problem I am encountering, is that when running tests, request.domain returns "test.host", how can I change that so that it returns "mysite.com"? Thanks in advance. -- Posted via http://www.ruby-forum.com/.
2004 Jul 28
3
[LLVMdev] Compiler Driver Requrements & Design (Comments Solicited!)
...ool's lack of features in order to satisfy the goal. For example, suppose a Scheme front end simply generated .ll files but the command line was: driver -c -o myprog.o myprog.ss This tells the driver to compile myprog.ss (scheme input) to a native object file, myprog.o. The driver would "backfill" the tool by running: 1. scheme front end (.ss -> .ll) 2. llvm-as (.ll -> .bc) 3. llc (.bc -> .s) 4. gas (.s -> .o) Or some optimization of the above sequence. 6. RECOGNIZE FILE TYPES BY EXTENSIONS ===================================== In general, the driver will classify its...