Displaying 5 results from an estimated 5 matches for "sec17".
Did you mean:
sec1
2025 Jan 15
1
Weird and changed as.roman() behavior
...c("II", "III", "IIII"))
> [1] TRUE TRUE FALSE
Both the TRE and the PCRE specification only allow repetition quantifiers of the form
{a}
{a,b}
{a,}
https://laurikari.net/tre/documentation/regex-syntax/
https://www.pcre.org/original/doc/html/pcrepattern.html#SEC17
{,2} and {,4} are thus invalid and seem to result in undefined behaviour (which PCRE and TRE fill in different ways, but consistently not what was intended).
> > grepl("^I{,2}$", c("II", "III", "IIII"))
> [1] TRUE TRUE FALSE
> > grepl(&qu...
2004 Oct 14
2
Samba ADS -- works with XP Pro, but not 2000 Pro
...seable = Yes
-------------------------
# krb5.conf:
[logging]
default = FILE:/var/log/krb5.log
[libdefaults]
ticket_lifetime = 24000
default_realm = D1.DOMAIN.COM
dns_lookup_realm = true
dns_lookup_kdc = true
# According to
http://web.mit.edu/kerberos/www/krb5-1.2/krb5-1.2.8/doc/admin.html#SEC17
# "the only supported encryption types are des3-hmac-sha1 and des-cbc-crc."
default_tkt_enctypes = des3-hmac-sha1 des-cbc-crc
default_tgs_enctypes = des3-hmac-sha1 des-cbc-crc
# However, http://lists.samba.org/archive/samba/2004-October/093761.html
suggests:
# default_tgs_enctypes = de...
2025 Jan 16
2
Weird and changed as.roman() behavior
...>> [1] TRUE TRUE FALSE
> Both the TRE and the PCRE specification only allow repetition quantifiers of the form
> {a}
> {a,b}
> {a,}
> https://laurikari.net/tre/documentation/regex-syntax/
> https://www.pcre.org/original/doc/html/pcrepattern.html#SEC17
> {,2} and {,4} are thus invalid and seem to result in undefined behaviour (which PCRE and TRE fill in different ways, but consistently not what was intended).
>> > grepl("^I{,2}$", c("II", "III", "IIII"))
>> [1] TRUE TRUE F...
2012 Mar 24
3
Learning to rank
Dear Sir,
I am Pankaj Singhal from Jaipur, India. I am very much
interested and strongly looking forward in getting involved in this project
Learning-to-Rank.
My previous experience in this field is good. Last semester I did a similar
job of ranking the URLs of the given huge dataset based on their attribute
values. The dataset consisted hundreds of thousands of URLs and each url
2025 Jan 15
2
Weird and changed as.roman() behavior
>>>>> Jani V?limaa
>>>>> on Tue, 14 Jan 2025 20:39:19 +0200 writes:
> Hello,
> I don't know what's changed or how to figure out why as.roman() started
> to work different way lately on Mageia Cauldron. Cauldron is the
> latest development version of Mageia Linux.
> Expected bahavior:
>>