Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,261 for supportsL7 (0.25 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/internal/buildcfg/cfg_test.go

    	g, _ := ParseGoarm64("v9.3")
    
    	if !g.Supports("v9.3") {
    		t.Errorf("Wrong goarm64Features.Supports for v9.3, v9.3")
    	}
    
    	if g.Supports("v9.4") {
    		t.Errorf("Wrong goarm64Features.Supports for v9.3, v9.4")
    	}
    
    	if !g.Supports("v8.8") {
    		t.Errorf("Wrong goarm64Features.Supports for v9.3, v8.8")
    	}
    
    	if g.Supports("v8.9") {
    		t.Errorf("Wrong goarm64Features.Supports for v9.3, v8.9")
    	}
    
    	if g.Supports(",lse") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_test.go

    			success:    false,
    			supports:   false,
    			queryParam: QueryParamFieldValidation,
    		},
    	}
    
    	for name, doc := range map[string]*openapi_v2.Document{
    		"inline parameters": docInlineParams,
    		"shared parameters": docSharedParams,
    	} {
    		t.Run(name, func(t *testing.T) {
    			for _, test := range tests {
    				supports, err := supportsQueryParam(doc, test.gvk, test.queryParam)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    		return fmt.Errorf("failed to download openapi: %v", err)
    	}
    	supports, err := supportsQueryParam(oapi, gvk, v.queryParam)
    	if err != nil {
    		// We assume that we couldn't find the type, then check for namespace:
    		supports, _ = supportsQueryParam(oapi, schema.GroupVersionKind{Group: "", Version: "v1", Kind: "Namespace"}, v.queryParam)
    		// If namespace supports the query param, then we will support the query param for CRDs only.
    		if supports {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. 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)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/JUnitComparisonTestFailureMapperTest.groovy

            def comparisonFailure = new CustomComparisonFailure("message", "expected", "actual")
            def mapper = new JUnitComparisonTestFailureMapper()
    
            when:
            def supports = mapper.supports(comparisonFailure.class)
            then:
            supports
    
            when:
            def failure = mapper.map(comparisonFailure, null)
            then:
            failure.details.expected == "expected"
            failure.details.actual == "actual"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/TestFailureMapper.java

         * <p>
         * See {@link #supports(Class)} for more information.
         *
         * @return a list of fully qualified class names that this mapper supports
         */
        protected abstract List<String> getSupportedClassNames();
    
        /**
         * Maps the given {@link Throwable} to a {@link TestFailure}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/SortedMultiset.java

       * optionally including {@code upperBound} itself. The returned multiset is a view of this
       * multiset, so changes to one will be reflected in the other. The returned multiset supports all
       * operations that this multiset supports.
       *
       * <p>The returned multiset will throw an {@link IllegalArgumentException} on attempts to add
       * elements outside its range.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/SortedMultiset.java

       * optionally including {@code upperBound} itself. The returned multiset is a view of this
       * multiset, so changes to one will be reflected in the other. The returned multiset supports all
       * operations that this multiset supports.
       *
       * <p>The returned multiset will throw an {@link IllegalArgumentException} on attempts to add
       * elements outside its range.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. pkg/proxy/conntrack/fake.go

    		return fmt.Errorf("FakeInterface currently only supports UDP")
    	}
    
    	fake.ClearedIPs.Insert(ip)
    	return nil
    }
    
    // ClearEntriesForPort is part of Interface
    func (fake *FakeInterface) ClearEntriesForPort(port int, isIPv6 bool, protocol v1.Protocol) error {
    	if protocol != v1.ProtocolUDP {
    		return fmt.Errorf("FakeInterface currently only supports UDP")
    	}
    
    	fake.ClearedPorts.Insert(port)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 04:15:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top