search for: misapplying

Displaying 20 results from an estimated 20 matches for "misapplying".

2004 Aug 06
1
Sacrilege, but...
On Tue, 24 Jul 2001, Brendan Cully wrote: | which patch exactly is that? I looked into Mark's patch and it seems | to be unsafe (try setting up a client which reads much too slowly and | see if it bogs down all the other clients). I may have misapplied it | or applied it to the wrong version of icecast though, or you could be | talking about a different patch. This one... it probably is the
2007 Jun 26
2
Strange RODBC problem
I am using RODBC to collect data from an ODBC connection to an MS Access Database. Everything seems to be working well except datetimes between March 12, 2006 02:00 and 02:59 get moved one hour forward. This does not seem to be happening with Excel connecting to the same connection. March 12 seems a bit early for Daylight savings time. What am I doing wrong? R 2.5.0 Windows XP with the
2008 Aug 06
1
[LLVMdev] Is there room for another build system?
...nt out, MinGW developers prefer to build from Cygwin. Maybe this comes from the previous MinGW developers (pre-MSYS) who used Cygwin extensively, maybe there are technical reasons for doing so. [snip] > The reason CMake won't build "out of the box" for me, is that it's > *misapplying* the CygWin workarounds to MinGW -- and then refusing to > write out something for me to fix up. I'm having success building the LLVM libraries with CMake 2.6.1 on MSYS, where 2.6 failed, IIRC. Maybe this was fixed. -- Oscar
2014 Apr 23
4
oggpack_writecopy bug
At some stage (possibly commit r17268) oggpack_writecopy started to fail with some strings longer than 256 bytes and all strings longer than 512 bytes. Also it thrashes the stack with very long strings. Lithopsian
2008 Aug 06
0
[LLVMdev] Is there room for another build system?
...ipts. Just remember to run configure and make from *within* bash (MSYS-3.1); things are much worse with sh ./configure from the Windows command shell, than ./configure within bash. Best regards, Kenneth The reason CMake won't build "out of the box" for me, is that it's *misapplying* the CygWin workarounds to MinGW -- and then refusing to write out something for me to fix up.
2024 May 23
2
Samba suddenly acting strangely
...t time; _ I'm not sure about this, but I think sometimes Samba mistook files for folders or vice-versa. I'm very ignorant about Samba's internals, but one possible explanation I came up with is that Samba has some sort of database about files/folders and for some reason it started misapplying it (i.e. apply the wrong record of the database to a file/folder). Does this make any sense? Does this sort of database/cache/whatever exist? Altough everything is working now on all the systems I manage, it already happened at least five times (on at least three different networks), so I'...
2004 Aug 06
3
Sacrilege, but...
On Tue, 24 Jul 2001, Brendan Cully wrote: | you can get the not-open-source version free from shoutcast.com. Your | symptoms imply that you may be trying to stream high-bitrate MP3s? | (that would be 160kbit+). For starters, try setting sleep_ratio to 0 | in icecast.conf. Although it burns more CPU it may save you some | grief. Alternatively you could try checking out icecast from CVS, | although
2008 Aug 06
4
[LLVMdev] Is there room for another build system?
Kenneth Boyd <zaimoni at zaimoni.com> writes: > I'm indulging in this exercise to enable testing a native MingW32 build > of LLVM in Windows. If LLVM's DejaGNU usage is the same as GCC's, I'll google or ask on the MinGW mailing list how MinGW testers run the GCC testsuite, before trying to fix something that maybe is not broken. > There are more portability
2018 Jun 05
2
lld mishandling R_X86_64_PC32 relocations
Hi, I've tracked down what I believe is a bug in lld's relocation processing for R_X86_64_PC32 REL relocations. I'm producing the object file in a slightly unusual way: I'm using objcopy on a relocatable i386 ELF object file to convert it to x86_64 which transforms a R_386_PC32 into a R_X86_64_PC32. Steps to reproduce: 1. Assemble the attached bug.asm using nasm and note the
2020 Sep 30
0
Mailman config needs updated to unbreak DKIM verification
Hello mail admin, Currently the nut-upsdev mailing list mail is mostly getting marked as SPAM (or SPOOF) due to failed DKIM. DKIM is trying to verify mail headers signed by the original sender, but using the mailing list DKIM key (or lack thereof). This occurs because the DKIM mail authentication looks for a authentication key for the headers based on the HELO/ELHO user, but the message is DKIM
2018 Nov 28
0
Tools/mechanisms for the management of access permissions in big filebased datasets
On Nov 28, 2018, at 2:36 AM, Frank Thommen <list.centos at drosera.ch> wrote: > > Our problem is more the management side. Effectively we are looking for a tool that helps us manage these permissions I want ACLs to work. There?s a real problem to solve, which is that the old user:group rwx Unix permission system doesn?t let you express common wishes like ?Angel & Bobby own this
2004 Aug 06
0
Sacrilege, but...
On Tuesday, 24 July 2001 at 19:38, Dale Ghent wrote: > On Tue, 24 Jul 2001, Brendan Cully wrote: > > | you can get the not-open-source version free from shoutcast.com. Your > | symptoms imply that you may be trying to stream high-bitrate MP3s? > | (that would be 160kbit+). For starters, try setting sleep_ratio to 0 > | in icecast.conf. Although it burns more CPU it may save you
2011 Jan 27
6
[Bug 1851] New: ssh_selinux_setfscreatecon segfaults if SELinux support is compiled in but is disabled at run-time
https://bugzilla.mindrot.org/show_bug.cgi?id=1851 Summary: ssh_selinux_setfscreatecon segfaults if SELinux support is compiled in but is disabled at run-time Product: Portable OpenSSH Version: 5.7p1 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: ssh
2013 Apr 18
0
[LLVMdev] optimization in presence of floating point
----- Original Message ----- > From: "reed kotler" <rkotler at mips.com> > To: LLVMdev at cs.uiuc.edu > Sent: Wednesday, April 17, 2013 8:32:23 PM > Subject: [LLVMdev] optimization in presence of floating point > > an interesting problem occurs if you do interval arithmetic. > > void foo() { > float XL, XU, Y, Z; > > .... >
2013 Apr 18
3
[LLVMdev] optimization in presence of floating point
an interesting problem occurs if you do interval arithmetic. void foo() { float XL, XU, Y, Z; .... call_change_rounding_mode(lower); XL = Y + Z; // lower bound call_change_rounding_mode(upper); XU = Y + Z; } Two issues here: 1) will the compiler mistakenly treat Y+Z as a common subexpression. 2) might it move the call_change_rounding_mode after the assignment to XU since it seens no
2018 Nov 28
2
Tools/mechanisms for the management of access permissions in big filebased datasets
Thank you. Basically our problem are not the ACLs or their support per se, but that we have to manage a huge number of individual ACLS (several hundred users in more than hundred projects) in multi-petabyte filesystem and still have to keep overview and control. Our problem is more the management side. Effectively we are looking for a tool that helps us manage these permissions and we
2009 May 01
2
Automating the Samba Install
Hey all, I'm coloring outside the lines a little bit here but I would like to automate the install of a samba pdc. Within that script to install I would like to assign rights to a group. Here is an example of a few steps: # Create Unix group: groupadd domadmins # Map unix group to samba groups: net groupmap add ntgroup="Domain Admins" unixgroup=domadmins rid=512 type=d # Assign
2024 May 23
1
Samba suddenly acting strangely
...ut this, but I think sometimes Samba > mistook files for folders or vice-versa. Very strange. > I'm very ignorant about Samba's internals, but one possible > explanation I came up with is that Samba has some sort of database > about files/folders and for some reason it started misapplying it > (i.e. apply the wrong record of the database to a file/folder).Does > this make any sense? Does this sort of database/cache/whatever exist? > > > Altough everything is working now on all the systems I manage, it > already happened at least five times (on at least three diff...
2007 Dec 11
54
1.9
Hey so, People are asking about Mongrel Ruby 1.9 compatibility. Isn''t the point of 1.9 for library developers to have time to get ready for 2.0? It''s not like 1.9 is a production release. Evan -- Evan Weaver Cloudburst, LLC
2005 May 13
45
Why Wouldn't I Use Rails
I am starting a large project and still selecting what framework to use. Rather than ask brand x what is wrong with brand y, I am more interested in self confession. Why would I *not* want to use Rails (compared to Iowa and Nitro). I posted a synopsis of the project to ruby-talk but will repost it here if anyone wants it. xev