Displaying 20 results from an estimated 21 matches for "casefold".
2014 Sep 02
1
Creating users with non-ascii chars fails
Hi list!
I'm trying to create a user with non-ascii characters in the name, but this
fails:
root at test-samba4:~# samba-tool user create foa --given-name='foa?'
New Password:
Retype Password:
ldb_handler_fold: unable to casefold string [foa?]
ldb_handler_fold: unable to casefold string [foa?]
ldb_handler_fold: unable to casefold string [foa?]
ldb_handler_fold: unable to casefold string [foa?]
Conversion error: Illegal multibyte sequence(?)
ERROR(ldb): Failed to add user 'foa': - objectclass_attrs: attribute 'd...
2003 May 14
2
Is there a simple method of changing text into 'Proper Ca se'
Yes and no. Given your response it appears that "Proper Case" is not a term
that everyone uses. In Excel there is a function "Proper" which in essence
changes "this line into something like this" into "This Line Into Something
Like This."
My look at casefold seesm to be that is is a wrapper of two functions to
change text into either Lower or Upper case.So my question is about how do
you just capitalise the first letter in each word.
Thanks for your response.
Tom
-----Original Message-----
From: Spencer Graves [mailto:spencer.graves at PDF.COM]
Sen...
2018 Aug 02
1
INTERNAL ERROR and PANIC: internal error - samba version 4.8.2
...analysis, thank you for the force.
Samba 4.8.2
Ubuntu
Linux dc01smbrec 4.4.0-130-generic # 156-Ubuntu SMP Thu Jun 14
08:53:28 UTC 2018 x86_64 x86_64 x86_64 GNU / Linux
Log error:
[2018/08/02 15:14:53.402161, 1] ../lib/ldb-samba/ldb_wrap.c:77(ldb_wrap_debug)
ldb: ldb_handler_fold: unable to casefold string [▒g▒▒g▒]
[2018/08/02 15:14:53.402236, 1] ../lib/ldb-samba/ldb_wrap.c:77(ldb_wrap_debug)
ldb: ldb_handler_fold: unable to casefold string [▒g▒▒g▒]
[2018/08/02 15:14:53.402274, 1] ../lib/ldb-samba/ldb_wrap.c:77(ldb_wrap_debug)
ldb: ldb_handler_fold: unable to casefold string [▒g▒▒g▒]
[20...
2014 Feb 24
2
URGENT: big problem with displayName.
...backend 'sasl-DIGEST-MD5' registered
GENSEC backend 'schannel' registered
GENSEC backend 'spnego' registered
GENSEC backend 'ntlmssp' registered
GENSEC backend 'krb5' registered
GENSEC backend 'fake_gssapi_krb5' registered
ldb_handler_fold: unable to casefold string [Magasin g?n?ral C2]
failed to modify CN=storec2,CN=Users,DC=cormandom,DC=int-corman,DC=be -
Failed to create index key for attribute 'displayName':Unknown erro
How can I correct this ?
thx
St?phane Purnelle
-----------------------------------
St?phane PURNELLE...
2011 Dec 05
1
Toggle cASE
Hello R-help list,
I am looking for way to toggle the case of the characters like a flip-flop; that is from ''Hello'' to "hELLO" or vice versa.
I know that there are a number of functions like casefold, tolower, toupper, etc. but these functions change the case in an uniform way.
Thanks in advance,
Antonio Rivero Ostoic
Antonio Rivero Ostoic
PhD Student, Department of Leadership and Strategy
From 1 Jul until 31 Dec 2011
Tel. +61 3 8344 4300
Fax +61 3 9347 6618
Email jaro@sdu....
2004 Jul 23
2
Complex Surveys...Specifying Design
...and PSU
variables are varstr01 and varpsu01 respectively. When I try to specify
them with the svydesign function I get an error message. An excerpt of my
session is as follows...
library(foreign)
> h60 <- read.xport("h:\\meps\\temptransports\\h60.tpt")
> names(h60) <- casefold(names(h60))
> names(h60)
[1] "dupersid" "sex" "inscov01" "totexp01" "perwt01f" "varstr01"
"varpsu01"
> library(survey)
> meps.design <- svydesign(id=~varpsu01, strata=~varstr01, weight=~perwt01f,
data=h60)
E...
2006 Jun 16
0
[ATTN] To all users of unicode_hacks
...here:
http://dev.rubyonrails.org/ticket/5396
there you can see a number of examples where the chars handling is
beneficial and helps to chop off some cruft. More helper patches are
underway.
We also need some urgent help with that - namely we want to provide a
pure-ruby Unicode normalizer-casefolder with the plugin (and the
patch). Currently
there are 2 libraries implementing that through the bindings to C
libraries, and one Ruby extension that binds to ICU. We want that to
be available without any compilation
being needed.
If someone can help us out he will greatly speed up the proce...
2002 Apr 09
0
couldn't find function "nclass.fd"
Dear list,
I get the following message while computing truehist in R 1.4.1 on
Redhat Linux 7.1:
> truehist(lsk$Pox, nbins = "FD" , prob = TRUE, xlab = "Pox [mmol/kg]")
Error in switch(casefold(nbins), scott = nclass.scott(data),
"freedman-diaconis" = , :
couldn't find function "nclass.fd"
Maybe the "nclass.fd" should be changed into "nclass.FD"?
But I could not find it in the directories.
Regards, Ulrich
--
____________________...
2003 May 14
1
Is there a simple method of changing text into 'Proper Case'
I am probably just looking in the wrong place. I am sure there are a number
of ways to do this. If anyone could point me in the right direction it would
be very much appreciated.
Thanks
_________________________________________________
Tom Mulholland
Senior Policy Officer
WA Country Health Service
189 Royal St, East Perth, WA, 6004
Tel: (08) 9222 4062
e-mail:
2007 Jun 14
0
Confidence interval for coefficient of variation
...onfint.cv(x,.05,"modmckay")
x <- na.omit(x)
v <- length(x)-1
mu <- mean(x)
sigma <- sqrt(var(x))
k <- sigma/mu
# CV > .33 may give poor results, so warn the user
if(k>.33) warning("Confidence interval may be very approximate.")
method <- casefold(method) # In case we see "McKay"
if(method=="mckay"){
# McKay method. See equation 15.
t1 <- qchisq(1-alpha/2,v)/v
t2 <- qchisq(alpha/2,v)/v
u1 <- v*t1
u2 <- v*t2
lower <- k/sqrt(( u1/(v+1) -1)*k*k + u1/v)
upper <- k/sqrt(( u2/(v...
2010 Dec 17
2
lower/upper case question
Dear R People:
Is there a function to convert a character string to all uppercase or
all lowercase please?
I'm sure that I've used one before but I'm drawing a blank.
Thanks,
Erin
--
Erin Hodgess
Associate Professor
Department of Computer and Mathematical Sciences
University of Houston - Downtown
mailto: erinm.hodgess at gmail.com
2024 Sep 02
0
[Announce] Samba 4.21.0 Available for Download
...ount later changes, and so has not worked for a
number of years.? Samba 4.21 and LDB 2.10 removes this unused and
broken feature.
Changes in LDB handling of Unicode
----------------------------------
Developers using LDB up to version 2.9 could call ldb_set_utf8_fns()
to determine how LDB handled casefolding. This is used internally by
string comparison functions. In LDB 2.10 this function is deprecated,
and ldb_set_utf8_functions() is preferred. The new function allows a
direct comparison function to be set as well as a casefold function.
This improves performance and allows for more robust handlin...
2024 Sep 02
0
[Announce] Samba 4.21.0 Available for Download
...ount later changes, and so has not worked for a
number of years.? Samba 4.21 and LDB 2.10 removes this unused and
broken feature.
Changes in LDB handling of Unicode
----------------------------------
Developers using LDB up to version 2.9 could call ldb_set_utf8_fns()
to determine how LDB handled casefolding. This is used internally by
string comparison functions. In LDB 2.10 this function is deprecated,
and ldb_set_utf8_functions() is preferred. The new function allows a
direct comparison function to be set as well as a casefold function.
This improves performance and allows for more robust handlin...
2001 Oct 03
0
Several R vs S-Plus issues (PR#1110)
...uot; is like R use="p".
9) var (or cov) drops dimensions in S, not R.
10) cut allows labels=F in R, not in S (also left.include=T becomes right=F).
11) substring(s,"x") <- "X" only works in S, but R has s <- gsub("x","X",s).
12) S function casefold() replaced in R by toupper() or tolower().
13) Functions missing from S: sub(), gsub(), chartr(), toupper(), tolower()
14) Log scale indicated in S with par(xaxt)=="l", in R with par("xlog")==T.
-- David Brahm (a215020@agate.fmr.com)
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2004 Sep 22
5
Dear Any,
Is there a fonction in R to change a string to uppercase ?
Thanks for all your help
2018 Jan 30
0
[lldb-dev] Adding DWARF5 accelerator table support to llvm
Hello all,
I am looking for feedback regarding implementation of the case folding
algorithm for .debug_names hashes.
Unlike the apple tables, the .debug_names hashes are computed from
case-folded names (to enable case-insensitive lookups for languages
where that makes sense). The dwarf5 document specifies that the case
folding should be done according the the "Caseless matching"
2001 Oct 03
0
RE: [R] Several R vs S-Plus issues (PR#1112)
...is like R
use="p".
9) var (or cov) drops dimensions in S, not R.
10) cut allows labels=F in R, not in S (also left.include=T becomes
right=F).
11) substring(s,"x") <- "X" only works in S, but R has s <-
gsub("x","X",s).
12) S function casefold() replaced in R by toupper() or tolower().
13) Functions missing from S: sub(), gsub(), chartr(), toupper(),
tolower()
14) Log scale indicated in S with par(xaxt)=="l", in R with
par("xlog")==T.
-- David Brahm (a215020@agate.fmr.com)
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2018 Jan 19
3
[lldb-dev] Adding DWARF5 accelerator table support to llvm
> On Jan 18, 2018, at 7:52 AM, Pavel Labath via lldb-dev <lldb-dev at lists.llvm.org> wrote:
>
> Thank you for all the responses. Unfortunately I wasn't able to make
> any progress on creating the patches today. I'll be sure to add
> everyone who expressed interest here to the phabricator diff once I
> have them ready.
>
> Jonas, do you have any dsymutil
2001 Oct 03
8
Several R vs S-Plus issues
...uot; is like R use="p".
9) var (or cov) drops dimensions in S, not R.
10) cut allows labels=F in R, not in S (also left.include=T becomes right=F).
11) substring(s,"x") <- "X" only works in S, but R has s <- gsub("x","X",s).
12) S function casefold() replaced in R by toupper() or tolower().
13) Functions missing from S: sub(), gsub(), chartr(), toupper(), tolower()
14) Log scale indicated in S with par(xaxt)=="l", in R with par("xlog")==T.
-- David Brahm (a215020 at agate.fmr.com)
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
2001 Oct 03
8
Several R vs S-Plus issues
...uot; is like R use="p".
9) var (or cov) drops dimensions in S, not R.
10) cut allows labels=F in R, not in S (also left.include=T becomes right=F).
11) substring(s,"x") <- "X" only works in S, but R has s <- gsub("x","X",s).
12) S function casefold() replaced in R by toupper() or tolower().
13) Functions missing from S: sub(), gsub(), chartr(), toupper(), tolower()
14) Log scale indicated in S with par(xaxt)=="l", in R with par("xlog")==T.
-- David Brahm (a215020 at agate.fmr.com)
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....