search for: _in_

Displaying 20 results from an estimated 37 matches for "_in_".

Did you mean: _i_
2004 Oct 22
5
Default permissions of /home/user..
...of course pretty easy to solve it by a simple chmod, but yet, isn't there anyway to change the default chmod value? Last time I asked about this, people told me to check out the skel directory, but the only thing you can do in there is to change the default chmod value of the files/directories _in_ the homedir, not the chmod values of the actually homedir.. I would be glad if someone could give me further assistanse how do solve this without manually modifying the "adduser" script.. and if it this option doesn't exist, shouldn't it be added or is it just me who want my homed...
2010 Feb 25
0
[LLVMdev] Using Profile Information
Ah BTW... On 25.02.2010, at 17:33, ambika wrote: > ProfileInfo *PI; > PI = &getAnalysis<ProfileInfo>(); If this _in_ your pass, then you have to register the usage of this in the getAnalysisUsage() method: void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequired<ProfileInfo>(); } Also you have to ensure that the pass you are using is executed right after the ProfileInfoLoader, currently no...
2013 Jan 09
2
[LLVMdev] Pointer "data direction"
Hi, suppose the following C function declaration: void f(int *in, int *out); Now further suppose, that _in_ is an array only read from and _out_ is an array that is only written to. Based on this, I was wondering whether there is some already existing LLVM pass (or maybe a part of a pass) that detects those "data directions" for pointers. I'm not quite sure whether e.g. Alias Analysis can...
2002 Mar 18
2
Failed to insmod sch_htb
...ifo_qdisc_ops/lib/modules/2.4.17/kernel/net/sched/sch_htb.o: unresolved symbol qdisc_kill_estimator server:~# grep qdisc_get_rtab /boot/System.map c01f4ecc T qdisc_get_rtab c0286a20 ? __kstrtab_qdisc_get_rtab c028ad20 ? __ksymtab_qdisc_get_rtab Where is the problem ?? (i will try with all scheds _in_ the kernel) -- Grégory Duchatelet
2010 Feb 25
3
[LLVMdev] Using Profile Information
Hi, How can I use profile information into my pass for performing some analysis. I tried something like: PassManager PassMgr = PassManager(); cl::opt<std::string> ProfileDataFile(cl::Positional, cl::desc("<llvmprof.out file>"), cl::Optional, cl::init("llvmprof.out")); PassMgr.add(createProfileLoaderPass(ProfileDataFile));
2011 Sep 04
1
mrtg 2.16.2 ipv6 on centos 6
...timeout: 2s retries: 5 backoff: 1) at /usr/bin/../lib64/mrtg2/SNMP_util.pm line 492 SNMPGET Problem for ifInOctets.1 ifOutOctets.1 sysUptime sysName on sni123@[2001:b50:940f::f001] at /usr/bin/mrtg line 2202 2011-09-03 14:13:01: ERROR: Target[bai-gw-i-oct][_IN_] ' $target->[0]{$mode} ' did not eval into defined data 2011-09-03 14:13:01: ERROR: Target[bai-gw-i-oct][_OUT_] ' $target->[0]{$mode} ' did not eval into defined data With snmpwalk (net-snmp-utils) i can reach the device via IPV4 and IPV6. Where is my mistake? Has anyone a...
2013 Jan 09
3
[LLVMdev] Pointer "data direction"
...ssler_steinke_zibreport.pdf > Hope it helps, > - D. > > 2013/1/9 Sebastian Dreßler <dressler at zib.de> > >> Hi, >> >> suppose the following C function declaration: >> >> void f(int *in, int *out); >> >> Now further suppose, that _in_ is an array only read from and _out_ is >> an array that is only written to. >> >> Based on this, I was wondering whether there is some already existing >> LLVM pass (or maybe a part of a pass) that detects those "data >> directions" for pointers. I'm not...
2010 Dec 28
1
Kickstart Network Configuration Issues
...configuration for a while now. My kickstart files are stored within the initrd image. What I would like to do here, is when the kickstart first starts up, I want it to grab a DHCP address (it does at the moment) so it can grab all of the necessary installation data off the net. Then, at some point _IN_ the install process, I'd like to have it query for manually input network settings. Here is my current kickstart script: auth --useshadow --enablemd5 bootloader --location=mbr zerombr clearpart --all --initlabel text firewall --enabled --port=22:tcp firstboot --disable keyb...
2012 Oct 29
3
mbox vs. maildir storage block waste
...f 2048B, 1024B and 512B. In the end I probably changed my opinion. ~7GB of wasted block space for all my mails is actually quite a lot, but in days of cheap disk space it's acceptable. And with mbox one has IMHO the major disadvantage that mailservers (including dovecot) store some meta-data _in_ it (i.e. in the mails themselves) , which I don't like a lot. I still think about reports that mbox is much faster with full text search (which sounds reasonable)... but therefore one needs probably and database backend anyway. HTH, Chris. -------------- next part -------------- A non-text at...
2006 Aug 07
5
[PATCH][LINUX] use machine_emergency_restart() from the generic header.
This patch uses the standard generic header for the definition of machine_emergency_restart() and reverses the call path for XenoLinux. Signed-off-by: Jimi Xenidis <jimix@watson.ibm.com> --- diff -r 7680b29c03a6 drivers/xen/core/reboot.c --- a/drivers/xen/core/reboot.c Sat Aug 05 11:33:24 2006 -0400 +++ b/drivers/xen/core/reboot.c Mon Aug 07 09:50:33 2006 -0400 @@ -9,6 +9,7 @@ #include
2013 Jan 09
0
[LLVMdev] Pointer "data direction"
...site/parallelizationforllvm/ [2] http://polly.llvm.org/ [3] http://kernelgen.org Hope it helps, - D. 2013/1/9 Sebastian Dreßler <dressler at zib.de> > Hi, > > suppose the following C function declaration: > > void f(int *in, int *out); > > Now further suppose, that _in_ is an array only read from and _out_ is > an array that is only written to. > > Based on this, I was wondering whether there is some already existing > LLVM pass (or maybe a part of a pass) that detects those "data > directions" for pointers. I'm not quite sure whether...
2013 Jan 09
0
[LLVMdev] Pointer "data direction"
...> - D. > > > > 2013/1/9 Sebastian Dreßler <dressler at zib.de> > > > >> Hi, > >> > >> suppose the following C function declaration: > >> > >> void f(int *in, int *out); > >> > >> Now further suppose, that _in_ is an array only read from and _out_ is > >> an array that is only written to. > >> > >> Based on this, I was wondering whether there is some already existing > >> LLVM pass (or maybe a part of a pass) that detects those "data > >> directions"...
2009 Oct 25
3
NULL elements in lists ... a nightmare
I can define a list containing NULL elements: > myList <- list("aaa",NULL,TRUE) > names(myList) <- c("first","second","third") > myList $first [1] "aaa" $second NULL $third [1] TRUE > length(myList) [1] 3 However, if I assign NULL to any of the list element then such element is deleted from the list: > myList$second <-
2019 Feb 26
2
RFC for f18+runtimes in LLVM
...eatures, I don't think that the initial import of the project ought to be tied to that task being completed. More generally, I think the prerequisite to merging it should be having an agreed-upon target state and an understood path on how to reach that state, rather than the code actually being _in_ that state already. Merging sooner is generally better than waiting and merging later. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190225/500f0ac1/attachment.html>
2006 Apr 12
1
iax2 show netstats
Hi guys, i've been using iax2 show netstats and i wonder if someone could explain what all these means, just in case i have them wrong. Because i am looking for something that tells me that there is delay , and/or packet loss. -------- LOCAL --------------------- -------- REMOTE -------------------- Channel RTT Jit Del Lost % Drop OOO Kpkts
2007 Apr 30
2
Exclude dirs but not files??
Hi all, is it possible to exclude directories without excluding the files _in_ the directories? I ask because one of the things I do on a nightly basis is do a recursive dry-run against an entire webroot with the size-only option. Very often, all the files themselves will be just fine, but the directories themselves will be listed as needing updated. It would be ni...
2012 Dec 03
1
Weird mode issues with /var/lib/puppet/lib
...ts /var/lib/puppet/lib to be mode 0755. I''m running "service puppetmaster start", and "puppet agent -t", as root on both servers. The ownership and modes of the directories above /var/lib/puppet/lib in their trees are identical. /var/lib/puppet/lib isn''t _in_ the modules and manifests paths on either master. The only differences in the puppet.confs of the two masters are: - each master points at itself - the development one has ca = false and ca_server = production.server.fqdn How can I determine where /var/lib/puppet/lib''s mode should be de...
2010 Feb 26
1
[LLVMdev] Using Profile Information
...arately and then i am using it. Is there a way so that it is generated itself for the program? Andreas Neustifter wrote: > Ah BTW... > > On 25.02.2010, at 17:33, ambika wrote: > >> ProfileInfo *PI; >> PI = &getAnalysis<ProfileInfo>(); > > If this _in_ your pass, then you have to register the usage of this in > the getAnalysisUsage() method: > > void getAnalysisUsage(AnalysisUsage &AU) const { > AU.addRequired<ProfileInfo>(); > } > > Also you have to ensure that the pass you are using is executed right > af...
2008 Oct 03
1
Installing ruby on linux
The following are the steps that I performed to install ruby on my linux machine. This same text is also available on http://linux-certification.blogspot.com/2008/10/setting-up-ruby-on-li... I went to http://www.ruby-lang.org/en/downloads/ There I found out a section with the heading Ruby Source Code I pick the url of the link for the file using the right click and choosing the ''copy link
2009 Nov 10
1
standardGeneric seems slow; any way to get around it?
Hi, I'm running some routines with standard matrix operations like solve() and diag(). When I do a profile, the lead item under total time is standardGeneric(). Furthermore, solve() and diag() have much greater total time than self time. ??? I assume there is some time-consuming decision going on in the usual functions; is there any way to avoid that and go straight to the calculaions? Thanks