Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 498 for digests (0.13 sec)

  1. .github/workflows/sigbuild-docker-branch.yml

              cache-from: type=registry,ref=tensorflow/build:${{ steps.vars.outputs.REF }}-${{ matrix.python-version }}
              cache-to: type=inline
          -
            name: Image digest
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. 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)
  3. src/crypto/rsa/pkcs1v15_test.go

    }
    
    func TestSignPKCS1v15(t *testing.T) {
    	for i, test := range signPKCS1v15Tests {
    		h := sha1.New()
    		h.Write([]byte(test.in))
    		digest := h.Sum(nil)
    
    		s, err := SignPKCS1v15(nil, rsaPrivateKey, crypto.SHA1, digest)
    		if err != nil {
    			t.Errorf("#%d %s", i, err)
    		}
    
    		expected, _ := hex.DecodeString(test.out)
    		if !bytes.Equal(s, expected) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  4. src/crypto/sha256/sha256block_decl.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (386 || amd64 || s390x || ppc64le || ppc64) && !purego
    
    package sha256
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 291 bytes
    - Viewed (0)
  5. src/crypto/md5/md5block_decl.go

    // license that can be found in the LICENSE file.
    
    //go:build (amd64 || 386 || arm || ppc64le || ppc64 || s390x || arm64) && !purego
    
    package md5
    
    const haveAsm = true
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 326 bytes
    - Viewed (0)
  6. src/strconv/decimal.go

    // in multiprecision binary precisely.
    
    package strconv
    
    type decimal struct {
    	d     [800]byte // digits, big-endian representation
    	nd    int       // number of digits used
    	dp    int       // decimal point
    	neg   bool      // negative flag
    	trunc bool      // discarded nonzero digits beyond d[:nd]
    }
    
    func (a *decimal) String() string {
    	n := 10 + a.nd
    	if a.dp > 0 {
    		n += a.dp
    	}
    	if a.dp < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  7. .github/workflows/sigbuild-docker.yml

              cache-from: type=registry,ref=tensorflow/build:latest-${{ matrix.python-version }}
              cache-to: type=inline
          -
            name: Image digest
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512block_decl.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (ppc64le || ppc64 || riscv64 || s390x) && !purego
    
    package sha512
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 286 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

        }
    }
    
    // tag::digest-authentication[]
    repositories {
        maven {
            url = uri("https://repo.mycompany.com/maven2")
            credentials {
                username = "user"
                password = "password"
            }
            authentication {
                create<DigestAuthentication>("digest")
            }
        }
    }
    // end::digest-authentication[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_manager.go

    // applyDefaultImageTag parses a docker image string, if it doesn't contain any tag or digest,
    // a default tag will be applied.
    func applyDefaultImageTag(image string) (string, error) {
    	_, tag, digest, err := parsers.ParseImageName(image)
    	if err != nil {
    		return "", err
    	}
    	// we just concatenate the image name with the default tag here instead
    	if len(digest) == 0 && len(tag) > 0 && !strings.HasSuffix(image, ":"+tag) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top