search for: decrees

Displaying 20 results from an estimated 128 matches for "decrees".

Did you mean: decree
2013 May 16
4
[LLVMdev] _Znwm is not a builtin
On Wed, May 15, 2013 at 7:49 PM, Chandler Carruth <chandlerc at google.com>wrote: > On Wed, May 15, 2013 at 8:31 PM, Richard Smith <richard at metafoo.co.uk>wrote: > >> Hi, >> >> LLVM classifies _Znwm as a builtin by default. After some discussion, the >> C++ core working group have decreed that that is not correct: calls to >> "operator
2013 May 16
2
[LLVMdev] _Znwm is not a builtin
Hi, LLVM classifies _Znwm as a builtin by default. After some discussion, the C++ core working group have decreed that that is not correct: calls to "operator new" *can* be optimized, but only if they come from new-expressions, and not if they come from explicit calls to ::operator new. We cannot work around this in the frontend by marking the call as 'nobuiltin' for two
2015 Jan 02
2
[LLVMdev] [PATCH] [ADT] APFloat - Fix sign handling for FMA results that truncate to zero.
Hi All, APFloat::fusedMultiplyAdd currently computes the wrong signed zero when small negative results are truncated back to zero in standard precision. The following snippet handles the signedness in fusedMultiplyAdd: /* If two numbers add (exactly) to zero, IEEE 754 decrees it is a positive zero unless rounding to minus infinity, except that adding two like-signed zeroes gives that zero. */ if (category == fcZero && sign != addend.sign) sign = (rounding_mode == rmTowardNegative); The test "category == fcZero" tells us that the result was z...
2017 Apr 11
1
jave-1.5.0 on centos 7...
Curring a long story short... we had a centos 5 server running jboss 6 and jboss 4.2.3GA because of centois 5 EOL TPTB have decreed this server needs migratiung to a Centos 7 server But... ?the hboss 4.2.3GA jboss app uses java 1.5.0 (_22 FTWT). I can't *(unsurprisingly!) find java 1.5.0 under yum. anyone got it in an rpm or know where it can found? (At his stage it is merely a guess that
2015 Apr 09
1
After Update Member Server not working
Greetings, Tim! > I hate this time change twice a year. Really! Should be banned and sent to the moon. Install proper tzdata. I don't see an issue. It is even better on Linux. Win7 still don't have the correct timezone data for Russia, and that is over half a year after the decree. -- With best regards, Andrey Repin Thursday, April 9, 2015 19:17:39 Sorry for my terrible english...
2004 Mar 02
1
Changing AD pasword
Running Samba3.0.2a in linux (Gentoo) security = ads Users are logging in fine (XP and W2K), using samba for file sharing and printing. We have (by corporate decree) a fairly short password life. When the password is about to expire the user is prompted to change it during their windows logon. I have seen mention of synchronizing the password with unix but no mention of pushing it back to the AD
2005 Feb 26
0
It works, and thanks ;)
List, No, no questions, no complaints. Just compliments to the Samba team. Samba 3.0.11 (Red Hat RHAS3) running as (one of 5 diverse Linux servers) PDC for all (75+) wk2000 and XP professional workstations on top of an 1,560+ OpenLDAP 2.2.17 backend at Barlaeus Gymnasium ("gymnasium" means "sort of high school for over-intelligent pupils whose parents just might happen to have
2024 Apr 30
1
function import file csv Openair
In the Openair package it is possible to restore the import csv file function? it has been removed in the latest versions. Infinitely grateful Evelina Ballato Evelina Ballato Arpa Piemonte Dipartimento Territoriale Piemonte Nord Est - sede di Omegna ************************************************************************ Riservatezza/Confidentiality Ai sensi del Regolamento UE 679/2016, del
2015 Jan 03
2
[LLVMdev] [PATCH] [ADT] APFloat - Fix sign handling for FMA results that truncate to zero.
...Hi All, > > APFloat::fusedMultiplyAdd currently computes the wrong signed zero when > small negative results are truncated back to zero in standard precision. > The following snippet handles the signedness in fusedMultiplyAdd: > > /* If two numbers add (exactly) to zero, IEEE 754 decrees it is a > positive zero unless rounding to minus infinity, except that > > adding two like-signed zeroes gives that zero. */ > if (category == fcZero && sign != addend.sign) > sign = (rounding_mode == rmTowardNegative); > > The test "category == fcZero&quo...
2020 May 22
3
log.samba missing rotation
I know about this param, I configured it and log.smbd, log.nmbd and others are rotated, log.samba is not. ----- Original Message ----- > From: "samba" <samba at lists.samba.org> > To: "Lorenzo Milesi" <maxxer at yetopen.it>, "samba" <samba at lists.samba.org> > Sent: Thursday, May 21, 2020 7:29:04 PM > Subject: Re: [Samba] log.samba
2013 May 16
0
[LLVMdev] _Znwm is not a builtin
On Wed, May 15, 2013 at 8:31 PM, Richard Smith <richard at metafoo.co.uk>wrote: > Hi, > > LLVM classifies _Znwm as a builtin by default. After some discussion, the > C++ core working group have decreed that that is not correct: calls to > "operator new" *can* be optimized, but only if they come from > new-expressions, and not if they come from explicit calls to
2004 Aug 06
4
[Re: icecast2 ??]
Behold, gtgbr@gmx.net hath decreed: > Aaron Gaudio wrote: > > the current stable version. Those who are willing to give up the > > features not yet implemented in icecast2 in order to stream vorbis, can > > use the devel version. Those who don't need to stream vorbis can > > continue using the stable version. There is not a good rationality for > > Icecast2 is
2017 Oct 19
1
Test opus
Please report this failure and include 'make check SEED=0 fails tests/test_opus_api.c at line 1387 for libopus 1.1' and any relevant details about your system. Linux SBC-A62 3.14.28-a62-00001-gbed2e52 #31 SMP PREEMPT Thu Apr 21 12:54:03 CEST 2016 armv7l armv7l armv7l GNU/Linux Matteo Piersantelli Sales Manager <http://www.am-microsystems.com/> Mobile
2013 May 16
0
[LLVMdev] _Znwm is not a builtin
On Wed, May 15, 2013 at 8:28 PM, Richard Smith <richard at metafoo.co.uk>wrote: > On Wed, May 15, 2013 at 7:49 PM, Chandler Carruth <chandlerc at google.com>wrote: > >> On Wed, May 15, 2013 at 8:31 PM, Richard Smith <richard at metafoo.co.uk>wrote: >> >>> Hi, >>> >>> LLVM classifies _Znwm as a builtin by default. After some
2019 Jul 02
3
Weird access problem to files
> The latest Samba version is 4.10.6 and there have been numerous updates > since 4.3.11, but you shouldn't be having the problem you have, so lets > start be you posting your smb.conf Thank you very much. Here it is: [global] server services = s3fs, rpc, nbt, wrepl, ldap, cldap, kdc, drepl, winbindd, ntp_signd, kcc, dnsupdate realm = domain.lan ldap server require strong auth =
2004 Aug 06
2
[Re: icecast2 ??]
Behold, gtgbr@gmx.net hath decreed: > > http://www.xiph.org/about.html Note also the paragraph at http://www.xiph.org/ : "Xiph.Org Foundation is a non-profit corporation dedicated to protecting the foundations of Internet multimedia from control by private interests. Our purpose is to support and develop free, open protocols and software to serve the public, developer and business
2020 May 18
3
Intermittent permission denied when accessing share
> Not sure, but that is the way it looks, just a thought, are you using > sssd ? no, not even installed > Just like a normal share, '[homes]' is a special share that doesn't use > 'path. There used to be something on the wiki about using '[home]' on a > DC, I didn't know it had gone until you mentioned it ;-) So if I use [home] it would be a normal
2019 Jul 02
1
Weird access problem to files
> which share isn't working ? > is it 'CONDIVISIONE' ? What is really weird is: Computer01, Win10, user1 logged in as local (not using domain user), share mapped with domain user. In the path I've posted in the first message the user can access BUT cannot write. Computer01, Win10, user1 logged in as domain user: same as above, user can access the folder but cannot write.
2020 May 25
1
log.samba missing rotation
Can you try this and adjust the path's in it. #/etc/logrotate.d/samba /var/log/samba/log.smbd { weekly missingok rotate 7 postrotate [ ! -x /usr/bin/smbcontrol ] || [ ! -f /run/samba/smbd.pid ] || /usr/bin/smbcontrol smbd reload-config endscript compress delaycompress notifempty } /var/log/samba/log.nmbd {
2013 May 16
0
[LLVMdev] _Znwm is not a builtin
On Wed, May 15, 2013 at 9:28 PM, Richard Smith <richard at metafoo.co.uk>wrote: > On Wed, May 15, 2013 at 7:49 PM, Chandler Carruth <chandlerc at google.com>wrote: > >> On Wed, May 15, 2013 at 8:31 PM, Richard Smith <richard at metafoo.co.uk>wrote: >> >>> Hi, >>> >>> LLVM classifies _Znwm as a builtin by default. After some