Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 555 for plfeature (0.19 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu.go

    var options []option
    
    // Option names should be lower case. e.g. avx instead of AVX.
    type option struct {
    	Name      string
    	Feature   *bool
    	Specified bool // whether feature value was specified in GODEBUG
    	Enable    bool // whether feature should be enabled
    	Required  bool // whether feature is mandatory and can not be disabled
    }
    
    func processOptions() {
    	env := os.Getenv("GODEBUG")
    field:
    	for env != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

        testers.add(MultisetIteratorTester.class);
        testers.add(MultisetSerializationTester.class);
        return testers;
      }
    
      private static Set<Feature<?>> computeEntrySetFeatures(Set<Feature<?>> features) {
        Set<Feature<?>> derivedFeatures = new HashSet<>(features);
        derivedFeatures.remove(CollectionFeature.GENERAL_PURPOSE);
        derivedFeatures.remove(CollectionFeature.SUPPORTS_ADD);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            useLocation("<long>", 123)
    
            when:
            handler.featureUsed(deprecatedFeatureUsage('feature'))
    
            then:
            def events = outputEventListener.events
            events.size() == 1
            events[0].message == TextUtil.toPlatformLineSeparators('<long>: line 123\nfeature removal')
        }
    
        def 'logs deprecation warning once for each unique Gradle script location that appears first in the stack trace'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authorization.go

    		"File with Authorization Configuration to configure the authorizer chain."+
    		"Note: This feature is in Alpha since v1.29."+
    		"--feature-gate=StructuredAuthorizationConfiguration=true feature flag needs to be set to true for enabling the functionality."+
    		"This feature is mutually exclusive with the other --authorization-mode and --authorization-webhook-* flags.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    This works similar to <<feature_variants.adoc#sec::declare_feature_variants,defining optional feature variants>> in build scripts.
    We then use one of the `add` methods for adding dependencies to define which dependencies this optional feature needs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

            }
    
            then:
            checkDependencies()
        }
    
        // this test doesn't make sense with Gradle metadata
        @RequiredFeature(feature=GradleMetadataResolveRunner.GRADLE_METADATA, value="false")
        // only test one combination
        @RequiredFeature(feature=GradleMetadataResolveRunner.REPOSITORY_TYPE, value="ivy")
        def "maven module is not affected by rule requiring ivy module descriptor input"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

        @Override
        public void enableFeaturePreview(String name) {
            Feature feature = Feature.withName(name);
            if (feature.isActive()) {
                services.get(FeatureFlags.class).enable(feature);
            } else {
                DeprecationLogger
                    .deprecate("enableFeaturePreview('" + feature.name() + "')")
                    .withAdvice("The feature flag is no longer relevant, please remove it from your settings file.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. architecture/environments/operator.md

    cluster. Most K8s platform settings are necessarily component settings.
    The available features and the components that comprise each feature are as follows:
    
    | Feature | Components |
    |---------|------------|
    CRDs, and other cluster wide configs | Base
    Traffic Management | Pilot
    Security | Pilot
    Configuration management | Pilot
    AutoInjection | Pilot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/v1/default_plugins_test.go

    	"k8s.io/utils/ptr"
    )
    
    func TestApplyFeatureGates(t *testing.T) {
    	tests := []struct {
    		name       string
    		features   map[featuregate.Feature]bool
    		wantConfig *v1.Plugins
    	}{
    		{
    			name: "Feature gate DynamicResourceAllocation disabled",
    			features: map[featuregate.Feature]bool{
    				features.DynamicResourceAllocation: false,
    			},
    			wantConfig: &v1.Plugins{
    				MultiPoint: v1.PluginSet{
    					Enabled: []v1.Plugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top