search for: conditionalize

Displaying 20 results from an estimated 290 matches for "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 se...
2020 Jul 25
2
[kvm-unit-tests PATCH v3 0/4] Update patch set
...tchings 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 proper > > compiler name or "cc-option". > > - Added "-Werror" to "cc-option" to catch flags that cause warnings. > > - Retain "-nostdinc -iwithprefix include" and use the proper clang flag >...
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 there. Thanks: Pino Toscano Fixes: commit c33e0036c70ce68d40df92e4a6c0423e136e005c --- options/options.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/option...
2012 Sep 10
2
[LLVMdev] Unaligned vector memory access for ARM/NEON.
...ut it sounds like there is not a real effort to support big-endian arm > targets anyway. > > I should be able to get the patch together and submit it for review next > week. I don't know if anyone actually uses arm processors in big-endian mode, but it shouldn't be too hard to conditionalize it. If it does turn out to be difficult for some reason, we should at least have comments to indicate where the endian assumptions are being made.
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 > - 7f0aa03493dc9ab8c1d2798f6586bfbc5...
2015 Aug 03
8
[LLVMdev] Ideas for making llvm-config --cxxflags more useful
...<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 incompatibility in the C++ API. Is it something that can be fixed or would it be too complicated to handle? It would be nice in general to be able to link a “Non assert” build of Clang with an “Assert" version of LLVM (and vice-versa). And on the origina...
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
...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 parameter so it isn't done at all. I'm not convinced that anyone would notice a 4% increase in the size of the matching table, but I don't think that's my call. I have plenty to do while waiting for more comments. ;-)
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 FP...
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/","&quot...