search for: overriden

Displaying 20 results from an estimated 212 matches for "overriden".

Did you mean: override
2019 Feb 08
0
netmask on aliases overriden by netmask on interface
On 08.02.19 15:08, James B. Byrne via CentOS wrote: > # ifconfig eth1:192008001 > eth1:192008001 Link encap:Ethernet HWaddr 00:25:90:61:74:C1 > inet addr:192.168.8.1 Bcast:192.168.8.255 > Mask:255.255.255.128 > UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 > Interrupt:17 Memory:feae0000-feb00000 > > Which shows that the network mask is
2010 Sep 09
2
is a "- *.ext" filter overriden by a later "+ *.ext"
Hi, In our backup script we sometimes would like to override the common (i.e: static) excludes filter list. For example we exclude "- *.ext" for all backups but would like to include "+ *.ext" only for 'local' backups. Are such entries supposed to cancel each other? How can one override an earlier exclude in a filter list? Thanks,
2010 Sep 09
0
Rails3: jquery-rails gem sets 'config.action_view.javascript_expansions' but cannot be overriden in 'config/application.rb'
Hello, I''ve created a new Rails3 app and I''m using jQuery instead of prototype. Gemfile: gem ''jquery-rails'' in my config/application.rb I want do the following: config/application.rb if Rails.env.production? config.action_view.javascript_expansions[:defaults] = %w(jquery.min rails application) else
2009 Nov 11
2
Bug or feature: SIP chanvars not overriden
Hello, Using 1.6.2-rc5, my settings include: [local-phone](!) context=mylocal type=friend nat=no canreinvite=no host=dynamic qualify=yes dtmf=info language=fr call-limit=5 subscribecontext=subs disallow=all allow=alaw t38pt_udptl=no setvar=accountcode=foo [168](local-phone) defaultuser=168 secret=pass168 callerid=John Doe<168>
2019 Feb 08
2
netmask on aliases overriden by netmask on interface
CentOS-6.10 We have a host with the following ifcfg file contents: BOOTPROTO=none BROADCAST="" DEFROUTE=yes DEVICE=eth1 . . . GATEWAY=X.Y.Z.234 IPADDR=A.B.C.2 IPV4_FAILURE_FATAL=yes NAME="LAN Link - eth1" NETMASK="255.255.255.128" NETWORK="A.B.C.0" NM_CONTROLLED=no ONBOOT=yes PREFIX=25 TYPE=Ethernet USERCTL=no And an aliased ifcfg containing this:
2009 Jun 25
2
Ensure overriden service after exec has run
Hi, How do I force my Service declaration (with is defined elsewhere and inherited) is run after an exec has run? The code; class autofs_nis::services inherits services::base { Service[''ypbind''] { ensure => running, enable=> true, } ..... } class autofs_nis::exec inherits services::base { exec { "setdomainname": command
2011 Oct 26
1
[LLVMdev] [llvm-commits] Bottom-Up Scheduling?
...:Hybrid) (2) TargetRegisterInfo::getRegisterPressureLimit(...) should probably return something a bit less than 32, depending on register class. (3) The standard hazard recognizer works either bottom-up or top-down on the itinerary data. So it *should* work out-of-box. The problem is that PPC has overriden the API to layer some custom "bundling" logic on top of basic hazard detection. This logic needs to be reversed for bottom-up, or you could start by simply disabling it instead of the entire hazard recognizer. Now, to generate the best PPC schedules, there is one thing you may want to ov...
2007 Jan 25
3
overriding file in a class
...i use a file type to manage sysctl.conf. For some work i override this file by doign File[''/etc/sysctl.conf''] and i have an exec refresh only to run sysctl -p so it reread the sysctl.conf file if changed. My issue is that at each run i got, i start in state when i see the overriden one on the server: 1st run, i have the basic sysctl.conf not the ovveriden one 2nd run i got the overriden one 3rd run i got the basic one and so on.. the sysctl.conf is on my linux classe, my debian class inherit linux, my ehdebian class inherits debian and override the debian classe /etc/sy...
2012 Sep 08
3
[LLVMdev] Create target with alternate syntax for globals?
...m that's the intermediate language of another compiler, so that the other compiler can benifit from llvm's optimization passes. I essentially made a copy of the mips backend, and then started changing the output to match the intermediate language of the compiler. Most of the output can be overriden, but I haven't figured out how to change the way globals are emitted. The AsmPrinter::EmitGlobalVariable function in the llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp file is not virtual; if I try to override it, I get a "multiple definitions" error. To emit the global, it just calls t...
2010 Sep 18
2
[LLVMdev] Non-standard labels
...r assembler which wants non-standard text for labels (not just "LABEL:"). One way would be to override all methods of AsmPrinter which call MCStreamer::EmitLabel but this is too painful. I can think of two solutions: 1) add AsmPrinter::EmitLabel which calls Streamer by default but may be overriden in target AsmPrinters 2) Register my own instance of MCStreamer which delegates all calls (except EmitLabel) to MCAsmStreamer. For this I will probably need to add RegisterAsmStreamer in TargetRegistry.h... Which one is the best? Or maybe I have overlooked some easier solution? -Yuri Gribov
2020 Jun 05
2
call replicating
...ng only Dial function in dialplan I am able to place call. But when creating some dialplan procedures containing VoiceMail I get phone ringing for 1 second and it stops. The caller is immediatelly directed to voicemail. It is because the second (or third) call gets busy. How can this behavior been overriden? I do not expect this is problem on provider side, since it was working normally using chan_sip. Thanks Marek
2005 Jul 11
2
[LLVMdev] X86AsmPrinter + MASM and NASM backends
> You shouldn't have to add new classes to the .td file, just modify printOp > for your asmprinters. I dont think printOp is virtual and therefore cannot be overriden ? Aaron
2007 Jan 10
3
ActiveRecord Error?
We spent a big chunk of yesterday hunting down a strange bug in one of our rails apps and created a test project to try out different theories on what was going on. The result so far is a very small test case app that perfectly reproduces the problem. The question is, is there anything *wrong* with what we''re doing here, or is it a problem with ActiveRecord? We''re on rails
2011 Oct 26
3
[LLVMdev] Bottom-Up Scheduling?
Is there documentation somewhere for the bottom-up scheduling? I'm trying to figure out what changes are necessary in order to support it in the PPC backend. Thanks in advance, Hal On Thu, 2011-10-20 at 10:21 -0700, Evan Cheng wrote: > > On Oct 19, 2011, at 7:29 PM, Hal Finkel <hfinkel at anl.gov> wrote: > > > Evan, > > > > Thanks for the heads up! Is
2006 Feb 13
5
ActiveRecord with Legacy Database
Hiya RoR gurus, I work at a .NET shop, but I enjoy learning Ruby. So, I wanna prototype some of our product''s screens using Rails (and hopefullly AJAX). One thing I''m not sure about, since I''m a Rails noob, is whether ActiveRecord will get along with our database... So I have two questions: * Can I have ActiveRecord get along with our PascalCase naming conventions?
2005 Jan 17
3
iproute2 + iptables - match the connection time or packets sent/recieved
...ything and i want to ask if there is a u32 match for the connection time or something like that, or an u32 match for the packet number in a connection. All i want to do is shape the web traffic for long conections wich are not HTML webpages, i want to slow down those connections. I know that can be overriden by stopin/resuming the transfer but i still want to do it since people start downloading from HTTP with many connections, during the day and leave the office, i have no time to hunt them, so i just want to classify those connections if is possible. If there is any patch for squid to classify URLS...
2009 Oct 20
3
[LLVMdev] Target data question
According to the "LLVM Assembly Language Reference Manual": When constructing the data layout for a given target, LLVM starts with a default set of specifications which are then (possibly) overriden by the specifications in the datalayout keyword. The default specifications are given in this list: * E - big endian * p:32:64:64 - 32-bit pointers with 64-bit alignment Are these the specifications that are assumed by LLVM tools such as "opt" when a module doesn't have a t...
2011 Nov 22
0
[LLVMdev] [llvm-commits] Bottom-Up Scheduling?
...terInfo::getRegisterPressureLimit(...) should probably > return something a bit less than 32, depending on register class. > > (3) The standard hazard recognizer works either bottom-up or top-down > on the itinerary data. So it *should* work out-of-box. The problem is > that PPC has overriden the API to layer some custom "bundling" logic > on top of basic hazard detection. This logic needs to be reversed for > bottom-up, or you could start by simply disabling it instead of the > entire hazard recognizer. Is EmitInstruction used in bottom-up scheduling at all? The ver...
2011 Dec 19
2
[LLVMdev] specializing hybrid_ls_rr_sort (was: Re: Bottom-Up Scheduling?)
On Tue, 2011-10-25 at 21:00 -0700, Andrew Trick wrote: Now, to generate the best PPC schedules, there is one thing you may > want to override. The scheduler's priority function has a > HasReadyFilter attribute (enum). It can be overriden by specializing > hybrid_ls_rr_sort. Setting this to "true" enables proper ILP > scheduling, and maximizes the instructions that can issue in one > group, regardless of register pressure. We still care about register > pressure enough in ARM to avoid enabling this. I'm rea...
2007 Jun 13
11
Re: classes and definitions --> RFC <--
On 12/06/07, Luke Kanies <luke@madstop.com> wrote: > > On Jun 11, 2007, at 12:01 PM, Thijs Oppermann wrote: > > > But they don''t always work. For example, in the example (a bit > > like) above (which was what I had in my git module definition for > > clientsetup): > > > > file { "/home/${user}/.netrc.d": > > ensure