search for: idkey

Displaying 5 results from an estimated 5 matches for "idkey".

2017 Jul 16
3
Arranging column data to create plots
Dear All, I need some help arranging data that was imported. The imported data frame looks something like this (the actual file is huge, so this is example data) DF: IDKey X1 Y1 X2 Y2 X3 Y3 X4 Y4 Name1 21 15 25 10 Name2 15 18 35 24 27 45 Name3 17 21 30 22 15 40 32 55 I would like to create a new data frame with the following NewDF: IDKey X Y Name1 21 15 Name1 25 10 Name2 15 18 Name2 35 24 Name2 27 45 Name3 17 21 Name3 30...
2017 Jul 16
0
Arranging column data to create plots
...I need some help arranging data that was imported. It would be helpful if you were to use dput to give us the sample data since you say you have already imported it. > The imported data frame looks something like this (the actual file is > huge, so this is example data) > > DF: > IDKey X1 Y1 X2 Y2 X3 Y3 X4 Y4 > Name1 21 15 25 10 > Name2 15 18 35 24 27 45 > Name3 17 21 30 22 15 40 32 55 That data is missing in X3 etc, but would be NA in an actual data frame, so I don't know if my workaround was the same as your workaround. Dput would have c...
2015 Jul 26
2
[PATCH] ssh-agent: Add support to load additional certificates
...6 14:59:53.733842195 +0200 @@ -112,9 +112,15 @@ typedef struct { u_int sockets_alloc = 0; SocketEntry *sockets = NULL; +typedef struct refcountkey { + struct sshkey *key; + int count; +} RefcountKey; + typedef struct identity { TAILQ_ENTRY(identity) next; - struct sshkey *key; + RefcountKey *idkey; + RefcountKey *shadowed_key; char *comment; char *provider; time_t death; @@ -188,16 +194,43 @@ idtab_lookup(int version) return &idtable[version]; } +static RefcountKey * +refkey_new(struct sshkey *key) +{ + RefcountKey *ref = xcalloc(1, sizeof(RefcountKey)); + + ref->key = key;...
2008 Apr 28
1
tips to speed up sqlSave with MS SQL Server?
...rmation re: the dataframe and memory on my system. Please let me know if there is any further information I should provide. > memory.size(max = F) #reports amount of memory currently in use [1] 131.8365 > str(idxdata) 'data.frame': 4474553 obs. of 5 variables: $ idkey : int 1003 1003 1003 1003 1003 1003 1003 1003 1003 1003 ... $ nnd : Factor w/ 25 levels "01","01C","02",..: 1 1 1 1 1 1 1 1 1 1 ... $ curcdd : Factor w/ 2 levels "CAD","USD": 2 2 2 2 2 2 2 2 2 2 ... $ ddates:Class 'Date' nu...
2000 Jul 05
1
some problems reading rsa/dsa keys
...rt 22 # Protocol 2,1 # Cipher 3des # EscapeChar ~ # Be paranoid by default Host * ForwardAgent no ForwardX11 yes RSAAuthentication yes FallBackToRsh no IdentityFile ~/.ssh2/identification Port x Protocol 2 $ cat .ssh/identification IdKey joe_dsa_1024 So, why doesn't the damn thing read the correct key? The key was generated by ssh-2.0.13, it's a generic 1024bits DSA. Thanks, Emmanuel -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.mindrot.org/pipermail/openssh-unix-dev/attachm...