Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for Sk (0.03 sec)

  1. android/guava/src/com/google/common/hash/Striped64.java

      private static final long busyOffset;
    
      static {
        try {
          UNSAFE = getUnsafe();
          Class<?> sk = Striped64.class;
          baseOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("base"));
          busyOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("busy"));
        } catch (Exception e) {
          throw new Error(e);
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. docs/ftp/README.md

    since those use the underlying algorithm. This list is sent to the client if
    it supports the server-sig-algs extension. Order is irrelevant.
    
    Valid values
    ```
    ssh-ed25519
    sk******@****.***
    sk******@****.***
    ecdsa-sha2-nistp256
    ecdsa-sha2-nistp384
    ecdsa-sha2-nistp521
    rsa-sha2-256
    rsa-sha2-512
    ssh-rsa
    ssh-dss
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

            byte[] ivec = new byte[8];
            IvParameterSpec params = new IvParameterSpec(ivec);
    
            SecretKeySpec skSpec = new SecretKeySpec(key.getEncoded(), "DES");
            SecretKey sk = skSpec;
    
            cipher.init(Cipher.DECRYPT_MODE, sk, params);
    
            byte[] result;
            result = cipher.doFinal(data);
    
            decrypt = new byte[result.length];
            System.arraycopy(result, 0, decrypt, 0, result.length);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/info.go

    //    Rule: Never break between consecutive runes of this category.
    //
    // 2) Mid:
    //    MidLetter, MidNumLet, Single_Quote.
    //    (Cf. case-ignorable: MidLetter, MidNumLet, Single_Quote or cat is Mn,
    //    Me, Cf, Lm or Sk).
    //    Rule: Don't break between Letter and Mid, but break between two Mids.
    //
    // 3) Break:
    //    Any other category: NewLine, MidNum, CR, LF, Double_Quote, Katakana, and
    //    Other.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. docs/language_names.yml

    qu: Runa Simi
    rm: rumantsch grischun
    rn: Ikirundi
    ro: Română
    ru: русский язык
    rw: Ikinyarwanda
    sa: संस्कृतम्
    sc: sardu
    sd: सिन्धी
    se: Davvisámegiella
    sg: yângâ tî sängö
    si: සිංහල
    sk: slovenčina
    sl: slovenščina
    sn: chiShona
    so: Soomaaliga
    sq: shqip
    sr: српски језик
    ss: SiSwati
    st: Sesotho
    su: Basa Sunda
    sv: svenska
    sw: Kiswahili
    ta: தமிழ்
    te: తెలుగు
    tg: тоҷикӣ
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/Type3Message.java

         * @throws IOException
         */
        public void setupMIC ( byte[] type1, byte[] type2 ) throws GeneralSecurityException, IOException {
            byte[] sk = this.masterKey;
            if ( sk == null ) {
                return;
            }
            MessageDigest mac = Crypto.getHMACT64(sk);
            mac.update(type1);
            mac.update(type2);
            byte[] type3 = toByteArray();
            mac.update(type3);
            setMic(mac.digest());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/sepa.js

    04F02F02F12F03U03"],["NL",18,"U04F10"],["NO",15,"F04F06F01"],["PK",24,"U04A16"],["PL",28,"F08F16"],["PS",29,"U04A21"],["PT",25,"F04F04F11F02"],["RO",24,"U04A16"],["RS",22,"F03F13F02"],["SA",24,"F02A18"],["SE",24,"F03F16F01"],["SI",19,"F05F08F02"],["SK",24,"F04F06F10"],["SM",27,"U01F05F05A12"],["ST",25,"F08F11F02"],["TL",23,"F03F14F02"],["TN",24,"F02F03F13F02"],["TR",26,"F05F01A16"],["VG",24,"U04F16"],["XK",20,"F04F10F02"],["AO",25,"F21"],["BF",27,"F23"],["BI",16,"F12"],["BJ",28,"F24"],["CI",28,"...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbSessionImpl.java

                    setNetbiosName(ctx.getNetbiosName());
                    byte[] sk = ctx.getSigningKey();
                    if ( sk != null ) {
                        // session key is truncated to 16 bytes, right padded with 0 if shorter
                        byte[] key = new byte[16];
                        System.arraycopy(sk, 0, key, 0, Math.min(16, sk.length));
                        this.sessionKey = key;
                    }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/options/options.go

    			}
    		}
    	}
    
    	if completed.ServiceAccountSigningKeyFile != "" && len(completed.Authentication.ServiceAccounts.Issuers) != 0 && completed.Authentication.ServiceAccounts.Issuers[0] != "" {
    		sk, err := keyutil.PrivateKeyFromFile(completed.ServiceAccountSigningKeyFile)
    		if err != nil {
    			return CompletedOptions{}, fmt.Errorf("failed to parse service-account-issuer-key-file: %v", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/flags.go

    	}
    	if s.SkipTProxy {
    		s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, "tproxy")
    	}
    	// Allow passing a single CSV flag as well
    	normalized := make(ArrayFlags, 0)
    	for _, sk := range s.SkipWorkloadClasses {
    		normalized = append(normalized, strings.Split(sk, ",")...)
    	}
    	s.SkipWorkloadClasses = normalized
    
    	if s.Image.Hub == "" {
    		s.Image.Hub = env.HUB.ValueOrDefault("gcr.io/istio-testing")
    	}
    
    	if s.Image.Tag == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top