Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 435 for supportsL7 (0.14 sec)

  1. 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)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/Nested.java

     * This allows tracking behavior such as {@link org.gradle.api.Action}s as task inputs.</p>
     *
     * <p>This annotations supports {@link org.gradle.api.provider.Provider} values by treating the result of {@link org.gradle.api.provider.Provider#get()} as a nested bean.</p>
     *
     * <p>This annotation supports {@link Iterable} values by treating each element as a separate nested bean.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 27 22:03:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

         * It will cause dependency resolution to fail if no version acceptable by this clause can be selected.
         * This term supports dynamic versions.
         * <p>
         * This will override a previous {@link #require(String) require} declaration.
         * <p>
         * This clears any set rejected versions.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tac_filter.proto

      // `function_name_pattern` supports regex matching.
      string function_name_pattern = 1;
      FunctionFilterType filter_type = 2;
    }
    
    // Op filter is to filter out ops that user wants to run. Ops with this filter
    // run on TFLite CPU.
    message OpFilter {
      // This name corresponds to the mlir::Location of the tensor.
      // `op_name_pattern` supports regex matching.
      string op_name_pattern = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[rich-version-constraints]]
    = Declaring Rich Versions
    
    Gradle supports a rich model for declaring versions, which allows to combine different level of version information.
    The terms and their meaning are explained below, from the strongest to the weakest:
    
    [[sec:strict-version]]
    `strictly`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. releasenotes/notes/min-k8-ver-for-1.8.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 28814
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 12 20:28:04 UTC 2020
    - 160 bytes
    - Viewed (0)
  10. docs/kms/IAM.md

    # KMS IAM/Config Encryption
    
    MinIO supports encrypting config, IAM assets with KMS provided keys. If the KMS is not enabled, MinIO will store the config, IAM data as plain text erasure coded in its backend.
    
    ## MinIO KMS Quick Start
    
    MinIO supports two ways of encrypting IAM and configuration data.
    You can either use KES - together with an external KMS - or, much simpler,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top