Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for chains (0.11 sec)

  1. src/crypto/tls/handshake_client_test.go

    // when certain messages are seen.
    type opensslOutputSink struct {
    	handshakeComplete chan struct{}
    	readKeyUpdate     chan struct{}
    	all               []byte
    	line              []byte
    }
    
    func newOpensslOutputSink() *opensslOutputSink {
    	return &opensslOutputSink{make(chan struct{}), make(chan struct{}), nil, nil}
    }
    
    // opensslEndOfHandshake is a message that the “openssl s_server” tool will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Tests independent chains of two resources.
    
    // CHECK-LABEL: func @simple_independent_chains_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier_test.go

    				8080,
    				testNode,
    				[]string{},
    				NoOverride,
    			)
    			if diff := cmp.Diff(tc.expected, got, protocmp.Transform()); diff != "" {
    				t.Errorf("unexpected filter chains: %v", diff)
    			}
    		})
    	}
    }
    
    func TestComposePeerAuthentication(t *testing.T) {
    	now := time.Now()
    	tests := []struct {
    		name    string
    		configs []*config.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

        `HandshakeCertificates` holds the TLS certificates required for a TLS handshake. On the server
        it keeps your `HeldCertificate` and its chain. On the client it keeps the root certificates
        that are trusted to sign a server's certificate chain. `HandshakeCertificates` also works with
        mutual TLS where these roles are reversed.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. src/html/template/exec_test.go

    	{"method on chained var",
    		"{{range .MSIone}}{{if $.U.TrueFalse $.True}}{{$.U.TrueFalse $.True}}{{else}}WRONG{{end}}{{end}}",
    		"true", tVal, true},
    	{"chained method",
    		"{{range .MSIone}}{{if $.GetU.TrueFalse $.True}}{{$.U.TrueFalse $.True}}{{else}}WRONG{{end}}{{end}}",
    		"true", tVal, true},
    	{"chained method on variable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	// activeCertHandles contains the cache handles to certificates in
    	// peerCertificates that are used to track active references.
    	activeCertHandles []*activeCert
    	// verifiedChains contains the certificate chains that we built, as
    	// opposed to the ones presented by the server.
    	verifiedChains [][]*x509.Certificate
    	// serverName contains the server name indicated by the client, if any.
    	serverName string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. 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)
  8. src/text/template/exec_test.go

    	{"method on chained var",
    		"{{range .MSIone}}{{if $.U.TrueFalse $.True}}{{$.U.TrueFalse $.True}}{{else}}WRONG{{end}}{{end}}",
    		"true", tVal, true},
    	{"chained method",
    		"{{range .MSIone}}{{if $.GetU.TrueFalse $.True}}{{$.U.TrueFalse $.True}}{{else}}WRONG{{end}}{{end}}",
    		"true", tVal, true},
    	{"chained method on variable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

        std::sort(p.second.begin(), p.second.end());
      }
      if (cluster_names != nullptr) {
        std::sort(cluster_names->begin(), cluster_names->end());
      }
      return cluster_sets;
    }
    
    TEST(XlaCompilationTest, Chains) {
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      {
        GraphDefBuilder builder(GraphDefBuilder::kFailImmediately);
        Node* a =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      return %outputs_20 : tensor<?x?x4xf32>
    }
    
    // -----
    
    // Test a while to map_fn conversion in which the passed in max_iterations 
    // is not in typical location of %arg3 and there are identify chains in function bodies.
    
    // CHECK-LABEL: @map_while_cond_170
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
Back to top