search for: particluar

Displaying 20 results from an estimated 22 matches for "particluar".

2006 Jun 28
5
Funky character display in rails / mysql
I''m getting complaints from one of my customers that characters in their text are getting mangled. This happens when they paste data into my textboxes in rails from MS word in particluar. Quotes are turning into question marks, etc. Anyone have a fix / workaround for this? -- seth at subimage interactive http://www.subimage.com/sublog/ -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/2006062...
2012 May 10
2
when is the o.s. considered to be at a certain minor version? Or, is it safe to apply only certain package updates from the next release version?
Two related questions about the minor release numbers (e.g. the 'x' in 5.x or 6.x) : 1) What constitutes the o.s. being at a particluar minor release? Typically, when you install you are getting a package set available from a specific minor release number. But what minor release is the o.s. at if I just update the centos-release package, and no other package? Typically, a 'yum update' is said to take your whole package s...
2005 Jan 12
1
dynamic bandwidth allocation
...et as to whether each bucket is serviced in a round robin fashion or whether certain buckets get preferential treatment (i.e. bucket 1 service 60% as opposed to bucket 2 40%). I need to implement dynamic bandwidth/traffic shaping based on certain types of traffic/applications e.g.voice or based on particluar users. So basically if voice traffic is being delayed and not getting through,the bandwidth should be dynamically adjusted to accommodate this and then readjusted once the problem is resolved. I have researched the iproute 2 package,tc, packet priorities, tos bytes, queues etc the last few days bu...
2006 May 19
1
Safe to ignore this message ? -Attempt to bind using schannel without successful serverauth2
OS: SLES 9 Samba Version: 3.0.20b-3.4-SUSE Server is running in test mode, as a PDC I find this message in my log files quite frequently, the majority coming from one particluar machine (XP SP2): [2006/05/19 10:35:06, 0] rpc_server/srv_pipe.c:api_pipe_bind_req(981) Attempt to bind using schannel without successful serverauth2 [2006/05/19 10:40:16, 0] rpc_server/srv_pipe.c:api_pipe_bind_req(981) Attempt to bind using schannel without successful serverauth2 The server...
2012 Jan 23
2
[LLVMdev] Pointer aliasing
...*z = *x + 3; return *x+*y+*z; } LLVM can tell that the three pointers do not alias each other so can perform the constant folding at compile time. define double @f(double** nocapture %p) nounwind uwtable readnone { ret double 8.000000e+00 } Now consider the function below. I know (in my particluar case) that the pointers in the p array do not alias each other. I tried to communicate this information to llvm/clang via the __restrict__ qualifier but it does not seem to have an effect. Can you please suggest what is wrong. How can I achieve what I want? double f(double** p ) { double *__...
2012 Jan 24
0
[LLVMdev] Pointer aliasing
...> LLVM can tell that the three pointers do not alias each other so can > perform the constant folding at compile time. > > define double @f(double** nocapture %p) nounwind uwtable readnone { > ret double 8.000000e+00 > } > > Now consider the function below. I know (in my particluar case) that > the pointers in the p array do not alias each other. I tried to > communicate this information to llvm/clang via the __restrict__ > qualifier but it does not seem to have an effect. Can you please > suggest what is wrong. How can I achieve what I want? > > double f...
2012 Jan 24
2
[LLVMdev] Pointer aliasing
...three pointers do not alias each other so can >> perform the constant folding at compile time. >> >> define double @f(double** nocapture %p) nounwind uwtable readnone { >>    ret double 8.000000e+00 >> } >> >> Now consider the function below.  I know (in my particluar case) that >> the pointers in the p array do not alias each other.  I tried to >> communicate this information to llvm/clang via the __restrict__ >> qualifier but it does not seem to have an effect.  Can you please >> suggest what is wrong.  How can I achieve what I want? &g...
2004 Feb 17
0
New package -- mvpart
...eal with representation and interpretation of multivariate partitioning objects have been added. These include PCA plots and tree-cluster comparisons. (3) Methods for calculating increased forms of dissimilarities and for scaling matrices have been added. These are designed in particluar for community ecology. (3) text.rpart has been modified to include graphical annotation of nodes. Glenn De'ath =============================================== Glenn De'ath Australian Institute of Marine Science PMB No 3, Townsville Mail Centre Qld 4810, Australia Ph: +61-7-4753-4314 or...
2004 Feb 17
0
New package -- mvpart
...eal with representation and interpretation of multivariate partitioning objects have been added. These include PCA plots and tree-cluster comparisons. (3) Methods for calculating increased forms of dissimilarities and for scaling matrices have been added. These are designed in particluar for community ecology. (3) text.rpart has been modified to include graphical annotation of nodes. Glenn De'ath =============================================== Glenn De'ath Australian Institute of Marine Science PMB No 3, Townsville Mail Centre Qld 4810, Australia Ph: +61-7-4753-4314 or...
2004 Jan 06
1
FW: Matrix Orbital (usbl LCD or VFD) (oops, wrong list I think)
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 2295 bytes Desc: not available Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20040106/65e174c4/smime.bin
1999 Aug 19
1
Is there a complete list of options?
Is there a complete list of the configuration options available for samba? A W3 search for samba returns every mirror and the home page, none of which seem to document some of the more obscure options available in samba. Reading the lists I see all types of config's with options that aren't in the docs. Help, anyone? Thanks, Jim
2004 Nov 05
1
Code/doc inconsistancy in constrOptim (PR#7346)
Code in constrOptim() (R-2.0.0, package stats): if (any(ui %*% theta - ci <= 0)) stop("initial value not feasible") but the help page tells us in Section "Details": "The feasible region is defined by ui %*% theta - ci >= 0." Uwe Ligges --please do not edit the information below-- Version: platform = i386-pc-mingw32 arch = i386 os =
2012 Jan 24
0
[LLVMdev] Pointer aliasing
...ach other so can >>> perform the constant folding at compile time. >>> >>> define double @f(double** nocapture %p) nounwind uwtable readnone { >>> ret double 8.000000e+00 >>> } >>> >>> Now consider the function below. I know (in my particluar case) that >>> the pointers in the p array do not alias each other. I tried to >>> communicate this information to llvm/clang via the __restrict__ >>> qualifier but it does not seem to have an effect. Can you please >>> suggest what is wrong. How can I achieve...
2012 Jan 24
2
[LLVMdev] Pointer aliasing
...e. >>>>>> >>>>>> define double @f(double** nocapture %p) nounwind uwtable readnone { >>>>>> ret double 8.000000e+00 >>>>>> } >>>>>> >>>>>> Now consider the function below. I know (in my particluar case) that >>>>>> the pointers in the p array do not alias each other. I tried to >>>>>> communicate this information to llvm/clang via the __restrict__ >>>>>> qualifier but it does not seem to have an effect. Can you please >>>>&g...
2017 Sep 24
1
Notice: Check your tuned settings for a performance boost.
On 09/23/2017 03:52 AM, hw wrote: > Thank you very much for the notice!? Looking at a couple machines, I found > that the automatic choice of profile isn?t what I would want. > > Now I wonder how everyone deals with this, i. e. do you set a profile once > and never change it, or do you keep changing the profile according to > circumstances?? Is changing it even advisable, i. e.
2004 Jul 14
1
WG: Re: sambaAcctFlags automatically DUX when logon
-----Ursprungliche Nachricht----- Von: Marian Chowanetz [mailto:mchowanetz@emmixx.de] Gesendet: Mittwoch, 14. Juli 2004 10:24 An: 'Jim C.' Betreff: AW: [Samba] Re: sambaAcctFlags automatically DUX when logon thanks for your help, jim. I'd already tried the re-joining with my test-machine. It didn't help. I found out that the idxldapaccounts-tool does not correctly change the
2012 Jan 24
0
[LLVMdev] Pointer aliasing
...nt folding at compile time. >>>>> >>>>> define double @f(double** nocapture %p) nounwind uwtable readnone { >>>>> ret double 8.000000e+00 >>>>> } >>>>> >>>>> Now consider the function below. I know (in my particluar case) that >>>>> the pointers in the p array do not alias each other. I tried to >>>>> communicate this information to llvm/clang via the __restrict__ >>>>> qualifier but it does not seem to have an effect. Can you please >>>>> suggest w...
2012 Jan 24
4
[LLVMdev] Pointer aliasing
...t;> perform the constant folding at compile time. >>>> >>>> define double @f(double** nocapture %p) nounwind uwtable readnone { >>>>    ret double 8.000000e+00 >>>> } >>>> >>>> Now consider the function below.  I know (in my particluar case) that >>>> the pointers in the p array do not alias each other.  I tried to >>>> communicate this information to llvm/clang via the __restrict__ >>>> qualifier but it does not seem to have an effect.  Can you please >>>> suggest what is wrong.  H...
2012 Jan 24
0
[LLVMdev] Pointer aliasing
...>> >>>>>>> define double @f(double** nocapture %p) nounwind uwtable readnone { >>>>>>> ret double 8.000000e+00 >>>>>>> } >>>>>>> >>>>>>> Now consider the function below. I know (in my particluar case) that >>>>>>> the pointers in the p array do not alias each other. I tried to >>>>>>> communicate this information to llvm/clang via the __restrict__ >>>>>>> qualifier but it does not seem to have an effect. Can you please >&g...
2009 Mar 09
1
How to exclude directories from getting their metadata updated? (Macintosh HFS+ with rsync 3.0.5)
...pose, I want all this behaviour, except that directories are not updated with metadata (particularly the date time stamps). I tried using --exclude="*/" but this results in that the directories AND their entire recursive content are excluded, hence not useful for my intention! MY PARTICLUAR APPLICATION OF RSYNC I work in media design. I have a big external hard disk, where I keep my entire content (video files). I have a smaller laptop hard disk, to where I copy the content, which I currently need, from my external disk and occasionally fresh content from other sources (digital...