search for: sneak

Displaying 20 results from an estimated 368 matches for "sneak".

2008 May 17
2
[Bug 15990] New: Can't play Fedora 9 sneap prview video from ustream.com: Can't play Fedora 9 sneak prview video from ustream.com
http://bugs.freedesktop.org/show_bug.cgi?id=15990 Summary: Can't play Fedora 9 sneap prview video from ustream.com: Can't play Fedora 9 sneak prview video from ustream.com Product: swfdec Version: 0.6.6 Platform: Other OS/Version: All Status: NEW Severity: enhancement Priority: medium Component: library AssignedTo: swfdec at lists.freedesktop.org...
2005 Aug 08
4
wxruby2 swig retooling "complete"
...xiting doesn''t segfault, but bringing up a dialog and then exiting does. So there are still memory problems, but fewer than yesterday :-/ I''m not sure how it compares to last week. I probably won''t have much time to work on wxruby for a few days. I''ll try to sneak in a little time to fix up the unicode stuff at least, and any other patches that have been or will be submitted. Cheers, Kevin
2005 Mar 07
2
Threaded logging?
Is the logging system thread-safe? I have a process that takes about 5 hours, and twice, it has stopped, giving me no errors at all... but the process hasnt been finished... The second time, I loaded the status page, and it gave me a 500 error, at the same time the process stopped. I have a sneaking suspicion that the cause is two processes trying to write to the log-file at the same time... I know the logging system keeps the log file open... any pointers or suggestions? help! :) Thanks, bodhi ==================================================== Bodhi Philpot Programmer GPlusMedia Co....
2014 Jul 23
3
[PATCH 09/17] drm/radeon: use common fence implementation for fences
...a lot of fences, so I think we'll >> have to register callbacks, not a simple wait function. We must keep >> track of all the non-i915 fences for all oustanding batches. Also, the >> scheduler doesn't eliminate the hw queue, only keep it much slower so >> that we can sneak in higher priority things. >> >> Really, scheduler or not is orthogonal. > Also see my other comment about interactions between wait_fence and > the i915 reset logic. We can't actually use it from within the > scheduler code since that would deadlock. Yeah, I see. You woul...
2015 Jan 30
2
[LLVMdev] ARM regression between r223766 and r223925
...not *that* one. I went back (3000 commits) and found that > spotting the *right* failure is near impossible... So, I'm wondering > how did you come up with that range? Did you succeed in self-hosting > 223766 with NEON? My analysis was completely wrong because I had -no-integrated-as sneaked in libcxxabi CMakeLists.txt and then somehow I reverted it which showed me the initial failure. The Neon failure is completely unrelated which I figured out after trying to bootstrap with -mfpu=neon. Sorry for not being helpful :/ ismail
2004 Apr 06
17
res_motv: Request for Comment
...sting install (e.g. /etc/asterisk/sip.conf exists, but not /etc/asterisk/motv.conf) would have the file created at the next "make install" based upon prompting the installer. Any feedback on: a) The idea itself -- is it a good one or is it stupid? b) The way to make it deployed without sneaking a "call home" in on anybody that doesn't want it? Thanks! Mark
2014 Jul 23
2
[PATCH 09/17] drm/radeon: use common fence implementation for fences
...he scheduler needs to keep track of a lot of fences, so I think we'll have to register callbacks, not a simple wait function. We must keep track of all the non-i915 fences for all oustanding batches. Also, the scheduler doesn't eliminate the hw queue, only keep it much slower so that we can sneak in higher priority things. Really, scheduler or not is orthogonal. -Daniel -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch
2006 Aug 25
2
R in Nature
Hi all, We've just had a paper accepted for publication in Nature. We used R for 95% of our analyses (one of my co-authors sneaked in some GenStat when I wasn't looking.). The preprint is available from the Nature web site, in the open peer-review trial section. I searched Nature for previous references to "R Development Core Team", and I received no hits. So I tentatively conclude that our paper is the fir...
2020 Jun 30
2
Clang Build Linux presentations + demos
...rof. Mathieu Acher, an associate professor from the University of Rennes, will be discussing with us about the Linux kernel's configuration space. A common question we get is "does the kernel build with Clang?" "Depends on the config" is just the tip of the iceberg. For a sneak peak of his and his team's work, please see [2][3][4][5]. Nathan Huckleberry is a Comp. Sci. undergrad at the University of Texas at Austin and a Google summer intern. Nathan is working on instrumenting Clang and LLVM in order for us to start measuring, investigating, and improving compile ti...
2013 Nov 15
0
[LLVMdev] Limit loop vectorizer to SSE
...precisely the issue. Consider the function `add_u8S` before[1] and after[2] the loop vectorizer pass. There is no alignment assumption associated with %kernel_data prior to vectorization. I can't tell if it's the loop vectorizer or the codegen at fault, but the alignment assumption seems to sneak in somewhere. v/r, Josh [1] http://pastebin.com/kc95WtGG [2] http://pastebin.com/VY3ZLVJK On Fri, Nov 15, 2013 at 3:58 PM, Nadav Rotem <nrotem at apple.com> wrote: > > On Nov 15, 2013, at 12:36 PM, Renato Golin <renato.golin at linaro.org> > wrote: > > On 15 November...
2020 Jul 21
3
[RFC] Preferred error/note style across non-clang tools, e.g. tablegen
...; > I think it makes a lot of sense to add this to TableGen. It is a widely used tool and the QoI for its error messages could use a lot of improvement! There is a lot of room from improvement in several details of TableGen. However, methinks that changes towards such a goal shouldn't be sneaked in small doses. Then it just adds more inconsistent error reporting to an already inconsistent reporting. If one wants to improve the error reporting in TableGen, let one take it on himself this project, apart from one's other patches. __ Evandro Menezes ◊ SiFive ◊ Austin, TX -----------...
2006 Jun 24
3
getting the smoother matrix from smooth.spline
...nction(x, df){ n = length(x); A = matrix(0, n, n); for(i in 1:n){ y = rep(0, n); y[i]=1; yi = smooth.spline(x, y, df=df)$y; A[,i]= yi; } (A+t(A))/2; } Thanks for any assistance, Gregory --------------------------------- --------------------------------- Get a sneak peak at messages with a handy reading pane. [[alternative HTML version deleted]]
2019 Jun 10
3
[RFC] Coding Standards: "prefer `int` for regular arithmetic, use `unsigned` only for bitmask and when you intend to rely on wrapping behavior."
...nal data structures? They're a > lot more common than std::* containers. +1 Since C++20 is also introducing ssize [1] members, this makes a lot of sense to me. Using it would help avoiding an unsigned comparison as in if (IndexOfInterestingElement >= Container.size()) ... to sneak in from the start. Michael [1] http://wg21.link/p1227r1
2016 Jan 15
3
linux v4.4.0 nouveau fails
Ilia Mirkin wrote: > I suspect the fb0 issue is because you disabled > CONFIG_DRM_FBDEV_EMULATION? Does the freeze also happen with 4.3? Any > chance you could bisect? I saw this config option, but I didn't realize that. The issue also occurs with 4.3. I even tried 4.3-rc1 with the same results. Would the DRM_FBDEV_EMULATION effect 3D? > On Mon, Jan 11, 2016 at 7:23 PM, Wakko
2013 Nov 15
4
[LLVMdev] Limit loop vectorizer to SSE
...precisely the issue. Consider the function `add_u8S` before[1] and after[2] the loop vectorizer pass. There is no alignment assumption associated with %kernel_data prior to vectorization. I can't tell if it's the loop vectorizer or the codegen at fault, but the alignment assumption seems to sneak in somewhere. > > v/r, > Josh > > [1] http://pastebin.com/kc95WtGG > [2] http://pastebin.com/VY3ZLVJK > > > On Fri, Nov 15, 2013 at 3:58 PM, Nadav Rotem <nrotem at apple.com> wrote: > > On Nov 15, 2013, at 12:36 PM, Renato Golin <renato.golin at linaro...
2022 Mar 23
3
On retiring some terminology
That's odd, seems a spam or phish sneaked through to the list. NOT from me :) Jim On Wed, Mar 23, 2022, 21:38 Jim Klimov via Nut-upsuser via Nut-upsuser < nut-upsuser at alioth-lists.debian.net> wrote: > Hello again, > Please find lower the overall documentation: > > > > https://onedrive.live.com/download?cid=...
2019 Jun 10
3
[RFC] Coding Standards: "prefer `int` for regular arithmetic, use `unsigned` only for bitmask and when you intend to rely on wrapping behavior."
...t; >> +1 >> >> Since C++20 is also introducing ssize [1] members, this makes a lot of >> sense to me. Using it would help avoiding an unsigned comparison as in >> >> if (IndexOfInterestingElement >= Container.size()) >> ... >> >> to sneak in from the start. >> >> Michael >> >> [1] http://wg21.link/p1227r1 >> _______________________________________________ >> LLVM Developers mailing list >> llvm-dev at lists.llvm.org >> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >> &...
2016 Jun 12
2
[RFC] LLVM Coroutines
...expression will be (conceptually): %0 = coro.save() async_send(%buf) coro.suspend(%0) coro.save is the point when coroutine is considered suspended. This allows async_send to resume the coroutine even before async_send returned control back to f. To make it safe, absolutely nothing should sneak-in between coro.save and coro.suspend beyond what frontend/user put there. Aside: ----- Based on what we discussed earlier, I suspect that optimizer may try to sneak stuff in between coro.save and coro.suspend. If it is the case, I have a solution :-), Richard Smith suggested it earlier to me. Use...
2009 Jan 31
0
[LLVMdev] Optimized code analysis problems
...vtsi32_si128) instead of the functions being > replaced by 'llvm.*' > Is there anyway to extract these names directly as function calls? The names disappear in an unrecoverable way once the first inlining pass runs to take care of always_inline. You might be able to hack the code to sneak in before then, though. -Eli
2011 Jul 21
0
[LLVMdev] Correct use of StringRef and Twine
...Updated diff with test fix. (since this broke a test (printing chars as numerical values, rather than characters) it's possible this change is a bad idea & it could break the product code itself. Though strangely I wasn't able to do character concatenation without my change, so I have a sneaking suspicion that while the test passed, it didn't actually expose this case to the common Twine use cases. Perhaps only explicitly invoking the Twine ctor would've got the char-as-number behavior previously) -------------- next part -------------- A non-text attachment was scrubbed... Name...