Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for chains (0.79 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/modget/get.go

    //
    // We skip missing-package errors earlier in the process, since we want to
    // resolve pathSets ourselves, but at that point, we don't have enough context
    // to log the package-import chains leading to each error.
    func (r *resolver) checkPackageProblems(ctx context.Context, pkgPatterns []string) {
    	defer base.ExitIfErrors()
    
    	// Gather information about modules we might want to load retractions and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    						{Name: "network-filter-to-be-replaced"},
    					},
    				},
    				{
    					Name: "filter-chain-name-not-match",
    					Filters: []*listener.Filter{
    						{Name: "custom-network-filter-1"},
    						{Name: "custom-network-filter-2"},
    					},
    				},
    				{
    					Name: "filter-chain-name-match",
    					Filters: []*listener.Filter{
    						{Name: "custom-network-filter-1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_tls_test.go

    				TLSClientCertChain: "/custom/chain.pem",
    				TLSClientKey:       "/custom/key.pem",
    				TLSClientRootCert:  "/custom/root.pem",
    			}},
    			false, false, model.MTLSUnknown,
    			&networking.ClientTLSSettings{
    				Mode:              networking.ClientTLSSettings_MUTUAL,
    				PrivateKey:        "/custom/key.pem",
    				ClientCertificate: "/custom/chain.pem",
    				CaCertificates:    "/custom/root.pem",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        client =
          client.newBuilder()
            .addNetworkInterceptor(
              Interceptor { chain: Interceptor.Chain? ->
                val request =
                  chain!!.request().newBuilder()
                    .header("Host", "privateobject.com")
                    .build()
                chain.proceed(request)
              },
            )
            .build()
        server.enqueue(MockResponse())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

                ServerMessageBlock2Request<?> cur = cr;
    
                if ( first != null ) {
                    cr.chain(first);
                    cur = first;
    
                    for ( ServerMessageBlock2Request<?> req : others ) {
                        cur.chain(req);
                        cur = req;
                    }
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  10. okhttp/api/okhttp.api

    	public abstract fun withConnectTimeout (ILjava/util/concurrent/TimeUnit;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withReadTimeout (ILjava/util/concurrent/TimeUnit;)Lokhttp3/Interceptor$Chain;
    	public abstract fun withWriteTimeout (ILjava/util/concurrent/TimeUnit;)Lokhttp3/Interceptor$Chain;
    	public abstract fun writeTimeoutMillis ()I
    }
    
    public final class okhttp3/Interceptor$Companion {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top