Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for verified$ (0.23 sec)

  1. gradle/verification-metadata.xml

       * Artifact is not signed
       * Needed because PGP signature verification failed!
       * Key couldn't be downloaded
    
       You should then edit the origin to be "Verified". Note that editing those entries means you
       verified that the checksum matches.
    
       If the generation above did not resolve your issue, a task might be missing that exercise the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

      - On artifact foo-1.0.pom (org:foo:1.0) in repository 'maven': Artifact was signed with key '14F53F0824875D73' but it wasn't found in any key server so it couldn't be verified
    
    This can indicate that a dependency has been compromised. Please carefully verify the signatures and checksums."""
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      LogicalResult matchAndRewrite(Operation *op,
                                    PatternRewriter &rewriter) const override {
        // Assumes TensorFlow convolution op is already verified to be
        // in valid form.
    
        // Match a TFConvOpType under the following conditions:
        // * The 'T' attribute must exist and be of value DT_FLOAT.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	ServerName string
    
    	// PeerCertificates are the parsed certificates sent by the peer, in the
    	// order in which they were sent. The first element is the leaf certificate
    	// that the connection is verified against.
    	//
    	// On the client side, it can't be empty. On the server side, it can be
    	// empty if Config.ClientAuth is not RequireAnyClientCert or
    	// RequireAndVerifyClientCert.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Gradle won't verify either checksums or signatures of plugins which use their own HTTP clients.
    Only plugins which use the infrastructure provided by Gradle for performing requests will see their requests verified.
    --
    
    [[sec:verification-update]]
    === Using generation for incremental updates
    
    The verification file generated by Gradle has a strict ordering for all its content.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. cmd/object-api-listobjects_test.go

    				}
    			}
    			// Since there are cases for which ListObjects fails, this is
    			// necessary. Test passes as expected, but the output values
    			// are verified for correctness here.
    			if err == nil && testCase.shouldPass {
    				// The length of the expected ListObjectsResult.Objects
    				// should match in both expected result from test cases
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "valid authentication configuration that uses verified email join via rule",
    			in: &api.AuthenticationConfiguration{
    				JWT: []api.JWTAuthenticator{
    					{
    						Issuer: api.Issuer{
    							URL:       "https://issuer-url",
    							Audiences: []string{"audience"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    					if l := len(c.PeerCertificates); l != 1 {
    						return fmt.Errorf("server: got len(PeerCertificates) = %d, wanted 1", l)
    					}
    					if c.VerifiedChains != nil {
    						return fmt.Errorf("server: got Verified Chains %v, want nil", c.VerifiedChains)
    					}
    					return checkFields(c, called, "server")
    				}
    			},
    			configureClient: func(config *Config, called *int) {
    				config.InsecureSkipVerify = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	if err == nil || !errors.IsNotFound(err) {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    }
    
    // This test the fast-fail path. We test that the precondition gets verified
    // again before deleting the object in tests of pkg/storage/etcd.
    func (t *Tester) testDeleteWithUID(obj runtime.Object, createFn CreateFunc, getFn GetFunc, isNotFoundFn IsErrorFunc, opts metav1.DeleteOptions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    			if len(ss.VerifiedChains) != 1 || len(cs.VerifiedChains) != 1 {
    				t.Errorf("Got %d (server) and %d (client) verified chains, expected %d", len(ss.VerifiedChains), len(cs.VerifiedChains), 1)
    			} else if len(ss.VerifiedChains[0]) != 2 || len(cs.VerifiedChains[0]) != 2 {
    				t.Errorf("Got %d (server) and %d (client) long verified chain, expected %d", len(ss.VerifiedChains[0]), len(cs.VerifiedChains[0]), 2)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top