search for: longstand

Displaying 20 results from an estimated 111 matches for "longstand".

Did you mean: logstand
2020 Jan 23
2
Longstanding failing tests - clang-tidy, MachO, Polly
So, for this test case: extern "C" void shouldBeUnconditional(); extern "C" void shouldBeConditional(); extern "C" void otherCall(); void testFn(bool Bool1, bool Bool2) { Bool1 |= Bool2; shouldBeUnconditional(); if (Bool1) shouldBeConditional(); if (Bool2) { otherCall(); if (Bool1) otherCall(); } } MSVC generates this buggy asm: $ cl -c
2005 Mar 19
6
warning: fork bomb
I tried to run this: :(){ :&:;};: as a non-root user in my CentOS4 and it bring down my box to its knees. Take care. str
2004 Jan 21
3
2.6.0 in cygwin problem
Hello! I need to do rsync between local drives on win32. Rsync works, but it never ends. I started it with -vv and it writes something like: total: matches=0 tag_hits=0 false_alarms=0 data=0 And then it stays forever. :-( Could you help me?
2014 Oct 21
3
SMTP authentication setup
At my company we've had a longstanding problem of not being able to send email from devices outside of our internal network and any specific IP address that we open the relay to. As it turns out, SASL has never been set up. I need to set up SASL ASAP but none of the guides I've found seem to work. This is the latest guide I t...
2011 Sep 06
0
[LLVMdev] Unexpected behavior reading/writing <8 x i1> vector to memory
...'t see anything about writing vectors of i1 to memory as being undefined. > > (I recognize that I probably don't want to be doing this in general and wouldn't expect it to necessarily be super efficient.  But this was unusual enough that it seemed worth checking about.) There are longstanding issues with CodeGen (espcially loads/stores) of i1 vectors. One of which is that we never actually decided what the memory representation should be... -Eli
2017 Sep 22
2
prevent users from fiddling with network?
...and even if it is workstation that is basically a single >> user >> one, but has to be managed centrally. I rest my case. Basically, all _I_ >> said on this sidetracked thread should be treated as enclosed into >> "rant" >> tags ;-) > > Well, this is my longstanding rant against RedHat and friends. Take a > look > at what Fedora is doing before blithely throwing it into RedHat. >> > Most Fedora stuff is for single user laptops, and frankly, a lot of it > seems developed by people with no concept of system administration. > Things like...
2016 Jan 28
2
Abuse of a private glibc symbol in R 3.2.3
Hello, developers of R. I have been unsuccessfully trying to build R on a musl libc system for the last days. ./configure works, but make fails. The command that errors out is here - http://pastebin.com/raw/UwFRsiqT It was brought to my attention that this is a (very longstanding) abuse of a private glibc symbol in R. In R 3.2.3, it seems that configure is trying to test for it on Linux. It apparently fails to accurately test (as demonstrated by the link error), perhaps because the test program does not actually *use* __libc_stack_end so it gets optimized out. (See line...
2016 Apr 19
1
Machine-readble cloud-image list
...int me at it ( ideally assign the issue to me ), I > can work out the required bits. > > What sort of info would you expect to see in this beyond > - filename > - date of last upates > - centos ver > - arch > - file format > - sha256um > > regards We've had a longstanding request for this in Fedora too. It'd be awesome if we could coordinate in format and location. See https://lists.fedoraproject.org/pipermail/devel/2015-May/210705.html https://fedorahosted.org/cloud/ticket/93 (CC'ing Kushal) -- Matthew Miller <mattdm at fedoraproject.org> Fedor...
2010 Oct 30
2
Exceptionally long queue length queuing . . . .
...e while it happens way often, it doesn't always happen. My ITSPs have all dropped IAX, and if they're experiencing this problem I can see why. Once the first of these messages has occurred, it's "goodbye audio" for the rest of the call. If anyone has a perspective on this longstanding problem, I'd sure be glad to hear it. Thanks. b.
2019 Feb 05
4
[RFC] Enforcing immediate operands for intrinsics
Hi, I would like to solve the longstanding need for a way to indicate which parameters to an intrinsic are required to be immediates. It should be possible to declare in tablegen which parameters must be a trivial constant, or else the IR is invalid. The verifier could then reject invalid intrinsic calls, so code handling the intrinsics...
2011 Sep 06
4
[LLVMdev] Unexpected behavior reading/writing <8 x i1> vector to memory
I'm seeing some behavior that surprised me in writing an <8 x i1> vector to memory and reading it back. (Specifically, the surprise is that I didn't get the original value back!). This happens both with TOT and 2.9. This program illustrates the issue: define i32 @foo() { %c = alloca <8 x i1> store <8 x i1> <i1 true, i1 false, i1 false, i1 false, i1 false, i1
2020 Jan 22
4
Longstanding failing tests - clang-tidy, MachO, Polly
Hi, A few tests seem broken for a long time, some for more than a month. Would it possible for respective owners to take a look please? I'm at checkout 133a7e631cee97965e310f0d110739217427fd3d, compiling on Windows 10. These tests fail with Visual Studio 2019: Failing Tests (7): Clang Tools :: clang-tidy/checkers/cert-mem57-cpp-cpp17.cpp Clang Tools ::
2024 Jan 27
2
ntlm_auth not returning "STATUS_OK"
...pp-only credentials, the users can authenticate with their > domain credentials. This is where ntlm_auth comes in. > > I would be very sorry to see ntlm_auth go away. A quick web search > shows I'm not the only one using it. This reinforces my comment about > developers removing longstanding functionality without a compatible > path forward. That places a burden on downstream developers who have > come to rely on functionality. Perhaps when I said ntlm_auth is likely to away, I should have qualified it, so lets do that now: If you set 'ntlm auth = yes', you are actua...
2009 Nov 19
3
[LLVMdev] opt and bugs
A longstanding project on the LLVM "open projects" page is to run random C code through random LLVM passes. We have found many LLVM bugs by doing the first of these, but not the second: we test only -O[0123s]. Slowly but surely, LLVM is evolving resistance to our random tester. Of course this i...
2024 Jan 27
1
ntlm_auth not returning "STATUS_OK"
...than maintain separate app-only credentials, the users can authenticate with their domain credentials. This is where ntlm_auth comes in. I would be very sorry to see ntlm_auth go away. A quick web search shows I'm not the only one using it. This reinforces my comment about developers removing longstanding functionality without a compatible path forward. That places a burden on downstream developers who have come to rely on functionality. Windows has long permitted authentication of its apps with domain credentials, whether Access, SQL Server, Outlook, etc. It would be a shame for Linus to take a...
2011 Mar 13
0
[LLVMdev] IndVarSimplify too aggressive ?
...by 30% in several cases. > > The patch could probably be made smarter : I am welcoming all suggestions. It's worth pointing out that LoopStrengthReduce is doing essentially the same transformation. The only reason the generated code is improved at all with your change is that ISel has a longstanding issue where it can't conclude that the upper half of zext i32 %x to i64 is zero if the zext is in a different block from the user of the zext. -Eli
2013 Feb 02
2
Relaxing strict chroot checks on recent Linux kernels?
...I want to create an account, used for sftp only, to allow other servers to download certain files off of a particular directory on this server. That directory *can't* be writable only by root; other users populate it. For the time being, I've hacked around it using ACLs -- there's a longstanding bug^Wfeature in openssh that causes it to ignore acls when "validating" permissions. But please consider allowing ForceCommand internal-sftp in conjunction with ChrootDirectory to safely skip permission checks on Linux kernels that are new enough to use PR_SET_NO_NEW_PRIVS. [1] Unles...
2017 Sep 21
2
prevent users from fiddling with network?
On Thu, September 21, 2017 12:42 pm, Joseph L. Casale wrote: >> Than was my first reaction when I realized that logged in with GUI (X11) >> user can turn off (and on) network interfaces. Without being in sudoers >> file. > > Would not being in sudoers prevent them from pulling the cord out? The > rational for the control is well justified for users with multiple >
2017 Sep 22
1
prevent users from fiddling with network?
...prevent users from fiddling with network? On Thu, Sep 21, 2017 at 07:00:12PM -0500, Valeri Galtsev wrote: > > On Thu, September 21, 2017 6:13 pm, Scott Robbins wrote: > > On Thu, Sep 21, 2017 at 05:23:23PM -0500, Valeri Galtsev wrote: > >> > > > > Well, this is my longstanding rant against RedHat and friends. Take a > > look > > at what Fedora is doing before blithely throwing it into RedHat. > >> > > Most Fedora stuff is for single user laptops, and frankly, a lot of it > > seems developed by people with no concept of system administ...
2019 Jan 31
3
MachineIRBuilder API
...lizing the amount constant). With an overload using a SrcOp constructible from “unsigned”, and one using an integer type, the wrong one gets called and ends up creating a constant with the value of the register. I think this is more a symptom of using a plain unsigned for registers, but fixing this longstanding mistake everywhere would be a very large project. -Matt -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190131/b4ff6090/attachment.html>