Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 970 for plfeature (0.22 sec)

  1. pkg/registry/storage/csidriver/strategy_test.go

    		wantSELinuxMount                    *bool
    	}{
    		{
    			name:           "podInfoOnMount feature enabled, before: none, update: enabled",
    			old:            driverWithNothing,
    			update:         driverWithPodInfoOnMountEnabled,
    			wantGeneration: 1,
    		},
    		{
    			name:           "podInfoOnMount feature enabled, before: enabled, update: disabled",
    			old:            driverWithPodInfoOnMountEnabled,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/BehindFlagFeatureInterceptor.groovy

                }
                return enabled
            }
        }
    
        static class Feature {
            final Map<String, String> displayNames
    
            Feature(Map<String, String> displayNames) {
                this.displayNames = displayNames
            }
        }
    
        static Feature booleanFeature(String name) {
            new Feature(['true': "with $name".toString(), 'false': "without $name".toString()])
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/AbstractMultiTestInterceptor.java

            } else {
                feature.setIterationNameProvider(iteration -> iterationNameProvider.getName(iteration) + " " + currentExecution);
            }
    
            feature.setDataDriver((dataIterator, iterationRunner, parameters) -> {
                TestDetails testDetails = new TestDetails(feature);
                while(dataIterator.hasNext()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. pkg/features/client_adapter.go

    var _ clientfeatures.Gates = &clientAdapter{}
    
    func (a *clientAdapter) Enabled(name clientfeatures.Feature) bool {
    	return a.mfg.Enabled(featuregate.Feature(name))
    }
    
    var _ clientfeatures.Registry = &clientAdapter{}
    
    func (a *clientAdapter) Add(in map[clientfeatures.Feature]clientfeatures.FeatureSpec) error {
    	out := map[featuregate.Feature]featuregate.FeatureSpec{}
    	for name, spec := range in {
    		converted := featuregate.FeatureSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        Set<Feature<?>> features = Sets.<Feature<?>>newHashSet(ExampleBaseFeature.BASE_FEATURE_1);
        assertSame(features, FeatureUtil.addImpliedFeatures(features));
      }
    
      public void testAddImpliedFeatures_addsImpliedFeatures() throws Exception {
        Set<Feature<?>> features;
    
        features = Sets.<Feature<?>>newHashSet(ExampleDerivedFeature.DERIVED_FEATURE_1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ExpectingFailureRuleStatement.groovy

        private final Statement next
    
        private final String feature
    
        ExpectingFailureRuleStatement(Statement next, String feature) {
            this.next = next
            this.feature = feature
        }
    
        @Override
        void evaluate() throws Throwable {
            try {
                next.evaluate()
                throw new ToBeFixedSpecInterceptor.UnexpectedSuccessException(feature)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. releasenotes/notes/enable-verify-certificate-at-client.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
    - |
      **Updated** default value of the feature flag `VERIFY_CERT_AT_CLIENT` to true.
      This means server certificates will be automatically verified using the OS CA certificates when not using a DestinationRule caCertificates field.
      If undesired please use the new `compatibilityVersion` feature to fallback to old behavior, or `insecureSkipVerify`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 24 15:53:10 UTC 2024
    - 911 bytes
    - Viewed (0)
  8. src/internal/cpu/cpu.go

    type option struct {
    	Name      string
    	Feature   *bool
    	Specified bool // whether feature value was specified in GODEBUG
    	Enable    bool // whether feature should be enabled
    }
    
    // processOptions enables or disables CPU feature values based on the parsed env string.
    // The env string is expected to be of the form cpu.feature1=value1,cpu.feature2=value2...
    // where feature names is one of the architecture specific list stored in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. native-image-tests/src/main/kotlin/okhttp3/TestRegistration.kt

    import java.io.File
    import java.lang.IllegalStateException
    import org.graalvm.nativeimage.hosted.Feature
    import org.graalvm.nativeimage.hosted.RuntimeClassInitialization
    import org.graalvm.nativeimage.hosted.RuntimeReflection
    
    @AutomaticFeature
    class TestRegistration : Feature {
      override fun beforeAnalysis(access: Feature.BeforeAnalysisAccess) {
        // Presumably needed for parsing the testlist.txt file.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/options/validation_test.go

    	const conflict = "UnknownVersionInteroperabilityProxy feature requires StorageVersionAPI feature flag to be enabled"
    	tests := []struct {
    		name            string
    		featuresEnabled []featuregate.Feature
    	}{
    		{
    			name:            "enabled: UnknownVersionInteroperabilityProxy, disabled: StorageVersionAPI",
    			featuresEnabled: []featuregate.Feature{features.UnknownVersionInteroperabilityProxy},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top