Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for negotitate (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate.go

    			streamMediaTypes = append(streamMediaTypes, info.MediaType+";stream=watch")
    		}
    	}
    	return mediaTypes, streamMediaTypes
    }
    
    // NegotiateOutputMediaType negotiates the output structured media type and a serializer, or
    // returns an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Connection.kt

     * to a remote host. Newer TLS options are quite useful:
     *
     *  * Server Name Indication (SNI) enables one IP address to negotiate secure connections for
     *    multiple domain names.
     *
     *  * Application Layer Protocol Negotiation (ALPN) enables the HTTPS port (443) to be used to
     *    negotiate HTTP/2.
     *
     * Unfortunately, older HTTPS servers refuse to connect when such options are presented. Rather than
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/negotiate.go

    David Eads <******@****.***> 1603998691 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 29 19:55:06 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    // RoundTripper. The primary use of this method is to support proxying upgradable connections.
    // For this reason this method will prefer to negotiate http/1.1 if the URL scheme is https.
    // If you wish to ensure ALPN negotiates http2 then set NextProto=[]string{"http2"} in the
    // TLSConfig of the http.Transport
    func DialURL(ctx context.Context, url *url.URL, transport http.RoundTripper) (net.Conn, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

            super(tc.getConfig(), SMB_COM_SESSION_SETUP_ANDX, andx);
            this.negotiated = negotiated;
            this.capabilities = negotiated.getNegotiatedCapabilities();
            ServerData server = negotiated.getServerData();
            if ( server.security == SmbConstants.SECURITY_USER ) {
                if ( cred instanceof NtlmPasswordAuthenticator ) {
                    NtlmPasswordAuthenticator a = (NtlmPasswordAuthenticator) cred;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 17 10:20:23 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/SmbNegotiationResponse.java

    
        /**
         * @param resp
         */
        void setupResponse ( Response resp );
    
    
        /**
         * @return whether signing has been negotiated
         */
        boolean isSigningNegotiated ();
    
    
        /**
         * @param cap
         * @return whether capability is negotiated
         */
        boolean haveCapabilitiy ( int cap );
    
    
        /**
         * @return the send buffer size
         */
        int getSendBufferSize ();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/httpstream_test.go

    		}
    
    		for _, p := range test.clientProtocols {
    			req.Header.Add(HeaderProtocolVersion, p)
    		}
    
    		w := newResponseWriter()
    		negotiated, err := Handshake(req, w, test.serverProtocols)
    
    		// verify negotiated protocol
    		if e, a := test.expectedProtocol, negotiated; e != a {
    			t.Errorf("%s: protocol: expected %q, got %q", name, e, a)
    		}
    
    		if test.expectError {
    			if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      internal const val B0_FLAG_FIN = 128
    
      /** Byte 0 reserved flag 1. Must be 0 unless negotiated otherwise. */
      internal const val B0_FLAG_RSV1 = 64
    
      /** Byte 0 reserved flag 2. Must be 0 unless negotiated otherwise. */
      internal const val B0_FLAG_RSV2 = 32
    
      /** Byte 0 reserved flag 3. Must be 0 unless negotiated otherwise. */
      internal const val B0_FLAG_RSV3 = 16
    
      /** Byte 0 mask for the frame opcode. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbUnsupportedOperationException.java

         */
        private static final long serialVersionUID = -5576981906065713710L;
    
    
        /**
         * 
         */
        public SmbUnsupportedOperationException () {
            super("Operation is not supported with the negotiated capabilities");
        }
    
    
        /**
         * 
         * @param msg
         */
        public SmbUnsupportedOperationException ( String msg ) {
            super(msg);
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/negotiated_codec.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package serializer
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // TODO: We should split negotiated serializers that we can change versions on from those we can change
    // serialization formats on
    type negotiatedSerializerWrapper struct {
    	info runtime.SerializerInfo
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1.3K bytes
    - Viewed (0)
Back to top