Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,024 for verifyFn (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    	clientCertificateExpirationHistogram.WithContext(req.Context()).Observe(remaining.Seconds())
    	chains, err := req.TLS.PeerCertificates[0].Verify(optsCopy)
    	if err != nil {
    		return nil, false, fmt.Errorf(
    			"verifying certificate %s failed: %w",
    			certificateIdentifier(req.TLS.PeerCertificates[0]),
    			err,
    		)
    	}
    
    	var errlist []error
    	for _, chain := range chains {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/hack/verify-codegen.sh

    Tim Hockin <******@****.***> 1678044825 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 05 23:05:26 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                        verify.expected = ['key': 'newValue', 'otherKey': 'otherValue']
                    }
                }
            '''.stripIndent()
    
            expect:
            succeeds('replacingPut', 'verify')
            and:
            succeeds('replacingPutWithProvider', 'verify')
            and:
            succeeds('replacingPutAll', 'verify')
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ResettableExpectations.java

    package org.gradle.test.fixtures;
    
    /**
     * Allows {@link org.gradle.integtests.fixtures.ToBeFixedForConfigurationCacheExtension} to verify
     * test expectations before cleanup so they can be silenced if necessary.
     */
    public interface ResettableExpectations {
        /**
         * Resets all pending expectations after verifying them.
         * Must throw when a verification fails.
         */
        void resetExpectations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. docs/security/security.md

    contained in this repository.
    
    If you believe you have discovered a security vulnerability, please follow the
    guidelines at https://bugcrowd.com/squareopensource
    
    
    ## Verifying Artifacts
    
    We sign our artifacts using this [key][signing_key]:
    
    ```
    pub rsa4096/dbd744ace7ade6aa50dd591f66b50994442d2d40 2021-07-09T14:50:19Z
    	 Hash=a79b48fd6a1f31699c788b50c97d0b98
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/embedding_sequencing.mlir

        %0 = "tf.Less"(%arg0, %arg0) : (tensor<i32>, tensor<i32>) -> tensor<i1>
        return %0 : tensor<i1>
      }
      // Only verify sc_backward. The previous test case verifies everything else.
      // CHECK: func.func private @_func_sc_backward
      // CHECK-NEXT: return
    }
    
    // -----
    // A test verifying too many TPUReplicateMetadataOp ops. Same logic tests too many TPUCompilationResultOp ops.
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 01 21:27:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  7. hack/verify-e2e-suites.sh

    Patrick Ohly <******@****.***> 1713375322 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 17:35:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. security/pkg/pki/testdata/root-verify-fail.pem

    Jianfei Hu <******@****.***> 1520814621 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 12 00:30:21 UTC 2018
    - 1K bytes
    - Viewed (0)
  9. security/pkg/pki/testdata/cert-verify-fail.pem

    Jianfei Hu <******@****.***> 1520814621 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 12 00:30:21 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  10. src/crypto/x509/example_test.go

    	if err != nil {
    		panic("failed to parse certificate: " + err.Error())
    	}
    
    	opts := x509.VerifyOptions{
    		DNSName: "mail.google.com",
    		Roots:   roots,
    	}
    
    	if _, err := cert.Verify(opts); err != nil {
    		panic("failed to verify certificate: " + err.Error())
    	}
    }
    
    func ExampleParsePKIXPublicKey() {
    	const pubPEM = `
    -----BEGIN PUBLIC KEY-----
    MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlRuRnThUjU8/prwYxbty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 29 16:52:01 UTC 2019
    - 5.3K bytes
    - Viewed (0)
Back to top