Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 461 for sigset (0.17 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

            table = (BitSet) table.clone();
            // If only we could actually call BitSet.trimToSize() ourselves...
          }
          this.table = table;
        }
    
        @Override
        public boolean matches(char c) {
          return table.get(c);
        }
    
        @Override
        void setBits(BitSet bitSet) {
          bitSet.or(table);
        }
      }
    
      // Static constant implementation classes
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Crypto.java

    
        /**
         * 
         * @return MD4 digest
         */
        public static MessageDigest getMD4 () {
            try {
                return MessageDigest.getInstance("MD4", getProvider());
            }
            catch ( NoSuchAlgorithmException e ) {
                throw new CIFSUnsupportedCryptoException(e);
            }
        }
    
    
        /**
         * 
         * @return MD5 digest
         */
        public static MessageDigest getMD5 () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Aug 17 17:34:29 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  3. docs/works_with_okhttp.md

     * [Ok2Curl](https://github.com/mrmike/Ok2Curl): Convert OkHttp requests into curl logs.
     * [OkHttp AWS Signer](https://github.com/babbel/okhttp-aws-signer): AWS V4 signing algorithm for OkHttp requests
     * [okhttp-digest](https://github.com/rburgst/okhttp-digest): A digest authenticator for OkHttp.
     * [OkHttp Idling Resource](https://github.com/JakeWharton/okhttp-idling-resource): An Espresso IdlingResource for OkHttp.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        }
    
    
        /**
         * @return the digest
         */
        @Override
        public final SMB1SigningDigest getDigest () {
            return this.digest;
        }
    
    
        /**
         * @param digest
         *            the digest to set
         */
        @Override
        public final void setDigest ( SMBSigningDigest digest ) {
            this.digest = (SMB1SigningDigest) digest;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  5. pkg/wasm/imagefetcher_test.go

    		}
    		manifest.MediaType = types.DockerManifestSchema2
    
    		// Push image to the registry.
    		err = crane.Push(img, ref)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Fetch docker image with digest
    		d, err := img.Digest()
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Fetch OCI image.
    		binaryFetcher, actualDiget, err := fetcher.PrepareFetch(ref)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 05 04:15:17 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_s390x.s

    	WORD $0xB93E0024    // compute intermediate message digest (KIMD)
    	RET
    
    // func klmdQuery() queryResult
    TEXT ·klmdQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KLMD-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	WORD $0xB93F0024    // compute last message digest (KLMD)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/image/image.go

    import "regexp"
    
    var (
    	// tagMatcher is the regex used to match a tag.
    	// Basically we presume an image can be made of `[domain][:port][path]<name>[:tag][@sha256:digest]`
    	// We are obviously interested only in the tag, but for the purpose of properly matching it, we also match the digest
    	// (if present). All the parts before the tag we match in a single match everything (but not greedy) group.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 21:21:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        public Smb2SigningDigest getDigest () {
            return this.digest;
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlock#setDigest(jcifs.internal.SMBSigningDigest)
         */
        @Override
        public void setDigest ( SMBSigningDigest digest ) {
            this.digest = (Smb2SigningDigest) digest;
            if ( this.next != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu_s390x.s

    	KIMD R2, R4         // compute intermediate message digest (KIMD)
    	RET
    
    // func klmdQuery() queryResult
    TEXT ·klmdQuery(SB), NOSPLIT|NOFRAME, $0-16
    	MOVD $0, R0         // set function code to 0 (KLMD-Query)
    	MOVD $ret+0(FP), R1 // address of 16-byte return value
    	KLMD R2, R4         // compute last message digest (KLMD)
    	RET
    
    // func kdsaQuery() queryResult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/crypto/crypto.go

    	// the hash (as digest) and the hash function (as opts) to Sign.
    	Sign(rand io.Reader, digest []byte, opts SignerOpts) (signature []byte, err error)
    }
    
    // SignerOpts contains options for signing with a [Signer].
    type SignerOpts interface {
    	// HashFunc returns an identifier for the hash function used to produce
    	// the message passed to Signer.Sign, or else zero to indicate that no
    	// hashing was done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top