Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,337 for Enabled (0.2 sec)

  1. pilot/pkg/features/pilot.go

    		"PILOT_ENABLE_NODE_UNTAINT_CONTROLLERS",
    		false,
    		"If enabled, controller that untaints nodes with cni pods ready will run. This should be enabled if you disabled ambient init containers.").Get()
    
    	// EnableUnsafeAssertions enables runtime checks to test assertions in our code. This should never be enabled in
    	// production; when assertions fail Istio will panic.
    	EnableUnsafeAssertions = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingState.java

        }
    
        public Optional<Enabled> whenEnabled() {
            return delegate.getLeft();
        }
    
        public Optional<Disabled> whenDisabled() {
            return delegate.getRight();
        }
    
        public <T> T fold(Function<Enabled, T> enabled, Function<Disabled, T> disabled) {
            return delegate.fold(enabled, disabled);
        }
    
        public void apply(Consumer<Enabled> enabled, Consumer<Disabled> disabled) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSystemAdapter.java

            logLevel = snapshot.level;
            enabled = snapshot.enabled;
            configurer.configure(logLevel);
        }
    
        private static class SnapshotImpl implements Snapshot {
            private final boolean enabled;
            private final LogLevel level;
    
            SnapshotImpl(boolean enabled, LogLevel level) {
                this.enabled = enabled;
                this.level = level;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    		r[bindPlugin] = newBindPlugin
    	}
    
    	if len(profile.Plugins.QueueSort.Enabled) == 0 {
    		profile.Plugins.QueueSort.Enabled = append(profile.Plugins.QueueSort.Enabled, config.Plugin{Name: queueSortPlugin})
    	}
    	if len(profile.Plugins.Bind.Enabled) == 0 {
    		profile.Plugins.Bind.Enabled = append(profile.Plugins.Bind.Enabled, config.Plugin{Name: bindPlugin})
    	}
    	return NewFramework(ctx, r, &profile, opts...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunnerTest.groovy

            WatchMode.DEFAULT  | VfsLogging.NORMAL  | WatchLogging.DEBUG  | true
            WatchMode.ENABLED  | VfsLogging.VERBOSE | WatchLogging.NORMAL | true
            WatchMode.ENABLED  | VfsLogging.NORMAL  | WatchLogging.NORMAL | true
            WatchMode.ENABLED  | VfsLogging.VERBOSE | WatchLogging.DEBUG  | true
            WatchMode.ENABLED  | VfsLogging.NORMAL  | WatchLogging.DEBUG  | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. pkg/scheduler/profile/profile_test.go

    						QueueSort: config.PluginSet{
    							Enabled: []config.Plugin{
    								{Name: "QueueSort"},
    							},
    						},
    						Bind: config.PluginSet{
    							Enabled: []config.Plugin{
    								{Name: "Bind1"},
    							},
    						},
    					},
    				},
    				{
    					SchedulerName: "profile-2",
    					Plugins: &config.Plugins{
    						QueueSort: config.PluginSet{
    							Enabled: []config.Plugin{
    								{Name: "QueueSort"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. docs/bucket/versioning/README.md

    maintain the same permanent delete behavior when on versioning-enabled bucket, you must add a noncurrent expiration policy. The noncurrent expiration lifecycle policy will manage the deletes of the noncurrent object versions in the versioning-enabled bucket. (A version-enabled bucket maintains one current and zero or more noncurrent object versions.)
    
    Versioning must be explicitly enabled on a bucket, versioning is not enabled by default. Object locking enabled buckets have versioning enabled...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/EnableFileSystemWatchingIntegrationTest.groovy

        def "is enabled by default"() {
            buildFile << """
                apply plugin: "java"
            """
    
            when:
            run("assemble", "--info")
            then:
            outputContains(ENABLED_IF_AVAILABLE_MESSAGE)
            outputContains(ACTIVE_MESSAGE)
        }
    
        def "can be enabled via gradle.properties (enabled: #enabled)"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/storage/resource_config_test.go

    	}
    
    	// explicitly disabled resources in enabled group-versions are disabled
    	if config.ResourceEnabled(g1v2rDisabled) {
    		t.Errorf("expected disabled for %v, from %v", g1v2rDisabled, config)
    	}
    	if config.ResourceEnabled(g2v1rDisabled) {
    		t.Errorf("expected disabled for %v, from %v", g2v1rDisabled, config)
    	}
    
    	// unspecified and explicitly enabled resources in enabled group-versions are enabled
    	if !config.ResourceEnabled(g1v2rUnspecified) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

    public class JavaDebugOptionsInternal {
        private boolean enabled = false;
        private String host = "";
        private int port = 5005;
        private boolean server = true;
        private boolean suspend = true;
    
        public JavaDebugOptionsInternal(boolean enabled) {
            this.enabled = enabled;
        }
    
        public JavaDebugOptionsInternal() {
        }
    
        public String toDebugArgument() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top