Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 364 for supportsL7 (0.17 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. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	// initialzation, it can flip the support at runtime.
    	Supports(feature storage.Feature) bool
    	// CheckClient works with etcd client to recalcualte feature support and cache it internally.
    	// All etcd clients should support feature to cause `Supports` return true.
    	// If client A supports and client B doesn't support the feature, the `Supports` will
    	// first return true at client A initializtion and then return false on client B
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/internal/platform/supported.go

    	GOOS, GOARCH string
    }
    
    func (p OSArch) String() string {
    	return p.GOOS + "/" + p.GOARCH
    }
    
    // RaceDetectorSupported reports whether goos/goarch supports the race
    // detector. There is a copy of this function in cmd/dist/test.go.
    // Race detector only supports 48-bit VMA on arm64. But it will always
    // return true for arm64, because we don't have VMA size information during
    // the compile time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/quota_linux_test.go

    	}
    	return fail
    }
    
    func runCaseDisabled(t *testing.T, testcase quotaTestCase, seq int) bool {
    	var err error
    	var supports bool
    	switch testcase.op {
    	case "Supports":
    		if supports, _ = fakeSupportsQuotas(testcase.path); supports {
    			t.Errorf("Case %v (%s, %s, %v) supports quotas but shouldn't", seq, testcase.name, testcase.path, false)
    			return true
    		}
    		return false
    	case "Set":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        GradleExecuter executer(TestDirectoryProvider testDirectoryProvider, IntegrationTestBuildContext buildContext);
    
        /**
         * Returns true if this distribution supports the given JVM.
         */
        boolean worksWith(Jvm jvm);
    
        /**
         * Returns true if this distribution supports the given Operating system.
         */
        boolean worksWith(OperatingSystem os);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.testName, func(t *testing.T) {
    			var testFeatureSupportChecker FeatureSupportChecker = newDefaultFeatureSupportChecker()
    
    			supported := testFeatureSupportChecker.Supports(tt.featureName)
    
    			assert.Equal(t, tt.expectedResult, supported)
    		})
    	}
    }
    
    func TestSupportsRequestWatchProgress(t *testing.T) {
    	type testCase struct {
    		endpointsVersion []mockEndpointVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/crypto/x509/45990.md

    [CreateCertificateRequest] now correct supports RSA-PSS signature algorithms.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 317 bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/crypto/tls/63369.md

    The TLS client now supports the Encrypted Client Hello [draft specification](https://www.ietf.org/archive/id/draft-ietf-tls-esni-18.html).
    This feature can be enabled by setting the [Config.EncryptedClientHelloConfigList]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 296 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/features/features.go

    	if enabled, ok := featureList[featureName]; ok {
    		return enabled
    	}
    	return InitFeatureGates[featureName].Default
    }
    
    // Supports indicates whether a feature name is supported on the given
    // feature set
    func Supports(featureList FeatureList, featureName string) bool {
    	for k := range featureList {
    		if featureName == k {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Iterables.java

       * traverses the elements in {@code a}, followed by the elements in {@code b}. The source
       * iterators are not polled until necessary.
       *
       * <p>The returned iterable's iterator supports {@code remove()} when the corresponding input
       * iterator supports it.
       *
       * <p><b>Java 8+ users:</b> The {@code Stream} equivalent of this method is {@code
       * Stream.concat(a, b)}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top