search for: conditionalized

Displaying 20 results from an estimated 290 matches for "conditionalized".

Did you mean: conditionalize
2005 Mar 30
1
ABOUT "THE ULTIMATE TRAFFIC CONDITIONER"
Dear friends: I was analizing the HTB script at "The ultimate traffic conditioner", at the Cookbook, at Lartc. I have a very basic question: First, it is defined the root htb qdisc, as expected; then, it is defined the main (parent) htb class, with the total uplink as rate, also as expected; then, they are defined 2 child clases: first of them has also the total uplink as rate (!)
2009 May 08
3
[LLVMdev] RFA: flag_objc_abi on Non-Darwin Platforms?
Is the flag_objc_abi variable available on non-Darwin platforms in llvm-gcc? I want to use it in llvm-backend.cpp to conditionalize a test. But I don't want to break Linux, Ada, Fortran, etc. -bw
2003 Dec 19
2
Problems using The Ultimate Traffic Conditioner from the Cookbook
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I''m absolutely new to tc and found The Ultimate Traffic Conditioner to be exactly what I wanted as a starting point. Now the script doesn''t behave as I expected though, which applies to both the CBQ and HTB versions, the latter of which being my preference. The only changes made to the script are these assignments:
2003 Jun 04
2
chan_capi with avm c2 only uses one BRI
hi all it seems like whatever I do, I can't use more than 1 BRI on my AVM C2 with chan_capi. Both channels seem to work, but not at the same time. And - yes - they're connected to different NT boxes :) Any ideas? kapejod? -- Roy Sigurd Karlsbakk, Datavaktmester ProntoTV AS - http://www.pronto.tv/ Tel: +47 9801 3356 Computers are like air conditioners. They stop working when you open
2016 May 24
3
Latest R-devel build failing on OS X
...pilation errors > which I think you confirmed on pre-6 readline). > > I remember you having two different readlines installed on OSX > but the standard Mac binary (from CRAN, i.e. Simon) would use > the old readline version ? > > so that whole resetReadline() solution is now conditionalized inside > > #if defined(RL_READLINE_VERSION) && RL_READLINE_VERSION >= 0x0603 > ... > ... > #endif > > and hence the previous code (which is buggy) is used for > readline versions < 6.3. > As a consequence the bug is only fixed for readline >= 6.3,...
2007 Sep 18
1
DO NOT REPLY [Bug 4981] New: iconv confusion
...839, from ./mkrounding.c:20: ./proto.h:258: error: parse error before 'ic' proto.h:258 is: int iconvbufs(iconv_t ic, xbuf *in, xbuf *out, int flags); Apparently iconv_t isn't getting defined. iconv_t is part of the iconv library and iconv.h. In rsync.h:368 iconv.h is conditionalized by this line: #if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H #include <iconv.h> After a little experimentation I discovered that HAVE_ICONV_OPEN on my configuration is undefined. I tried tracing through the configuration files but I don't understand the logic behind the set...
2020 Jul 25
2
[kvm-unit-tests PATCH v3 0/4] Update patch set
On Sat, 2020-07-25 at 17:47 +0100, Ben Hutchings wrote: > On Sun, 2020-03-29 at 04:38 -0700, Bill Wendling wrote: > > - Renamed IMAGE_BASE to LD_IMAGE_BASE_OPT. > > - Moved "-fcommon" to KLIBCREQFLAGS in scripts/Kbuild.klibc. > > - Remove "dash" warning fixes which have been upstreamed. > > - Conditionalize the inclusion of compiler flags by using the
2007 Jan 23
3
Login and logout scripts
Is there a way to run a script on my samba PDC machine when a user logs in and logs out? Thanks in advance. -- Air conditioners and Computers are the same - they both crash when you open Windows.
2020 Feb 24
3
[PATCH commit] options: Compile blocksize code conditionally.
Since the blocksize option was added since the minimum version of libguestfs for virt-v2v, we need to make it conditional so that virt-v2v can still be compiled with the older libguestfs. This commit does the minimum fix to make it build. It doesn't conditionalize the --blocksize option altogether. However I believe, at least for virt-v2v, that is OK since the --blocksize option is not used
2012 Sep 10
2
[LLVMdev] Unaligned vector memory access for ARM/NEON.
On Sep 7, 2012, at 4:46 PM, David Peixotto <dpeixott at codeaurora.org> wrote: >> Note that this won't work on big-endian targets where changing the >> vld1/vst1 element size actually changes the behavior of the instructions. > > Ok, so would it be best to put an explicit test for endianess in the code? > The td files already contain restrictions some for endianess
2020 Jul 25
2
[kvm-unit-tests PATCH v3 0/4] Update patch set
On Sat, 2020-07-25 at 14:36 -0700, Bill Wendling wrote: [...] > I upstreamed a few patches to klibc to fix a few linker errors. Some > of these might help: I applied v3 of your patch series and never saw this later version. > - cfc4e4c9591c73edc786aebbe83b371fec36fec8 - Conditionalized > non-supported flags. > - 1b014f8401fc5b3dc803e2cae06ac5c803dc89cb - Add "-fno-common" > - 1e876662002eac9662357c7feaee12be04107d32 - Use proper libc > - f07a8f75b8ebfea71254cd8829c0476b6b6683e1 - Adjust some flags for ld.lld > - 7f0aa03493dc9ab8c1d2798f6586bfbc5f...
2015 Aug 03
8
[LLVMdev] Ideas for making llvm-config --cxxflags more useful
> On Aug 3, 2015, at 10:24 AM, Chris Bieneman <beanz at apple.com> wrote: > > Hey Tom, > > I’m not a regular user of llvm-config, but this sounds completely right to me, and it would be a significant improvement over what we have now. > > The only question I want to raise is, what about NDEBUG? There are headers that conditionalize on NDEBUG, which could lead to ABI
2009 Nov 16
2
Conditional statement
Dear useRs, I wrote a function that simulates a stochastic model in discrete time. The problem is that the stochastic parameters should not be negative and sometimes they happen to be. How can I conditionate it to when it draws a negative number, it transforms into zero in that time step? Here is the function: stochastic_prost <- function(Fmean, Fsd, Smean, Ssd, f, s, n, time, out=FALSE,
2020 Nov 13
3
Musings on the TableGen -emit-dag-isel backend
Your suggestion for two passes is indeed my plan if simply using 3-byte sizes is not acceptable. I don't want to duplicate all the logic in a second length-calculating function, so I would just have special logic for the three matching operators with children and use the existing function for the rest, passing a null output stream. Or I could conditionalize all the output on another function
2016 Mar 04
3
samba and ntfs flash drives ???
Hi All, Google is killing me here! Scientific Linux 7.2, 64 bit $ rpm -qa samba samba-4.2.3-11.el7_2.x86_64 Is there some trick to mounting an NTFS USB flash drive and sharing it with Samba? I am trying to share an NTFS flash drive with samba. If the drive is not mounted, I can do what I want from Windows 7 and XP on the mount point. I have full access. But, when I mount the stick to the
2015 Jan 06
0
[PATCH 0/9] linux/syslinux: support ext2/3/4 device
...quire root privileges, and where libext2fs belongs. Ideally the FAT support ought to be internalized into a library, too. The one thing with mtools/syslinux is that some people like to compile it for non-Linux platforms (how successfully, I don't know) and so ext*fs support should probably be conditionalized. -hpa
2015 Jan 06
2
[PATCH 0/9] linux/syslinux: support ext2/3/4 device
...t; where libext2fs belongs. Ideally the FAT support ought to be > internalized into a library, too. > > The one thing with mtools/syslinux is that some people like to compile > it for non-Linux platforms (how successfully, I don't know) and so > ext*fs support should probably be conditionalized. Thanks for the reply, how about: 1) Add the libext2fs' syslinux to mtools/syslinux 2) The "make" will compile libext2fs by default, and make EXT2FS=0 will disable the compile ? // Robert > > -hpa > > >
2014 Jul 17
2
[LLVMdev] GCC/LLVM frame pointer incompatibility on ARM
Would they be willing to have a flag? Would we be willing to have a flag? Or should we conditionalize this on OS and say, on Linux, do the gcc thing, and on OS X, do the LLVM thing? On Thu, Jul 17, 2014 at 6:10 AM, Renato Golin <renato.golin at linaro.org> wrote: > On 17 July 2014 12:49, Yury Gribov <y.gribov at samsung.com> wrote: > > Well, their logic is that as long as
2005 Feb 01
5
Terrible inbound call quality vs. outbound
Hi. I'm having a terrible time with call quality coming into my * box. I'm using VoicePulse over a 1.5/1.5 mbit line. Outbound calls are crystal clear on both the RX/TX sides of the conversation. Inbound calls, though, are HORRIBLY garbled on the RX side. I can barely hear the caller, but they report my quality is fine. Getting loads of garbled sounds and weird echoes. (Could just be
2019 Feb 20
3
branching in extensions.conf?
Is there any less cumbersome way of doing conditionalized/branching in extensions.conf other than something like: exten => s,n,GotoIf($["${SIP}" = "PJSIP" ]?pjsip) exten => s,n,Dial(${ARG2},20,TtWw) exten => s,n,Goto(afterdial) exten => s,n(pjsip),Dial(${PJSIP_DIAL_CONTACTS(${STRREPLACE(ARG2,"PJSIP/",""...