Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 123 for hashOf (0.11 sec)

  1. src/crypto/tls/handshake_messages.go

    }
    
    type transcriptHash interface {
    	Write([]byte) (int, error)
    }
    
    // transcriptMsg is a helper used to hash messages which are not hashed when
    // they are read from, or written to, the wire. This is typically the case for
    // messages which are either not sent, or need to be hashed out of order from
    // when they are read/written.
    //
    // For most messages, the message is marshalled using their marshal method,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/go/build/deps_test.go

    	< encoding/ascii85, encoding/csv, encoding/gob, encoding/hex,
    	  encoding/json, encoding/pem, encoding/xml, mime;
    
    	# hashes
    	io
    	< hash
    	< hash/adler32, hash/crc32, hash/crc64, hash/fnv;
    
    	# math/big
    	FMT, math/rand
    	< math/big;
    
    	# compression
    	FMT, encoding/binary, hash/adler32, hash/crc32, sort
    	< compress/bzip2, compress/flate, compress/lzw, internal/zstd
    	< archive/zip, compress/gzip, compress/zlib;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// must match one of these values. Specifying an empty set disables root CA
    	// pinning, which can be unsafe. Each hash is specified as "<type>:<value>",
    	// where the only currently supported type is "sha256". This is a hex-encoded
    	// SHA-256 hash of the Subject Public Key Info (SPKI) object in DER-encoded
    	// ASN.1. These hashes can be calculated using, for example, OpenSSL.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                of the authorized client certificates.
                              items:
                                type: string
                              type: array
                            verifyCertificateSpki:
                              description: An optional list of base64-encoded SHA-256
                                hashes of the SPKIs of authorized client certificates.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_tls13.go

    			return c.sendAlert(alertInternalError)
    		}
    		if pskSuite.hash == hs.suite.hash {
    			// Update binders and obfuscated_ticket_age.
    			ticketAge := c.config.time().Sub(time.Unix(int64(hs.session.createdAt), 0))
    			hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd
    
    			transcript := hs.suite.hash.New()
    			transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/internal/abi/type.go

    func (t *InterfaceType) NumMethod() int { return len(t.Methods) }
    
    type MapType struct {
    	Type
    	Key    *Type
    	Elem   *Type
    	Bucket *Type // internal type representing a hash bucket
    	// function for hashing keys (ptr to key, seed) -> hash
    	Hasher     func(unsafe.Pointer, uintptr) uintptr
    	KeySize    uint8  // size of key slot
    	ValueSize  uint8  // size of elem slot
    	BucketSize uint16 // size of bucket
    	Flags      uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    	testutil "k8s.io/kubernetes/cmd/kubeadm/test"
    )
    
    const (
    	waitForHashes        = "wait-for-hashes"
    	waitForHashChange    = "wait-for-hash-change"
    	waitForPodsWithLabel = "wait-for-pods-with-label"
    )
    
    var testConfiguration = fmt.Sprintf(`
    apiVersion: %s
    kind: InitConfiguration
    nodeRegistration:
      name: foo
    localAPIEndpoint:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("files 2: [lib1.jar.hash, lib2.jar.hash, lib3.jar.hash, lib4-1.0.jar.hash]") == 2
            output.count("artifacts 2: [lib1.jar.hash (project :lib), lib2.jar.hash (project :lib), lib3.jar.hash (lib3.jar), lib4-1.0.jar.hash (org.test.foo:lib4:1.0)]") == 2
            output.count("components 2: [project :lib, project :lib, lib3.jar, org.test.foo:lib4:1.0]") == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `handSize` is a small positive number that configures the
    	// shuffle sharding of requests into queues.  When enqueuing a request
    	// at this priority level the request's flow identifier (a string
    	// pair) is hashed and the hash value is used to shuffle the list
    	// of queues and deal a hand of the size specified here.  The
    	// request is put into one of the shortest queues in that hand.
    	// `handSize` must be no larger than `queues`, and should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    	// must match one of these values. Specifying an empty set disables root CA
    	// pinning, which can be unsafe. Each hash is specified as "<type>:<value>",
    	// where the only currently supported type is "sha256". This is a hex-encoded
    	// SHA-256 hash of the Subject Public Key Info (SPKI) object in DER-encoded
    	// ASN.1. These hashes can be calculated using, for example, OpenSSL.
    	CACertHashes []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top