Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,031 for plfeature (0.62 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedSpecInterceptor.groovy

    import java.lang.reflect.Field
    import java.util.concurrent.atomic.AtomicBoolean
    
    class ToBeFixedSpecInterceptor {
    
        private final String feature
    
        ToBeFixedSpecInterceptor(String feature) {
            this.feature = feature
        }
    
        void intercept(SpecElementInfo specElementInfo, String[] iterationMatchers) {
            if (specElementInfo instanceof SpecInfo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapTestSuiteBuilder.java

          Set<Feature<?>> multimapFeatures) {
        Set<Feature<?>> derivedFeatures = Helpers.copyToSet(multimapFeatures);
        derivedFeatures.remove(CollectionFeature.SERIALIZABLE);
        derivedFeatures.remove(CollectionFeature.SERIALIZABLE_INCLUDING_VIEWS);
        return derivedFeatures;
      }
    
      private static Set<Feature<?>> computeAsMapFeatures(Set<Feature<?>> multimapFeatures) {
        Set<Feature<?>> derivedFeatures = Helpers.copyToSet(multimapFeatures);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_netbsd_arm64.go

    	aa64pfr1  uint64 /* A64 Processor Feature Register 1 */
    	aa64zfr0  uint64 /* A64 SVE Feature ID Register 0 */
    	mvfr0     uint32 /* Media and VFP Feature Register 0 */
    	mvfr1     uint32 /* Media and VFP Feature Register 1 */
    	mvfr2     uint32 /* Media and VFP Feature Register 2 */
    	pad       uint32
    	clidr     uint64 /* Cache Level ID Register */
    	ctr       uint64 /* Cache Type Register */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 15:41:00 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/controllermanager_test.go

    		// we have to parse this from KnownFeatures, because usage of mutable FeatureGate is not allowed in unit tests
    		feature := featureGateRegex.FindString(featureText)
    		if strings.Contains(featureText, string(featuregate.Alpha)) && feature != "AllAlpha" {
    			alphaFeatures.Insert(feature)
    		}
    
    	}
    
    	for name, controller := range NewControllerDescriptors() {
    		if len(controller.GetAliases()) == 0 {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. .github/labels.json

              "pattern": "/question/i"
            }
          ]
        },
        "feature": {
          "requires": 1,
          "conditions": [
            {
              "type": "titleMatches",
              "pattern": "/feature/i"
            },
            {
              "type": "descriptionMatches",
              "pattern": "/Describe the feature/i"
            }
          ]
        },
        "without_playground": {
          "requires": 6,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 19 03:49:03 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/MapTestSuiteBuilder.java

      }
    
      private static Set<Feature<?>> computeReserializedMapFeatures(Set<Feature<?>> mapFeatures) {
        Set<Feature<?>> derivedFeatures = Helpers.copyToSet(mapFeatures);
        derivedFeatures.remove(CollectionFeature.SERIALIZABLE);
        derivedFeatures.remove(CollectionFeature.SERIALIZABLE_INCLUDING_VIEWS);
        return derivedFeatures;
      }
    
      private static Set<Feature<?>> computeEntrySetFeatures(Set<Feature<?>> mapFeatures) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmFeature.java

     * this feature is able to operate without the presence of the main feature, as long as the user
     * explicitly configures the project by manually creating a main and test source set themselves.
     * In that case, this feature will additionally create the jar and javadoc tasks which the main
     * source set would normally create. Additionally, this extension feature is able to create the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/plugins_providers.go

    		logger.Info("Skip registration of plugin since feature flag is enabled", "plugin", inTreePluginName, "feature", pluginInfo.pluginUnregisterFeature)
    		return plugins, nil
    	}
    	plugins = append(plugins, pluginInfo.pluginProbeFunction()...)
    	return plugins, nil
    }
    
    type pluginInfo struct {
    	pluginMigrationFeature  featuregate.Feature
    	pluginUnregisterFeature featuregate.Feature
    	pluginProbeFunction     probeFn
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/enhancement.yaml

    name: Enhancement Tracking Issue
    description: Provide supporting details for a feature in development
    labels: kind/feature
    body:
      - type: textarea
        id: feature
        attributes:
          label: What would you like to be added?
          description: |
            Feature requests are unlikely to make progress as issues. Please consider engaging with SIGs on slack and mailing lists, instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 16:55:38 UTC 2021
    - 750 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            private final String feature;
    
            public ExplicitDeprecationMessageBuilder(String feature) {
                this.feature = feature;
                setSummary(feature + " has been deprecated.");
            }
    
            @Override
            DeprecationMessage build() {
                if(problemId == null) {
                    setProblemId(createDefaultDeprecationId(feature));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top