Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for sigset (0.09 sec)

  1. src/crypto/tls/handshake_server.go

    	// If we received a client cert in response to our certificate request message,
    	// the client will send us a certificateVerifyMsg immediately after the
    	// clientKeyExchangeMsg. This message is a digest of all preceding
    	// handshake-layer messages that is signed using the private key corresponding
    	// to the client's certificate. This allows us to verify that the client is in
    	// possession of the private key of the certificate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    			image:          "registry.k8s.io/coredns/coredns:v1.11.1",
    			deploymentSize: 2,
    			wantVersion:    "",
    			wantErr:        true,
    		},
    		{
    			name:           "with digest",
    			image:          "registry.k8s.io/coredns/coredns:v1.11.1@sha256:a0ead06651cf580044aeb0a0feba63591858fb2e43ade8c9dea45a6a89ae7e5e",
    			deploymentSize: 1,
    			wantVersion:    "v1.11.1",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. src/go/types/stmt.go

    		// Don't go inside function literal scopes a second time;
    		// they are handled explicitly by funcBody.
    		if !scope.isFunc {
    			check.usage(scope)
    		}
    	}
    }
    
    // stmtContext is a bitset describing which
    // control-flow statements are permissible,
    // and provides additional context information
    // for better error messages.
    type stmtContext uint
    
    const (
    	// permissible control-flow statements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stmt.go

    		// Don't go inside function literal scopes a second time;
    		// they are handled explicitly by funcBody.
    		if !scope.isFunc {
    			check.usage(scope)
    		}
    	}
    }
    
    // stmtContext is a bitset describing which
    // control-flow statements are permissible,
    // and provides additional context information
    // for better error messages.
    type stmtContext uint
    
    const (
    	// permissible control-flow statements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/net/http/request_test.go

    	{base64.StdEncoding.EncodeToString([]byte("Aladdin:open sesame")), "", "", false},
    	{"Basic ", "", "", false},
    	{"Basic Aladdin:open sesame", "", "", false},
    	{`Digest username="Aladdin"`, "", "", false},
    }
    
    func TestParseBasicAuth(t *testing.T) {
    	for _, tt := range parseBasicAuthTests {
    		r, _ := NewRequest("GET", "http://example.com/", nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top