Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for supportsL7 (0.16 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/internal/syscall/windows/version_windows.go

    }
    
    // SupportTCPKeepAliveCount indicates whether TCP_KEEPCNT is supported.
    // supports TCP_KEEPCNT.
    // The minimal requirement is Windows 10.0.15063.
    func SupportTCPKeepAliveCount() bool {
    	initTCPKeepAlive()
    	return supportTCPKeepAliveCount
    }
    
    // SupportTCPInitialRTONoSYNRetransmissions indicates whether the current
    // Windows version supports the TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS.
    // The minimal requirement is Windows 10.0.16299.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/ToolChainRequirement.java

        SWIFTC_3,
        // Any Swift 4.x compiler
        SWIFTC_4,
        // Any available Swift compiler <= 4
        SWIFTC_4_OR_OLDER,
        // Any Swift 5.x compiler
        SWIFTC_5,
        // Supports building 32-bit binaries
        SUPPORTS_32,
        // Supports building both 32-bit and 64-bit binaries
        SUPPORTS_32_AND_64
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. 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)
Back to top