Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for startPos (0.37 sec)

  1. src/net/http/alpn_test.go

    		}
    	}))
    	ts.TLS = &tls.Config{
    		NextProtos: []string{"unhandled-proto", "tls-0.9"},
    	}
    	ts.Config.TLSNextProto = map[string]func(*Server, *tls.Conn, Handler){
    		"tls-0.9": handleTLSProtocol09,
    	}
    	ts.StartTLS()
    	defer ts.Close()
    
    	// Normal request, without NPN.
    	{
    		c := ts.Client()
    		res, err := c.Get(ts.URL)
    		if err != nil {
    			t.Fatal(err)
    		}
    		body, err := io.ReadAll(res.Body)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. internal/config/identity/ldap/help.go

    			Optional:    true,
    			Type:        "on|off",
    		},
    		config.HelpKV{
    			Key:         ServerStartTLS,
    			Description: `use StartTLS connection to AD/LDAP server` + defaultHelpPostfix(ServerStartTLS),
    			Optional:    true,
    			Type:        "on|off",
    		},
    		config.HelpKV{
    			Key:         config.Comment,
    			Description: config.DefaultComment,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/replica_calculator_test.go

    // increase in pod utilization which is calibrated against the tolerance value.
    func TestReplicaCalcComputedToleranceAlgImplementation(t *testing.T) {
    
    	startPods := int32(10)
    	// 150 mCPU per pod.
    	totalUsedCPUOfAllPods := int64(startPods * 150)
    	// Each pod starts out asking for 2X what is really needed.
    	// This means we will have a 50% ratio of used/requested
    	totalRequestedCPUOfAllPods := int32(2 * totalUsedCPUOfAllPods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/graceful_shutdown_test.go

    		t.Fatalf("backend: invalid x509/key pair: %v", err)
    	}
    	backendServer.TLS = &tls.Config{
    		Certificates: []tls.Certificate{backendCert},
    		NextProtos:   []string{http2.NextProtoTLS},
    	}
    	backendServer.StartTLS()
    	defer backendServer.Close()
    
    	// set up the client
    	clientCACertPool := x509.NewCertPool()
    	clientCACertPool.AppendCertsFromPEM(backendCrt)
    	clientTLSConfig := &tls.Config{
    		RootCAs:    clientCACertPool,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    func doAppend(rb *reorderBuffer, out []byte, p int) []byte {
    	rb.setFlusher(out, appendFlush)
    	src, n := rb.src, rb.nsrc
    	doMerge := len(out) > 0
    	if q := src.skipContinuationBytes(p); q > p {
    		// Move leading non-starters to destination.
    		rb.out = src.appendSlice(rb.out, p, q)
    		p = q
    		doMerge = patchTail(rb)
    	}
    	fd := &rb.f
    	if doMerge {
    		var info Properties
    		if p < n {
    			info = fd.info(src, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/composition.go

    		*ss = 0
    		return ssOverflow
    	}
    	// The Stream-Safe Text Processing prescribes that the counting can stop
    	// as soon as a starter is encountered. However, there are some starters,
    	// like Jamo V and T, that can combine with other runes, leaving their
    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/util_test.go

    func TestIsConnectionReset(t *testing.T) {
    	ts := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		fmt.Fprintf(w, "Hello, %s", r.Proto)
    	}))
    	ts.EnableHTTP2 = true
    	ts.StartTLS()
    	defer ts.Close()
    
    	u, err := url.Parse(ts.URL)
    	if err != nil {
    		t.Fatalf("failed to parse URL from %q: %v", ts.URL, err)
    	}
    	lb := newLB(t, u.Host)
    	defer lb.ln.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. docs/sts/ldap.md

    MINIO_IDENTITY_LDAP_SERVER_STARTTLS         (on|off)    use StartTLS connection to AD/LDAP server, defaults to "off"
    ```
    
    The server address variable is _required_. TLS is assumed to be on by default. The port in the server address is optional and defaults to 636 if not provided.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    func doAppend(rb *reorderBuffer, out []byte, p int) []byte {
    	rb.setFlusher(out, appendFlush)
    	src, n := rb.src, rb.nsrc
    	doMerge := len(out) > 0
    	if q := src.skipContinuationBytes(p); q > p {
    		// Move leading non-starters to destination.
    		rb.out = src.appendSlice(rb.out, p, q)
    		p = q
    		doMerge = patchTail(rb)
    	}
    	fd := &rb.f
    	if doMerge {
    		var info Properties
    		if p < n {
    			info = fd.info(src, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. src/crypto/x509/verify_test.go

    		roots:         []string{startComRoot},
    		currentTime:   1302726541,
    
    		// The StartCom root is not trusted by Windows when the default
    		// ServerAuth EKU is requested.
    		systemSkip: true,
    
    		expectedChains: [][]string{
    			{"dnssec-exp", "StartCom Class 1", "StartCom Certification Authority"},
    		},
    	},
    	{
    		name:          "dnssec-exp/AnyEKU",
    		leaf:          dnssecExpLeaf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top