Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 970 for plfeature (0.13 sec)

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

        void visitFeatureAnnotation(ToBeFixedForConfigurationCache annotation, FeatureInfo feature) {
    
            if (GradleContextualExecuter.isNotConfigCache()) {
                return
            }
    
            if (!isEnabledSpec(annotation, feature)) {
                return
            }
    
            if (annotation.skip() != DO_NOT_SKIP) {
                feature.skipped = true
                return
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    When the `requested` provider value is:
    
    - `true` -- the user opted in for using the feature
    - `false` -- the user opted out from using the feature
    - `undefined` -- the user neither opted in nor opted out from using the feature
    
    The link:{javadocPath}/org/gradle/api/configuration/BuildFeature.html#getActive--[`BuildFeature.getActive()`] status of a build feature is always defined.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

                  .withTearDown(parentBuilder.getTearDown())
                  .createTestSuite());
        }
    
        return derived;
      }
    
      private static Set<Feature<?>> computeInverseFeatures(Set<Feature<?>> mapFeatures) {
        Set<Feature<?>> inverseFeatures = new HashSet<>(mapFeatures);
    
        boolean nullKeys = inverseFeatures.remove(MapFeature.ALLOWS_NULL_KEYS);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.feature;
    
    import java.util.Map;
    import java.util.Properties;
    
    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Centralized class for Maven Core feature information.
     * Features configured are supposed to be final in a given maven session.
     *
     * @since 4.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 13:04:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. cmd/kubelet/app/plugins_providers.go

    	if err != nil {
    		klog.InfoS("Unexpected CSI Migration Feature Flags combination detected, CSI Migration may not take effect", "err", err)
    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    	if featureGate.Enabled(pluginInfo.pluginUnregisterFeature) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. pkg/kubelet/userns/userns_manager_switch_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	pkgfeatures "k8s.io/kubernetes/pkg/features"
    )
    
    func TestMakeUserNsManagerSwitch(t *testing.T) {
    	// Create the manager with the feature gate enabled, to record some pods on disk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MultimapFeature.java

    @GwtCompatible
    public enum MultimapFeature implements Feature<Multimap> {
      VALUE_COLLECTIONS_SUPPORT_ITERATOR_REMOVE;
    
      private final Set<Feature<? super Multimap>> implied;
    
      MultimapFeature(Feature<? super Multimap>... implied) {
        this.implied = Helpers.copyToSet(implied);
      }
    
      @Override
      public Set<Feature<? super Multimap>> getImpliedFeatures() {
        return implied;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. 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)
  9. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

      @CanIgnoreReturnValue
      public B withFeatures(Iterable<? extends Feature<?>> features) {
        for (Feature<?> feature : features) {
          this.features.add(feature);
        }
        return self();
      }
    
      public Set<Feature<?>> getFeatures() {
        return Collections.unmodifiableSet(features);
      }
    
      // Name
    
      private @Nullable String name;
    
      /** Configures this builder produce a TestSuite with the given name. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/features/kube_features_test.go

    		if _, ok := registeredFeatures[featureName]; !ok {
    			t.Errorf("The client-go's feature gate %q is not registered in the DefaultFeatureGate", featureName)
    		}
    	}
    }
    
    // TestAllRegisteredFeaturesExpected tests that the set of features actually registered does not
    // include any features other than those on the list in this package or in client-go's feature
    // package.
    func TestAllRegisteredFeaturesExpected(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top