Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,176 for Enabled (0.22 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

        }
    
        def "debug session fails without debugger with task :#taskName"() {
            setup:
            sampleProject """
                debugOptions {
                    enabled = true
                    server = false
                }
            """
    
            expect:
            def failure = executer.withTasks(taskName).withStackTraceChecksDisabled().runWithFailure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    func (a *AdmissionOptions) AddFlags(fs *pflag.FlagSet) {
    	if a == nil {
    		return
    	}
    
    	fs.StringSliceVar(&a.EnablePlugins, "enable-admission-plugins", a.EnablePlugins, ""+
    		"admission plugins that should be enabled in addition to default enabled ones ("+
    		strings.Join(a.defaultEnabledPluginNames(), ", ")+"). "+
    		"Comma-delimited list of admission plugins: "+strings.Join(a.Plugins.Registered(), ", ")+". "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/config/types.go

    	// Reconciler runs a periodic loop to reconcile the desired state of the with
    	// the actual state of the world by triggering attach detach operations.
    	// This flag enables or disables reconcile.  Is false by default, and thus enabled.
    	DisableAttachDetachReconcilerSync bool
    	// ReconcilerSyncLoopPeriod is the amount of time the reconciler sync states loop
    	// wait between successive executions. Is set to 60 sec by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/types.go

    type KubeletWebhookAuthentication struct {
    	// enabled allows bearer token authentication backed by the tokenreviews.authentication.k8s.io API
    	Enabled bool
    	// cacheTTL enables caching of authentication results
    	CacheTTL metav1.Duration
    }
    
    // KubeletAnonymousAuthentication enables anonymous requests to the kubelet server.
    type KubeletAnonymousAuthentication struct {
    	// enabled allows anonymous requests to the kubelet server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/policy_options.go

    	if alphaOptions.Has(option) && !utilfeature.DefaultFeatureGate.Enabled(kubefeatures.CPUManagerPolicyAlphaOptions) {
    		return fmt.Errorf("CPU Manager Policy Alpha-level Options not enabled, but option %q provided", option)
    	}
    
    	if betaOptions.Has(option) && !utilfeature.DefaultFeatureGate.Enabled(kubefeatures.CPUManagerPolicyBetaOptions) {
    		return fmt.Errorf("CPU Manager Policy Beta-level Options not enabled, but option %q provided", option)
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

                    ));
    
                    if (!localEnabled && !remoteEnabled) {
                        LOGGER.warn("Using the build cache is enabled, but no build caches are configured or enabled.");
                        return NoOpBuildCacheController.INSTANCE;
                    } else {
                        return doCreateController(buildIdentityPath, localDescribedService, remoteDescribedService);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/syscall/syscall_unix.go

    	}
    	if asan.Enabled && n > 0 {
    		asan.Write(unsafe.Pointer(&p[0]), uintptr(n))
    	}
    	return
    }
    
    func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
    	if race.Enabled {
    		race.ReleaseMerge(unsafe.Pointer(&ioSync))
    	}
    	n, err = pwrite(fd, p, offset)
    	if race.Enabled && n > 0 {
    		race.ReadRange(unsafe.Pointer(&p[0]), n)
    	}
    	if msan.Enabled && n > 0 {
    		msan.Read(unsafe.Pointer(&p[0]), uintptr(n))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 16:19:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. internal/config/cache/cache.go

    	clnt *http.Client
    }
    
    var configLock sync.RWMutex
    
    // Enabled - indicates if cache is enabled or not
    func (c *Config) Enabled() bool {
    	return c.Enable && c.Endpoint != ""
    }
    
    // MatchesSize verifies if input 'size' falls under cacheable threshold
    func (c Config) MatchesSize(size int64) bool {
    	configLock.RLock()
    	defer configLock.RUnlock()
    
    	return c.Enable && c.BlockSize > 0 && size <= c.BlockSize
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/input/deprecated_autoscaling_k8s_spec.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      hub: docker.io/istio
      tag: 1.1.4
      meshConfig:
        rootNamespace: istio-control
      components:
        pilot:
          enabled: true
          namespace: istio-control
          k8s:
            hpaSpec:
              maxReplicas: 333
              scaleTargetRef:
                name: istio-pilot
              metrics:
              - type: Resource
                resource:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_policy.h

      kDisabledByUser = 0,
      // The MLIR bridge is explicitly enabled by the user and must be run. If the
      // MLIR bridge errors, the fallback path should NOT be used.
      kEnabledByUser,
      // The bridge was not explicitly enabled or disabled by the user. Based on the
      // features in the model, the MLIR bridge should not be run.
      kDisabledAfterGraphAnalysis,
      // The bridge was not explicitly enabled or disabled by the user. Based on the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top