Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rootTask (0.12 sec)

  1. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		panic(err)
    	}
    
    	rootCAs := x509.NewCertPool()
    	rootCAs.AddCert(issuer)
    
    	clientConfig := &Config{
    		MaxVersion:         version,
    		CipherSuites:       []uint16{TLS_RSA_WITH_RC4_128_SHA},
    		ClientSessionCache: NewLRUClientSessionCache(32),
    		RootCAs:            rootCAs,
    		ServerName:         "example.golang",
    	}
    
    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. src/crypto/tls/tls_test.go

    		t.Run(name, func(t *testing.T) {
    			config := &Config{
    				Time:         now,
    				Rand:         zeroSource{},
    				Certificates: make([]Certificate, 1),
    				MaxVersion:   v,
    				RootCAs:      rootCAs,
    				ClientCAs:    rootCAs,
    				ClientAuth:   RequireAndVerifyClientCert,
    				NextProtos:   []string{alpnProtocol},
    				ServerName:   serverName,
    			}
    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. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            given:
            buildFile << """
                class Bean { Project p1 }
    
                class FooTask extends DefaultTask {
                    private final bean = new Bean()
                    FooTask() { bean.p1 = project }
                    @TaskAction void run() {}
                }
    
                task foo(type: FooTask)
            """
    
            when:
            run ENABLE_CLI_OPT, WARN_PROBLEMS_CLI_OPT, "foo"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// settings.
    	VerifyConnection func(ConnectionState) error
    
    	// RootCAs defines the set of root certificate authorities
    	// that clients use when verifying server certificates.
    	// If RootCAs is nil, TLS uses the host's root CA set.
    	RootCAs *x509.CertPool
    
    	// NextProtos is a list of supported application level protocols, in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top