Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for negotitate (0.27 sec)

  1. pkg/test/echo/common/model.go

    	ProxyProvision bool
    	// AcceptAnyALPN, if true, will make the server accept ANY ALPNs. This comes at the expense of
    	// allowing h2 negotiation and being able to detect the negotiated ALPN (as there is none), because
    	// Golang doesn't like us doing this (https://github.com/golang/go/issues/46310).
    	// This is useful when the server is simulating Envoy which does unconventional things with ALPN.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

            int start = bufferIndex;
    
            pathConsumed = readInt2( buffer, bufferIndex );
            bufferIndex += 2;
                /* Samba 2.2.8a will reply with Unicode paths even though
                 * ASCII is negotiated so we must use flags2 (probably
                 * should anyway).
                 */
            if((flags2 & FLAGS2_UNICODE) != 0) {
                pathConsumed /= 2;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5K bytes
    - Viewed (0)
  3. src/crypto/tls/prf.go

    // Master Secret is not negotiated and thus we wish to fail all key-material
    // export requests.
    func noEKMBecauseNoEMS(label string, context []byte, length int) ([]byte, error) {
    	return nil, errors.New("crypto/tls: ExportKeyingMaterial is unavailable when neither TLS 1.3 nor Extended Master Secret are negotiated; override with GODEBUG=tlsunsafeekm=1")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     * **reactive** authentication after receiving a challenge from either an origin web server or proxy
     * server.
     *
     * ## Preemptive Authentication
     *
     * To make HTTPS calls using an HTTP proxy server OkHttp must first negotiate a connection with
     * the proxy. This proxy connection is called a "TLS Tunnel" and is specified by
     * [RFC 2817][1]. The HTTP CONNECT request that creates this tunnel connection is special: it
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/http/NtlmSsp.java

    import jcifs.smb1.smb1.NtlmPasswordAuthentication;
    import jcifs.smb1.util.Base64;
    
    /**
     * This class is used internally by <tt>NtlmHttpFilter</tt>,
     * <tt>NtlmServlet</tt>, and <tt>NetworkExplorer</tt> to negiotiate password
     * hashes via NTLM SSP with MSIE. It might also be used directly by servlet
     * containers to incorporate similar functionality.
     * <p>
     * How NTLMSSP is used in conjunction with HTTP and MSIE clients is
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructuredscheme/scheme.go

    	"k8s.io/apimachinery/pkg/runtime/serializer/json"
    	"k8s.io/apimachinery/pkg/runtime/serializer/versioning"
    )
    
    var scheme = runtime.NewScheme()
    
    // NewUnstructuredNegotiatedSerializer returns a simple, negotiated serializer
    func NewUnstructuredNegotiatedSerializer() runtime.NegotiatedSerializer {
    	return unstructuredNegotiatedSerializer{
    		scheme:  scheme,
    		typer:   NewUnstructuredObjectTyper(),
    		creator: NewUnstructuredCreator(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 27 12:37:23 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream.go

    	if len(negotiatedProtocol) == 0 {
    		for i := range serverProtocols {
    			w.Header().Add(HeaderAcceptedProtocolVersions, serverProtocols[i])
    		}
    		err := fmt.Errorf("unable to upgrade: unable to negotiate protocol: client supports %v, server accepts %v", clientProtocols, serverProtocols)
    		http.Error(w, err.Error(), http.StatusForbidden)
    		return "", err
    	}
    
    	w.Header().Add(HeaderProtocolVersion, negotiatedProtocol)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/net/http/status.go

    	case StatusGatewayTimeout:
    		return "Gateway Timeout"
    	case StatusHTTPVersionNotSupported:
    		return "HTTP Version Not Supported"
    	case StatusVariantAlsoNegotiates:
    		return "Variant Also Negotiates"
    	case StatusInsufficientStorage:
    		return "Insufficient Storage"
    	case StatusLoopDetected:
    		return "Loop Detected"
    	case StatusNotExtended:
    		return "Not Extended"
    	case StatusNetworkAuthenticationRequired:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  9. docs/features/connections.md

    There may be many routes for a single address. For example, a webserver that is hosted in multiple datacenters may yield multiple IP addresses in its DNS response.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

        //      e.eaSize = readInt4( buffer, bufferIndex + 64 );
        //      e.shortNameLength = buffer[bufferIndex + 68] & 0xFF;
    
                /* With NT, the shortName is in Unicode regardless of what is negotiated.
                 */
    
        //      e.shortName = readString( buffer, bufferIndex + 70, e.shortNameLength );
                e.filename = readString( buffer, bufferIndex + 94, e.fileNameLength );
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
Back to top