Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Signatures (0.33 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            ),
        }
        saved_model_save.save(
            model, self._input_saved_model_path, signatures=signatures
        )
    
        def data_gen_sig1() -> repr_dataset.RepresentativeDataset:
          """Generates tuple-style samples for signature 'sig1'.
    
          The first element of the tuple identifies the signature key the input data
          is for.
    
          Yields:
            Representative sample for 'sig1'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      {
        // Start a threadpool to convert signatures, since signature conversion can
        // be time consuming especially for large models. Threadpool destructor
        // blocks until all work is done.
        thread::ThreadPool thread_pool(Env::Default(), "ConvertSignatures",
                                       kNumThreadToConvertSignatures);
        for (const auto& key_and_signature_def : signatures) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	jws, err := jose.ParseSigned(jwt)
    	if err != nil {
    		return nil, err
    	}
    	if len(jws.Signatures) == 0 {
    		return nil, fmt.Errorf("jwt contained no signatures")
    	}
    	kid := jws.Signatures[0].Header.KeyID
    
    	for _, key := range s.keys {
    		if key.KeyID == kid {
    			return jws.Verify(key)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <a href="#Uniqueness_of_identifiers">same</a> names must
    have <a href="#Type_identity">identical</a> signatures.
    </p>
    
    <pre>
    type ReadCloser interface {
    	Reader   // includes methods of Reader in ReadCloser's method set
    	Close()  // illegal: signatures of Reader.Close and Close are different
    }
    </pre>
    
    <p>
    An interface type <code>T</code> may not embed itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    		want string
    	}{
    		{MD5WithRSA, "x509: cannot verify signature: insecure algorithm MD5-RSA"},
    		{SHA1WithRSA, "x509: cannot verify signature: insecure algorithm SHA1-RSA (temporarily override with GODEBUG=x509sha1=1)"},
    		{ECDSAWithSHA1, "x509: cannot verify signature: insecure algorithm ECDSA-SHA1 (temporarily override with GODEBUG=x509sha1=1)"},
    		{MD2WithRSA, "x509: cannot verify signature: insecure algorithm 1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

                          string* diff) {
      if (a.signature().DebugString() != b.signature().DebugString()) {
        if (diff) {
          *diff =
              absl::StrCat("Signature mismatch for function ", a.signature().name(),
                           ", expected:\n", a.signature().DebugString(), "\ngot:\n",
                           b.signature().DebugString());
        }
        return false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                addSetter(methodName, methodDescriptor, null, body);
            }
    
            private void addSetter(String methodName, String methodDescriptor, @Nullable String signature, BytecodeFragment body) {
                publicMethod(methodName, methodDescriptor, signature, methodVisitor -> new MethodVisitorScope(methodVisitor) {{
                    emit(body);
                    _RETURN();
                }});
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    			secretKey:          credentials.SecretKey,
    			shouldPass:         false,
    			fault:              signatureMismatch,
    		},
    		// Test case - 10
    		// Different date (timestamps) used in seed signature calculation
    		// and chunks signature calculation.
    		{
    			bucketName:         bucketName,
    			objectName:         objectName,
    			data:               oneKData,
    			dataLen:            1024,
    			chunkSize:          1024,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.plugins.signing.Signature.getExtension()> does not have raw return type assignable to org.gradle.api.provider.Property in (Signature.java:0)
    Method <org.gradle.plugins.signing.Signature.getFile()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Signature.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  10. cmd/server_test.go

    	suite.TearDownSuite(c)
    }
    
    func TestServerSuite(t *testing.T) {
    	testCases := []*TestSuiteCommon{
    		// Init and run test on ErasureSD backend with signature v4.
    		{serverType: "ErasureSD", signer: signerV4},
    		// Init and run test on ErasureSD backend with signature v2.
    		{serverType: "ErasureSD", signer: signerV2},
    		// Init and run test on ErasureSD backend, with tls enabled.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top