search for: abcdefg

Displaying 20 results from an estimated 52 matches for "abcdefg".

2015 Jul 01
3
strange: 20 characters max in samAccountName
.../07/01 16:36:32.935297, 4] ../source4/dsdb/repl/drepl_notify.c:463(dreplsrv_notify_schedule) dreplsrv_notify_schedule(5) scheduled for: Wed Jul 1 16:36:38 2015 CEST [2015/07/01 16:36:36.569356, 3] ../source4/auth/kerberos/krb5_init_context.c:80(smb_krb5_debug_wrapper) Kerberos: AS-REQ abcdef.abcdefg-abcdef at AD.DOMAIN from ipv4: 10.156.248.234:54408 for krbtgt/AD.DOMAIN at AD.DOMAIN [2015/07/01 16:36:36.654528, 3] ../source4/auth/kerberos/krb5_init_context.c:80(smb_krb5_debug_wrapper) Kerberos: Client sent patypes: 128 [2015/07/01 16:36:36.654564, 3] ../source4/auth/kerberos/krb5_init_con...
2010 Jun 12
2
Logic with regexps
...;rex1' with the results of a grep on 'rex2', illustrated by the following example: ## Given character vector X (below), and two regular exdpressions ## rex1="abc", rex2="ijk", to return the elements of X which match ## rex1 AND do not match rex1: X <- c( "abcdefg", # Yes "abchijk", # No "mnopqrs", # No "ijkpqrs", # No "abcpqrs" ) # Yes rex1 <- "abc" rex2 <- "ijk" ix1<- grep(rex1,X) ix2<- grep(rex2,X) X[ix1[!(ix1 %in% ix2)]] ## [1] "abcdefg&...
2010 Aug 24
2
Comparing/diffing strings
Hi all, all.equal is generally very useful when you want to find the differences between two objects. It breaks down however, when you have two long strings to compare: > all.equal(a, b) [1] "1 string mismatch" Does any one know of any good text diffing tools implemented in R? Thanks, Hadley -- Assistant Professor / Dobelman Family Junior Chair Department of Statistics / Rice
2006 Mar 20
0
Automatic parsing of POSTed XML into @params
...le back I was posting some XML strings to my rails 1.0 application and I noticed - much to my surprise and delight - that the XML was automatically parsed into nested parameter values that were available through @params. To be more specific, if I posted the string "<request><token>abcdefg</token</request>", I could access the value "abcdefg" in my controller as params[:request][:token]. For the life of me I can''t get this working again on a new rails project. Unfortunately the source code for my original HTTP client is no longer available (written i...
2006 Sep 16
0
[Bug 1230] filename escaping of brackets in sftp
...und. sftp> put "[eztv]" File "[eztv]" not found. sftp> put [eztv] File "[eztv]" not found. sftp> put \[eztv\] Uploading [eztv] to /private/tmp/[eztv] [eztv] 100% 4 0.0KB/s 00:00 sftp> put \[abcdefg\] File "\\[abcdefg\\]" not found. Expected Results: the first 3 commands should work and react the same way the 4. command may work?? the 5. command may emit: File "[abcdefg]" not found. Occurs on: - OpenSSH_4.2p1, OpenSSL 0.9.7i 14 Oct 2005 Mac OS X 10.4.7 (PowerPC) -...
2012 Oct 06
1
Dovecot & pam issues
...old server uses plain-text logins and password for pop3 and IMAP. I'm unable to get dovecot to authenticate. It's failing the password check. Trying 192.168.1.50... Connected to orion (192.168.1.50). Escape character is '^]'. +OK orion.crucis.net Dovecot ready. user joe +OK pass abcdefg -ERR Authentication failed. quit +OK Logging out Connection closed by foreign host. However, another user on the same system works! Trying 192.168.1.50... Connected to orion (192.168.1.50). Escape character is '^]'. +OK orion.crucis.net Dovecot ready. user bob +OK pass jklmnop +OK Logged...
2018 May 26
2
Buffering in R 3.5 connections causes incorrect data in readChar
...appears that readChar is not aware of the buffering, so it reads from the end of the buffer, rather than the current position in the file. This is a significant change of behavior from R-3.4.4. Below is a test case that I used to home in on the problem. --- p<-"test2.txt" cat("abcdefg hijklmn opqrstu",file=p) cat("read char after readline (h)\n") con <- file(p,"r") invisible(readLines(con,1)) print(readChar(con,1)) close(con) cat("read char after readline and seek (h)\n") con <- file(p,"r") invisible(readLines(con,1)) invisibl...
2006 Mar 13
3
Strange SSH login try.
...er ab from ::ffff:x.x.x.x Mar 12 15:01:03 server sshd[28507]: Invalid user abcd from ::ffff:x.x.x.x Mar 12 15:01:03 server sshd[28509]: Invalid user abcde from ::ffff:x.x.x.x Mar 12 15:01:03 server sshd[28511]: Invalid user abcdef from ::ffff:x.x.x.x Mar 12 15:01:04 server sshd[28515]: Invalid user abcdefgh from ::ffff:x.x.x.x Mar 12 15:01:04 server sshd[28513]: Invalid user abcdefg from ::ffff:x.x.x.x "abcdefgh" is my username to the different machine in the other domain, x.x.x.x it's my workstation. Yesterday, I loged into machine where my login is "abcdefgh" from x.x.x.x....
2008 Jan 20
1
[Bug 1230] filename escaping of brackets in sftp
...0.0KB/s 00:00 sftp> put [eztv] Uploading [eztv] to /tmp/xxxx/[eztv] [eztv] 100% 0 0.0KB/s 00:00 sftp> put \[eztv\] Uploading [eztv] to /tmp/xxxx/[eztv] [eztv] 100% 0 0.0KB/s 00:00 sftp> put \[abcdefg\] stat [abcdefg]: No such file or directory I'll apply this fix now, so it will be in OpenSSH 4.8. Thanks indeed for the detailed bug report and test cases. -- Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are...
2003 Oct 21
2
Trouble with password (daemon mode)
...until I try to protect item with password. here is my /etc/rsyncd.conf : use chroot = yes max connections = 10 syslog facility = local5 [ftp] path = /var/ftp comment = ftp secrets file = /etc/rsyncd.secrets auth users = gate1 here is my /etc/rsyncd.secrets gate1:abcdefg Here is the result of execution : /etc > rsync rsync://gate1@localhost/ftp/ Password: @ERROR: auth failed on module ftp rsync: connection unexpectedly closed (87 bytes read so far) rsync error: error in rsync protocol data stream (code 12) at io.c(165) /etc > What could it be ??? I have RS...
2013 Jan 08
1
Squat FTS plugin not kicking in
...t 2.1.12 on FreeBSD. I configured Dovecot to use the Squat plugin to provide faster full-text searches. The output of 'dovecot -n' is attached to this mail. However, I just noticed that this plugin doesn't seem to kick in. A raw telnet session seems to confirm this: [..] . SEARCH BODY abcdefg * OK Searched 57% of the mailbox, ETA 0:06 * SEARCH 3425 6254 14710 . OK Search completed (17.262 secs). . SEARCH BODY abcdefg * OK Searched 63% of the mailbox, ETA 0:05 * SEARCH 3425 6254 14710 . OK Search completed (18.651 secs). [..] A SEARCH BODY command doesn't create the dovecot.index.se...
2005 Jun 18
1
Running general purpose queries
...t;get it" yet. For example, my existing site runs the mysql query SHOW PROCESSLIST, captures the output in a recordset and dumps it to html. Another example is user management where I issue grant statements "GRANT ALL ON dbname.* to user%''*'' IDENTIFIED BY ''abcdefg''", and this merely executes and does not return a record set. I''m absolutely sure there is a way to do this in RoR, but I haven''t seen it yet (I probably need to read the API more thoroughly). Can anyone point me in the general direction? Thanks much Gary
2012 Jul 19
1
Append with literal+ and mailbox over quota
I'm appending a mail with literal+ to a mailbox that is over quota: 1 APPEND INBOX {127+} From: <ewald.dieterich at fun.de> To: <ewald.dieterich at fun.de> Subject: Quota-Test Message-ID: <abcdefg at fun.de> Quota-Test 1 NO [OVERQUOTA] Quota exceeded (mailbox for user is full) 2 NOOP 1 BAD Error in IMAP command APPEND: Invalid arguments. 3 NOOP 3 OK NOOP completed. Somehow the first NOOP is considered to be part of the already failed APPEND. I have to add an empty line after to NO respo...
2004 Feb 08
1
Registering SJPhone with Asterisk
2001 Mar 20
1
Charset / Language with an NT installation?
...ng the file or opening it with the language of the system set to the language used when the file was created. Excel seems to find files, but complains that it doesn't understand them. Notepad loads files, but they turn to semi-gibberish. All of this happens with simple filenames like "abcdefg.txt", and it happens to files living in my home directory on an e2fs filesystem, so it doesn't seem to be a problem with the ntfs driver. My current guess is that it is _something_ to do with the character set or language, but I don't know how to fix it! I'm not using any extende...
2018 May 29
1
Buffering in R 3.5 connections causes incorrect data in readChar
...ry connections, but the example uses it on a text > connection. Buffering and pushback are only used on (readable) text > connections. I will check whether we could report a runtime error. > > Best > Tomas > > --- >> >> p<-"test2.txt" >> cat("abcdefg >> hijklmn >> opqrstu",file=p) >> >> cat("read char after readline (h)\n") >> con <- file(p,"r") >> invisible(readLines(con,1)) >> print(readChar(con,1)) >> close(con) >> >> cat("read char after readline an...
2016 Dec 19
2
config file line length limit
...of the instance. dueto recent changes made by amazon, the description is longer than it used to be, making the comment longer. then ssh started failing. example (using the attached config file verylong.config): $ ssh -F verylong.config whatever verylong.config: line 9: Bad configuration option: ABCDEFG verylong.config: terminating, 1 bad configuration options i decided to take a look at the ssh source code. i think it is pretty clear what is going wrong. ----- readconf.c: 1703 char line[1024]; ... 1730 while (fgets(line, sizeof(line), f)) { 1731 /* Update line n...
2007 Feb 20
5
Create a hyphen-separated set of letters derived from a string - How to?
Hi, This is such a trivial programming issue, but I can''t find a way to transform, say ''abc'' to ''a-b-c'' without using pattern matching. Any ideas? Thanks in Advance, Richard --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post
2007 Feb 13
5
Fatigued R
Hi R, Please solve my problem........... I am extracting Bloomberg data from R, in a loop. R is getting fatigued by doing this process and gives some errors. I introduced sleep function. Doing this sometimes I get the results and sometimes not. I even noticed that if I give complete rest for R (don't open R window) for 1 day and then run my code with the sleep function, then the
2015 Mar 22
0
IMAP ANNOTATE Extension RFC5257: priority on roadmap
...hing that I'd like to implement at some point, but it's also quite a large change and likely will have to wait until Dovecot v2.3. You could already implement similar functionality with METADATA, although that would be kind of kludgy. Basically use SETMETADATA folder (/private/vendor/vendor.abcdefg/key/123 "value") where 123 would be the UID. You'd of course somehow need to explicitly delete the metadata entries when messages are expunged.