search for: alllow

Displaying 13 results from an estimated 13 matches for "alllow".

Did you mean: allow
2005 Oct 25
0
[Bug 3210] New: It would be great to add flags to alllow file date as a filter on what is syncd
https://bugzilla.samba.org/show_bug.cgi?id=3210 Summary: It would be great to add flags to alllow file date as a filter on what is syncd Product: rsync Version: 2.6.7 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo: wayned@samba.org...
2006 Oct 15
0
DO NOT REPLY [Bug 3210] It would be great to add flags to alllow file date as a filter on what is syncd
https://bugzilla.samba.org/show_bug.cgi?id=3210 wayned@samba.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Version|2.6.7 |2.6.9 ------- Comment #2 from wayned@samba.org 2006-10-15 13:57 MST ------- I
2000 Oct 02
9
the underscore ("_") in variable name
...ean(c) >> c >[1] 3 > >having some experience in C, I thought the underscore is "always" valid in >variable name. totally confuse me. Reread the R-FAQ a few times, and found >on pg. 7 foot-note which states that; > > the underscore character "_" is an alllowable synonym for the left > pointing assignment operator "<-", ........... > >it is appear that R parse "c_mean <- mean(c)" as "c <- mean <- mean(c)", >which explain the result. > >suggestion: > >I believe it would be helpful i...
2007 Dec 12
1
vfs_ChDir fails, even though the share is read-write for that user
Hi, I'm running Samba Version 3.0.25c on Solaris 10 8/07 on X86 hardware. It's successfully joined to AD. But, and there always is a but, if : * A user is a member of SomeGroup * and the share alllows SomeGroup to access it * and SomeGroup is NOT what the user has set as their Primary Group in Active Directory then * Samba will recognize that the user can access the share * but, vfs_ChDir will fail Consider a user, "vanhoudn", whose primary group is "WSG Staff". If...
2000 Oct 02
1
FW: the underscore ("_") in variable name
...ean(c) [1] 3 > c_mean <- mean(c) > c [1] 3 having some experience in C, I thought the underscore is "always" valid in variable name. totally confuse me. Reread the R-FAQ a few times, and found on pg. 7 foot-note which states that; the underscore character "_" is an alllowable synonym for the left pointing assignment operator "<-", ........... it is appear that R parse "c_mean <- mean(c)" as "c <- mean <- mean(c)", which explain the result. suggestion: I believe it would be helpful if this point be make clear on the F...
2006 Oct 12
4
xend / xenstored performance & scalability issues
...even today you can''t restart xenstored & expect things to still be working. 2. Why does XenD create sooo many transactions in XenStored for a read op ? Having instrumented Xend it sems that the root cause of the problem is the xen.xend.xenstore.xstransact class. This alllows one to start a transaction, do a bunch of reads/writes & then commit the transaction. At the same time though it has a bunch of static ''convenience'' methods for read & write which will implicitly start & commit a transaction. Well 90% of the code in Xen...
2001 Jan 10
0
Login using ssh without password
...s. I have no problem using rlogin - no password required. How do I use ssh to login from my machine as hughes at pnguy to myself with the same server_user (hughes) (etc. ssh pnguy) without a password required. My .rhosts, .shosts in /users/hughes/.ssh directory contains a "+" signed to alllow from hughes to hughes server_user without password when I use rlogin. My name is P(Ann) Nguyen and my e-mail is pnnguyen1 at west.raytheon.com. Please e-mail to me or call at 714-446-4470. Thanks P(Ann) Nguyen
2011 Mar 28
0
special control 16
...ting this error quite often -- special control 16, then for some reason it puts on hold and then logs is full of Asked to transmit frame type ulaw, while native formats is 0x8 (alaw) read/write = 0x8 (alaw)/0x8 (alaw) Both peer and trunk have same codec priority (disallow=all then allow=alaw then alllow=ulaw) Any ideas how to fix this ? -- SIP/zzz-000001cd is making progress passing it to SIP/0010777-000001cc -- SIP/0010777-000001cc requested special control 16, passing it to SIP/zzz-000001cd -- Started music on hold, class 'default', on SIP/zzz-000001cd -- SIP/0010777-000001cc reque...
2007 Nov 08
1
QueryParser : some remarks
...9;ing all the terms which start with an 'a' that will take lot of resources and time to execute (this is a problem: a malicious user can exploit this to deny access to others). In my old parser, I had two independent limits: - minimum number of chars before the '*' (e.g. 3 would alllow abs* but not ab*) - maximum number of terms a wildcard can expand to (e.g. 100= abs* is allowed if there are less than 100 terms else an exception is raised) Perhaps it would be useful to add something like this to xapian, with an api to allow user to change these limits like qp->set_wildca...
2006 Apr 05
6
transforming g729 files to wav files
Hello list, is there any open-source software that recodes g729 sound files to wav sound files ? The only way (at least) to do such transformation is with interactive form on: http://www.asteriskguru.com/audio_conversion.php Tofik Suleymanov
2005 May 22
0
[LLVMdev] a question about LLCO
Hi Terry, I'm not part of that project but I'll take a stab at answering your question. Vikram Adve is probably the person to answer. The point of Lifelong Code Optimization is to continuously optimize the code during its lifetime, even while it is running. By profiling the code, it is possible to discover the program's hot spots and intensely optimize those portions of the program.
2005 May 23
2
[LLVMdev] a question about LLCO
Hi Terry, Reid is exactly right about the benefits of static (link-time) optimization for whole programs. When all libraries are available, it could alllow significantly better optimization without run-time overhead. But it is increasingly common today for libraries to be dynamically linked. In these cases, you could get the benefits of LLVM optimization in two ways, *if* you compile the library also to LLVM instead of native code: (1) Optimize...
2005 May 22
3
[LLVMdev] a question about LLCO
Hi everybody, Recently, I found the Lifelong Code Optimization project on the website. And I have a question here, would you please explain it for me? In the home page of the project, it is said that the Goal of the project is to enable mordern programs to be optimized at link time with all static binary code. Here I wonder, why the library code must be static, i.e. why a dynamically