Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for supportsL7 (0.31 sec)

  1. tests/integration/ambient/baseline_test.go

    		if !addresses.Contains(response.IP) {
    			return fmt.Errorf("expected original source (%v) to be propogated, but got %v", addresses.UnsortedList(), response.IP)
    		}
    		return nil
    	})
    }
    
    func supportsL7(opt echo.CallOptions, src, dst echo.Instance) bool {
    	s := src.Config().HasSidecar()
    	d := dst.Config().HasSidecar() || dst.Config().HasAnyWaypointProxy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    	config := testConfig.Clone()
    	config.NextProtos = []string{"proto1", "proto2"}
    
    	test := &serverTest{
    		name: "ALPN",
    		// Note that this needs OpenSSL 1.0.2 because that is the first
    		// version that supports the -alpn flag.
    		command: []string{"openssl", "s_client", "-alpn", "proto2,proto1", "-cipher", "ECDHE-RSA-CHACHA20-POLY1305", "-ciphersuites", "TLS_CHACHA20_POLY1305_SHA256"},
    		config:  config,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (IsReducedTailOfShape $rhs, $lhs),
          (IsLastDimEqualToNumElements $input, $rhs),
          (HasOneUse $lhs),
          // Restrict operands to have at most rank 4 because TFLite binary
          // kernel supports up to 4D broadcast.
          (HasRankAtMost<4> $input),
          (HasRankAtMost<4> $lhs),
          (HasRankAtMost<4> $rhs),
          (IsDefinedByFullyConnectedOp $input)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	match := opts.ResourceVersionMatch
    	consistentListFromCacheEnabled := utilfeature.DefaultFeatureGate.Enabled(features.ConsistentListFromCache)
    	requestWatchProgressSupported := etcdfeature.DefaultFeatureSupportChecker.Supports(storage.RequestWatchProgress)
    
    	// Serve consistent reads from storage if ConsistentListFromCache is disabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. configure.py

            'code.\nPlease note that each additional compute capability '
            'significantly increases your build time and binary size, and that '
            'TensorFlow only supports compute capabilities >= 3.5 [Default is: '
            '%s]: ' % default_cuda_compute_capabilities)
        tf_cuda_compute_capabilities = get_from_env_or_user_or_default(
            environ_cp, 'TF_CUDA_COMPUTE_CAPABILITIES',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  6. src/cmd/link/internal/ld/lib.go

    	}
    
    	if *flagInterpreter != "" {
    		// Many linkers support both -I and the --dynamic-linker flags
    		// to set the ELF interpreter, but lld only supports
    		// --dynamic-linker so prefer that (ld on very old Solaris only
    		// supports -I but that seems less important).
    		argv = append(argv, fmt.Sprintf("-Wl,--dynamic-linker,%s", *flagInterpreter))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

       * iterator's own {@code remove} operation, or through the {@code setValue} operation on a map
       * entry returned by the iterator), the results of the iteration are undefined.
       *
       * <p>The multimap supports mapping removal, which removes the corresponding mapping from the map.
       * It does not support any operations which might add mappings, such as {@code put}, {@code
       * putAll} or {@code replaceValues}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client_test.go

    	config := testConfig.Clone()
    	config.NextProtos = []string{"proto2", "proto1"}
    
    	test := &clientTest{
    		name: "ALPN",
    		// Note that this needs OpenSSL 1.0.2 because that is the first
    		// version that supports the -alpn flag.
    		args:   []string{"-alpn", "proto1,proto2"},
    		config: config,
    		validate: func(state ConnectionState) error {
    			// The server's preferences should override the client.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    type Requirements struct {
    	// pruning is the pruning at which the requirement graph is computed.
    	//
    	// If unpruned, the graph includes all transitive requirements regardless
    	// of whether the requiring module supports pruning.
    	//
    	// If pruned, the graph includes only the root modules, the explicit
    	// requirements of those root modules, and the transitive requirements of only
    	// the root modules that do not support pruning.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// Symlink container logs to the legacy container log location for cluster logging
    	// support.
    	// TODO(random-liu): Remove this after cluster logging supports CRI container log path.
    	containerMeta := containerConfig.GetMetadata()
    	sandboxMeta := podSandboxConfig.GetMetadata()
    	legacySymlink := legacyLogSymlink(containerID, containerMeta.Name, sandboxMeta.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top