Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for checkPub (0.32 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

                }
            """
    
            when:
            serveValidKey()
    
            then:
            succeeds ":compileJava"
        }
    
        def "if signature is verified and checksum is declared in configuration, verify checksum (terse output=#terse)"() {
            createMetadataFile {
                keyServer(keyServerFixture.uri)
                verifySignatures()
                addTrustedKey("org:foo:1.0", validPublicKeyHexString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ** verify the artifact using the downloaded public keys
    ** if signature verification passes, perform additional requested checksum verification
    * if it's absent, fallback to checksum verification
    
    That is to say that Gradle's verification mechanism is much stronger if signature verification is enabled than just with checksum verification.
    In particular:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    		return
    	}
    	checksum, err := hash.GetContentChecksum(formValues)
    	if err != nil {
    		apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, fmt.Errorf("Invalid checksum: %w", err))
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    	if checksum != nil && checksum.Type.Trailing() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. cmd/object-api-datatypes_gen.go

    			if err != nil {
    				err = msgp.WrapError(err, "SuccessorModTime")
    				return
    			}
    		case "Checksum":
    			z.Checksum, bts, err = msgp.ReadBytesBytes(bts, z.Checksum)
    			if err != nil {
    				err = msgp.WrapError(err, "Checksum")
    				return
    			}
    		case "Inlined":
    			z.Inlined, bts, err = msgp.ReadBoolBytes(bts)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * task printChecksum {
         *   doLast {
         *     ant {
         *       //using ant checksum task to store the file checksum in the checksumOut ant property
         *       checksum(property: 'checksumOut', file: 'someFile.txt')
         *
         *       //we can refer to the ant property created by checksum task:
         *       println "The checksum is: " + checksumOut
         *     }
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    	for i < len(z) && z[i] == 0 {
    		i++
    	}
    
    	return z[i:]
    }
    
    func checkMul(a, b []byte) bool {
    	var x, y, z1 Int
    	x.SetBytes(a)
    	y.SetBytes(b)
    	z1.Mul(&x, &y)
    
    	var z2 Int
    	z2.SetBytes(mulBytes(a, b))
    
    	return z1.Cmp(&z2) == 0
    }
    
    func TestMul(t *testing.T) {
    	if err := quick.Check(checkMul, nil); err != nil {
    		t.Error(err)
    	}
    }
    
    var mulRangesZ = []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v2.go

    )
    
    func (e ErasureAlgo) valid() bool {
    	return e > invalidErasureAlgo && e < lastErasureAlgo
    }
    
    // ChecksumAlgo defines common type of different checksum algorithms
    type ChecksumAlgo uint8
    
    // List of currently supported checksum algorithms
    const (
    	invalidChecksumAlgo ChecksumAlgo = 0
    	HighwayHash         ChecksumAlgo = 1
    	lastChecksumAlgo    ChecksumAlgo = 2
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    	}
    
    	fi.DataDir = mustGetUUID()
    	fi.Checksum = opts.WantChecksum.AppendTo(nil, nil)
    	if opts.EncryptFn != nil {
    		fi.Checksum = opts.EncryptFn("object-checksum", fi.Checksum)
    	}
    	if userDefined[ReplicationSsecChecksumHeader] != "" {
    		if v, err := base64.StdEncoding.DecodeString(userDefined[ReplicationSsecChecksumHeader]); err == nil {
    			fi.Checksum = v
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                slf4jLogger.info("Disabling strict checksum verification on all artifact downloads.");
            } else if (MavenExecutionRequest.CHECKSUM_POLICY_FAIL.equals(cliRequest.request.getGlobalChecksumPolicy())) {
                slf4jLogger.info("Enabling strict checksum verification on all artifact downloads.");
            }
    
            if (slf4jLogger.isDebugEnabled()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			// pruned out.
    			//
    			// This could also occur if the source code for the module providing the
    			// package in the pruned graph has a checksum error, but the unpruned
    			// graph upgrades that module to a version with a correct checksum.
    			//
    			// pkg.err should have already been logged elsewhere — along with a
    			// stack trace — so log only the import path and non-error info here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top