Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,433 for protocol2a (0.21 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/transport/RepositoryTransportFactoryTest.groovy

            then:
            InvalidUserDataException e = thrown()
            e.message == "Not a supported repository protocol 'unsupported': valid protocols are [protocol1, protocol2a, protocol2b]"
        }
    
        def "cannot creates a transport for mixed url scheme"() {
            when:
            createTransport(['protocol1', 'protocol2b'] as Set, null, [])
    
            then:
            InvalidUserDataException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Protocol.kt

            HTTP_1_0.protocol -> HTTP_1_0
            HTTP_1_1.protocol -> HTTP_1_1
            H2_PRIOR_KNOWLEDGE.protocol -> H2_PRIOR_KNOWLEDGE
            HTTP_2.protocol -> HTTP_2
            SPDY_3.protocol -> SPDY_3
            QUIC.protocol -> QUIC
            else -> {
              // Support HTTP3 draft like h3-29
              if (protocol.startsWith(HTTP_3.protocol)) HTTP_3 else throw IOException("Unexpected protocol: $protocol")
            }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. releasenotes/notes/protocol-detection-timeout.yaml

    issue:
    - 24379
    releaseNotes:
    - |
      **Removed** the protocol detection timeout by default, reducing traffic failures during slow connections.
    upgradeNotes:
    - title: Protocol Detection Timeout Changes
      content: |
        In order to support permissive mTLS traffic as well as [automatic protocol detection](istio.io/latest/docs/ops/configuration/traffic-management/protocol-selection/#automatic-protocol-selection),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol.go

    	filteredProtocols := []string{}
    	for _, protocolHeader := range req.Header[protocolHeader] {
    		for _, protocol := range strings.Split(protocolHeader, ",") {
    			protocol = strings.TrimSpace(protocol)
    
    			if !strings.HasPrefix(protocol, bearerProtocolPrefix) {
    				filteredProtocols = append(filteredProtocols, protocol)
    				continue
    			}
    
    			if sawTokenProtocol {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/protocol.go

    // limitations under the License.
    
    // An example implementation of a client.
    
    package forwarder
    
    import (
    	"context"
    
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    type protocol interface {
    	ForwardEcho(ctx context.Context, c *Config) (*proto.ForwardEchoResponse, error)
    	Close() error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 10 18:09:08 UTC 2022
    - 834 bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/instance.go

    type Instance struct {
    	e           *executor
    	protocolMap map[scheme.Instance]protocol
    	protocols   []protocol
    }
    
    // New creates a new forwarder Instance.
    func New() *Instance {
    	var protocols []protocol
    	add := func(p protocol) protocol {
    		protocols = append(protocols, p)
    		return p
    	}
    
    	// Create the protocols and populate the map.
    	e := newExecutor()
    	protocolMap := make(map[scheme.Instance]protocol)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/WorkerLogEventListenerTest.groovy

            listener.withWorkerLoggingProtocol(protocol2) {
                listener.onOutput(logEvent2)
                listener.onOutput(logEvent3)
            }
            listener.onOutput(logEvent4)
    
            then:
            1 * protocol1.sendOutputEvent(logEvent1)
            1 * protocol2.sendOutputEvent(logEvent2)
            1 * protocol2.sendOutputEvent(logEvent3)
            1 * protocol1.sendOutputEvent(logEvent4)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/deployment/services.go

    			}
    
    			// Default protocol is TCP
    			protocol := sPort.Protocol
    			if protocol == "" {
    				protocol = core_v1.ProtocolTCP
    			}
    
    			// Appending the service information for the Port/Protocol combination
    			portMap[sPort.Port][protocol] = append(portMap[sPort.Port][protocol], swn.Name)
    		}
    	}
    
    	return portMap
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/serviceentry-missing-addresses-protocol.yaml

        - 10.0.0.1
      exportTo:
        - "."
      ports:
        - number: 443
          name: https
          protocol: HTTPS
      location: MESH_EXTERNAL
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-entry-test-03 # Expected: validation error missing addresses and protocol
      namespace: default
    spec:
      hosts:
        - 'istio.io'
      exportTo:
        - "."
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

              val protocol = peerProtocols[i] as String
              if (protocol in protocols) {
                selected = protocol
                return selected
              }
            }
            selected = protocols[0] // On no intersection, try peer's first protocol.
            return selected
          } else if ((methodName == "protocolSelected" || methodName == "selected") && callArgs.size == 1) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top