Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 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. 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. 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)
  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. releasenotes/notes/envoy-stats-proxy-admin-port.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 09:33:19 UTC 2024
    - 198 bytes
    - Viewed (0)
  8. 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)
  9. src/os/error.go

    // that a file or directory already exists. It is satisfied by [ErrExist] as
    // well as some syscall errors.
    //
    // This function predates [errors.Is]. It only supports errors returned by
    // the os package. New code should use errors.Is(err, fs.ErrExist).
    func IsExist(err error) bool {
    	return underlyingErrorIs(err, ErrExist)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. 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)
Back to top