Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for negotitate (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go

    	"k8s.io/component-base/tracing"
    )
    
    // StreamObject performs input stream negotiation from a ResourceStreamer and writes that to the response.
    // If the client requests a websocket upgrade, negotiate for a websocket reader protocol (because many
    // browser clients cannot easily handle binary streaming protocols).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpFilter.java

            }
        }
    
    
        @Override
        public void destroy () {}
    
    
        /**
         * This method simply calls <tt>negotiate( req, resp, false )</tt>
         * and then <tt>chain.doFilter</tt>. You can override and call
         * negotiate manually to achive a variety of different behavior.
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

        public int getDialectIndex () {
            return this.dialectIndex;
        }
    
    
        /**
         * @return the negotiated capbilities
         */
        public int getNegotiatedCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * 
         * @return negotiated send buffer size
         */
        public int getNegotiatedSendBufferSize () {
            return this.snd_buf_size;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 15.4K bytes
    - Viewed (0)
  4. src/crypto/tls/bogo_config.json

            "TLS-ECH-Client-Reject-NoClientCertificate-TLS12": "We won't attempt to negotiate 1.2 if ECH is enabled",
            "TLS-ECH-Client-Reject-TLS12": "We won't attempt to negotiate 1.2 if ECH is enabled",
            "TLS-ECH-Client-TLS12-RejectRetryConfigs": "We won't attempt to negotiate 1.2 if ECH is enabled",
            "TLS-ECH-Client-Rejected-OverrideName-TLS12": "We won't attempt to negotiate 1.2 if ECH is enabled",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                    break;
                } else if (currentAuthMethod.startsWith("Negotiate")) {
                    if (currentAuthMethod.length() == 9) {
                        authMethod = "Negotiate";
                        break;
                    }
                    if (currentAuthMethod.indexOf(' ') != 9) continue;
                    authMethod = "Negotiate";
                    authorization = currentAuthMethod.substring(10).trim();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K 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