Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for digests (0.16 sec)

  1. pkg/kubelet/container/runtime.go

    	// PullImage pulls an image from the network to local storage using the supplied
    	// secrets if necessary. It returns a reference (digest or ID) to the pulled image.
    	PullImage(ctx context.Context, image ImageSpec, pullSecrets []v1.Secret, podSandboxConfig *runtimeapi.PodSandboxConfig) (string, error)
    	// GetImageRef gets the reference (digest or ID) of the image which has already been in
    	// the local storage. It returns ("", nil) if the image isn't in the local storage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters_test.go

    			imageList: []kubecontainer.Image{{Size: 3}, {Size: 1}, {Size: 4}, {Size: 2}},
    		},
    		{
    			desc:      "repo digests and tags both show up in image names",
    			maxImages: -1,
    			// makeExpectedImageList will use both digests and tags
    			imageList: []kubecontainer.Image{
    				{
    					RepoDigests: []string{"foo", "bar"},
    					RepoTags:    []string{"baz", "quux"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	priorityLevelMaxSeatsPercent = float64(0.15)
    )
    
    // This file contains a simple local (to the apiserver) controller
    // that digests API Priority and Fairness config objects (FlowSchema
    // and PriorityLevelConfiguration) into the data structure that the
    // filter uses.  At this first level of development this controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/DiTest.java

    import java.util.Set;
    
    import org.apache.maven.di.Injector;
    import org.apache.maven.di.impl.Types;
    import org.apache.maven.internal.impl.ExtensibleEnumRegistries;
    import org.junit.jupiter.api.Test;
    
    class DiTest {
    
        @Test
        void testGenerics() {
            Set<Type> types = Types.getAllSuperTypes(ExtensibleEnumRegistries.DefaultPathScopeRegistry.class);
    
            Injector injector = Injector.create();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/crypto/sha1/sha1.go

    	d.Write(padlen)
    
    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    
    	byteorder.BePutUint32(digest[0:], d.h[0])
    	byteorder.BePutUint32(digest[4:], d.h[1])
    	byteorder.BePutUint32(digest[8:], d.h[2])
    	byteorder.BePutUint32(digest[12:], d.h[3])
    	byteorder.BePutUint32(digest[16:], d.h[4])
    
    	return digest
    }
    
    // ConstantTimeSum computes the same result of [Sum] but in constant time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/hash/adler32/adler32.go

    // state of the hash.
    func New() hash.Hash32 {
    	d := new(digest)
    	d.Reset()
    	return d
    }
    
    func (d *digest) Size() int { return Size }
    
    func (d *digest) BlockSize() int { return 4 }
    
    const (
    	magic         = "adl\x01"
    	marshaledSize = len(magic) + 4
    )
    
    func (d *digest) MarshalBinary() ([]byte, error) {
    	b := make([]byte, 0, marshaledSize)
    	b = append(b, magic...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // Sum224 returns the SHA3-224 digest of the data.
    func Sum224(data []byte) (digest [28]byte) {
    	h := New224()
    	h.Write(data)
    	h.Sum(digest[:0])
    	return
    }
    
    // Sum256 returns the SHA3-256 digest of the data.
    func Sum256(data []byte) (digest [32]byte) {
    	h := New256()
    	h.Write(data)
    	h.Sum(digest[:0])
    	return
    }
    
    // Sum384 returns the SHA3-384 digest of the data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256.go

    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    
    	byteorder.BePutUint32(digest[0:], d.h[0])
    	byteorder.BePutUint32(digest[4:], d.h[1])
    	byteorder.BePutUint32(digest[8:], d.h[2])
    	byteorder.BePutUint32(digest[12:], d.h[3])
    	byteorder.BePutUint32(digest[16:], d.h[4])
    	byteorder.BePutUint32(digest[20:], d.h[5])
    	byteorder.BePutUint32(digest[24:], d.h[6])
    	if !d.is224 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. index.yaml

    apiVersion: v1
    entries:
      minio:
      - apiVersion: v1
        appVersion: RELEASE.2024-04-18T19-09-19Z
        created: "2024-04-28T03:14:12.227568814-07:00"
        description: High Performance Object Storage
        digest: 8ef4212d7d51be6c8192b3e91138a9ca918ca56142c42500028cfd3b80e0b2dd
        home: https://min.io
        icon: https://min.io/resources/img/logo/MINIO_wordmark.png
        keywords:
        - minio
        - storage
        - object-storage
        - s3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/crypto/md5/md5.go

    	if d.nx != 0 {
    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    	byteorder.LePutUint32(digest[0:], d.s[0])
    	byteorder.LePutUint32(digest[4:], d.s[1])
    	byteorder.LePutUint32(digest[8:], d.s[2])
    	byteorder.LePutUint32(digest[12:], d.s[3])
    	return digest
    }
    
    // Sum returns the MD5 checksum of the data.
    func Sum(data []byte) [Size]byte {
    	var d digest
    	d.Reset()
    	d.Write(data)
    	return d.checkSum()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top