Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,482 for protocol1 (0.2 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. 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)
  3. pkg/client/tests/remotecommand_test.go

    	conn, protocol, err := dialer.Dial("protocol1")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if conn != upgrader.conn {
    		t.Errorf("unexpected connection: %#v", conn)
    	}
    	if !upgrader.called {
    		t.Errorf("request not called")
    	}
    	_ = protocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    			return fmt.Errorf("%s: got ServerName %s, want %s", errorType, c.ServerName, "example.golang")
    		}
    		if c.NegotiatedProtocol != "protocol1" {
    			return fmt.Errorf("%s: got NegotiatedProtocol %s, want %s", errorType, c.NegotiatedProtocol, "protocol1")
    		}
    		if c.CipherSuite == 0 {
    			return fmt.Errorf("%s: got CipherSuite 0, want non-zero", errorType)
    		}
    		wantDidResume := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/util/protoconv/protoconv.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package protoconv
    
    import (
    	"fmt"
    
    	udpa "github.com/cncf/xds/go/udpa/type/v1"
    	"google.golang.org/protobuf/encoding/prototext"
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/types/known/anypb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 04:55:40 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. 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)
Back to top