Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for negotitate (0.23 sec)

  1. src/crypto/tls/handshake_client.go

    		supportedVersions:            supportedVersions,
    	}
    
    	// The version at the beginning of the ClientHello was capped at TLS 1.2
    	// for compatibility reasons. The supported_versions extension is used
    	// to negotiate versions now. See RFC 8446, Section 4.2.1.
    	if hello.vers > VersionTLS12 {
    		hello.vers = VersionTLS12
    	}
    
    	if c.handshakes > 0 {
    		hello.secureRenegotiation = c.clientFinished[:]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	for i := range conn.channels {
    		rwc[i] = conn.channels[i]
    	}
    	return conn.selectedProtocol, rwc, nil
    }
    
    func (conn *Conn) initialize(ws *websocket.Conn) {
    	negotiated := ws.Config().Protocol
    	conn.selectedProtocol = negotiated[0]
    	p := conn.protocols[conn.selectedProtocol]
    	if p.Binary {
    		conn.codec = rawCodec
    	} else {
    		conn.codec = base64Codec
    	}
    	conn.ws = ws
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. cmd/object-lambda-handlers.go

    	"Service Unavailable":             http.StatusServiceUnavailable,
    	"Gateway Timeout":                 http.StatusGatewayTimeout,
    	"HTTP Version Not Supported":      http.StatusHTTPVersionNotSupported,
    	"Variant Also Negotiates":         http.StatusVariantAlsoNegotiates,
    	"Insufficient Storage":            http.StatusInsufficientStorage,
    	"Loop Detected":                   http.StatusLoopDetected,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

         * both internally supplied passwords are equal. If one <tt>NtlmPasswordAuthentication</tt> object has external
         * hashes (meaning negotiated via NTLM HTTP Authentication) and the other does not they will not be equal. This is
         * technically not correct however the server 8 byte challenge would be required to compute and compare the password
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_1x.md

       OkHttp.
     * Expose the transport ("http/1.1", "spdy/3", etc.) via magic request headers.
       Use `X-Android-Transports` to write the preferred transports and
       `X-Android-Selected-Transport` to read the negotiated transport.
    
    
    ## Version 1.0.2
    
    _2013-05-11_
    
     * Fix: Remove use of Java 6-only APIs.
     * Fix: Properly handle exceptions from `NetworkInterface` when querying MTU.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_4x.md

        memory if web socket compression is negotiated but not used.
    
    
    ## Version 4.5.0-RC1
    
    _2020-03-17_
    
    **This release candidate turns on web socket compression.**
    
    The [spec][rfc_7692] includes a sophisticated mechanism for client and server to negotiate
    compression features. We strive to offer great performance in our default configuration and so we're
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/handler.go

    	// all requests which are not /apis or /apis/.  We need those calls to fall through behind gorestful for proper delegation.  Trying to
    	// register for a pattern which includes everything behind it doesn't work because gorestful negotiates for verbs and content encoding
    	// and all those things go crazy when gorestful really just needs to pass through.  In addition, openapi enforces unique verb constraints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFileOutputStream.java

                log.debug("No support or SMB signing is enabled, not enabling large writes");
                this.writeSizeFile = this.writeSize;
            }
    
            if ( log.isDebugEnabled() ) {
                log.debug("Negotiated file write size is " + this.writeSizeFile);
            }
    
            if ( this.useNTSmbs ) {
                this.reqx = new SmbComWriteAndX(th.getConfig());
                this.rspx = new SmbComWriteAndXResponse(th.getConfig());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // any recognized source. The returned codec will always encode output to JSON. If a type is not
    // found in the list of versions an error will be returned.
    //
    // This method is deprecated - clients and servers should negotiate a serializer by mime-type and
    // invoke CodecForVersions. Callers that need only to read data should use UniversalDecoder().
    //
    // TODO: make this call exist only in pkg/api, and initialize it with the set of default versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbSession.java

                } while (retry-- > 0);
    
                dc_list_expiration = now + 1000 * 60 * 15; /* 15 min */
    }
    
            throw new UnknownHostException(
                    "Failed to negotiate with a suitable domain controller for " + DOMAIN );
        }
    
        public static byte[] getChallenge( UniAddress dc )
                    throws SmbException, UnknownHostException {
            return getChallenge(dc, 0);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
Back to top