Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,482 for protocol1 (0.15 sec)

  1. releasenotes/notes/tls-inbound-all-protocols.yaml

    John Howard <******@****.***> 1612368962 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 03 16:16:02 UTC 2021
    - 195 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-1.yaml

        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service is mixed with port protocols, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: mixed-port-protocol
      namespace: my-namespace
    spec:
      type: ClusterIP
      selector:
        app: my-service
      ports:
      - name: tcp
        protocol: TCP
        port: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

       */
      var protocols: List<Protocol> = immutableListOf(Protocol.HTTP_2, Protocol.HTTP_1_1)
        set(value) {
          val protocolList = value.toImmutableList()
          require(Protocol.H2_PRIOR_KNOWLEDGE !in protocolList || protocolList.size == 1) {
            "protocols containing h2_prior_knowledge cannot use other protocols: $protocolList"
          }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-2.yaml

        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service is mixed with port protocols, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: mixed-port-protocol
      namespace: my-namespace
    spec:
      type: ClusterIP
      selector:
        app: my-service
      ports:
      - name: http
        protocol: TCP
        port: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/platform/android/ConscryptSocketAdapter.kt

        sslSocket: SSLSocket,
        hostname: String?,
        protocols: List<Protocol>,
      ) {
        // No TLS extensions if the socket class is custom.
        if (matchesSocket(sslSocket)) {
          // Enable session tickets.
          Conscrypt.setUseSessionTickets(sslSocket, true)
    
          // Enable ALPN.
          val names = Platform.alpnProtocolNames(protocols)
          Conscrypt.setApplicationProtocols(sslSocket, names.toTypedArray())
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/DeprecatedTLSVersionDependencyResolutionIntegrationTest.groovy

                    anyOf(
                        startsWith("The server does not support the client's requested TLS protocol versions:"),
                        startsWith("The server may not support the client's requested TLS protocol versions:") // Windows
                    ),
                    containsString("You may need to configure the client to allow other protocols to be used."),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_insecure_issue63845.txt

    # Regression test for https://go.dev/issue/63845:
    # If 'git ls-remote' fails for all secure protocols,
    # we should fail instead of falling back to an arbitrary protocol.
    #
    # Note that this test does not use the local vcweb test server
    # (vcs-test.golang.org), because the hook for redirecting to that
    # server bypasses the "ping to determine protocol" logic
    # in cmd/go/internal/vcs.
    
    [!net:golang.org] skip
    [!git] skip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 21:10:03 UTC 2023
    - 908 bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * @param protocols the protocols to use, in order of preference. If the list contains
         *     [Protocol.H2_PRIOR_KNOWLEDGE] then that must be the only protocol and HTTPS URLs will not
         *     be supported. Otherwise the list must contain [Protocol.HTTP_1_1]. The list must
         *     not contain null or [Protocol.HTTP_1_0].
         */
        fun protocols(protocols: List<Protocol>) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn_test.go

    	tests := map[string]struct {
    		protocol string
    		expected bool
    	}{
    		"empty protocol returns false": {
    			protocol: "",
    			expected: false,
    		},
    		"not binary protocol returns false": {
    			protocol: "base64.channel.k8s.io",
    			expected: false,
    		},
    		"V1 protocol returns false": {
    			protocol: "channel.k8s.io",
    			expected: false,
    		},
    		"V4 protocol returns false": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. samples/open-telemetry/otel.yaml

    spec:
      ports:
        - name: grpc-opencensus
          port: 55678
          protocol: TCP
          targetPort: 55678
        - name: grpc-otlp # Default endpoint for OpenTelemetry receiver.
          port: 4317
          protocol: TCP
          targetPort: 4317
        - name: http-otlp # HTTP endpoint for OpenTelemetry receiver.
          port: 4318
          protocol: TCP
          targetPort: 4318
      selector:
        app: opentelemetry-collector
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top