Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,176 for Enabled (0.21 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/LegacyGradleEnterprisePluginCheckInService.java

        }
    
        private enum Requestedness {
    
            DEFAULTED(false, false),
            ENABLED(true, false),
            DISABLED(false, true);
    
            private final boolean enabled;
            private final boolean disabled;
    
            Requestedness(boolean enabled, boolean disabled) {
                this.enabled = enabled;
                this.disabled = disabled;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/plugin.go

    	c.authorizer = authorizer
    }
    
    func (c *Plugin[H]) SetMatcher(matcher *matching.Matcher) {
    	c.matcher = matcher
    }
    
    func (c *Plugin[H]) SetEnabled(enabled bool) {
    	c.enabled = enabled
    }
    
    func (c *Plugin[H]) SetExcludedAdmissionResources(excludedResources []schema.GroupResource) {
    	c.excludedResources.Insert(excludedResources...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerTest.groovy

        }
    
        def "isDebugEnabled returns #enabled when level is #level"() {
            when:
            globalLevel = level
    
            then:
            logger().debugEnabled == enabled
            logger().isDebugEnabled(null) == enabled
            logger().isEnabled(DEBUG) == enabled
    
    
            where:
            level     | enabled
            DEBUG     | true
            INFO      | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

            }
        }
    
        /**
         * Returns an immutable collection of all the enabled {@link Report} objects in this container.
         * <p>
         * The returned collection is live. That is, as reports are enabled/disabled the returned collection always
         * reflects the current set of enabled reports.
         *
         * @return The enabled reports.
         */
        @Internal
        NamedDomainObjectSet<T> getEnabled();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/proxy/topology.go

    	return
    }
    
    // canUseTopology returns true if topology aware routing is enabled and properly
    // configured in this cluster. That is, it checks that:
    //   - The TopologyAwareHints or ServiceTrafficDistribution feature is enabled.
    //   - If ServiceTrafficDistribution feature gate is not enabled, then the
    //     hintsAnnotation should represent an enabled value.
    //   - The node's labels include "topology.kubernetes.io/zone".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/convert.go

    			})
    		}
    	}
    
    	spec := kubecontainer.ImageSpec{
    		Image:       image.Id,
    		Annotations: annotations,
    	}
    	// if RuntimeClassInImageCriAPI feature gate is enabled, set runtimeHandler CRI field
    	if utilfeature.DefaultFeatureGate.Enabled(features.RuntimeClassInImageCriAPI) {
    		runtimeHandler := ""
    		if image.Spec != nil {
    			runtimeHandler = image.Spec.RuntimeHandler
    		}
    		spec.RuntimeHandler = runtimeHandler
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/validation/validation.go

    	}
    	if !localFeatureGate.Enabled(features.CPUCFSQuotaPeriod) && kc.CPUCFSQuotaPeriod != defaultCFSQuota {
    		allErrors = append(allErrors, fmt.Errorf("invalid configuration: cpuCFSQuotaPeriod (--cpu-cfs-quota-period) %v requires feature gate CustomCPUCFSQuotaPeriod", kc.CPUCFSQuotaPeriod))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. cni/pkg/config/config.go

    	ZtunnelUDSAddress string
    
    	// Whether ambient is enabled
    	AmbientEnabled bool
    
    	// Whether ambient DNS capture is enabled
    	AmbientDNSCapture bool
    
    	// Whether ipv6 is enabled for ambient capture
    	AmbientIPv6 bool
    }
    
    // RepairConfig struct defines the Istio CNI race repair configuration
    type RepairConfig struct {
    	// Whether to enable CNI race repair
    	Enabled bool
    
    	// The node name that the CNI DaemonSet runs on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pilot/pkg/features/xds.go

    	// Pilot injects this outbound filter if the service port name is `redis`.
    	EnableRedisFilter = env.Register(
    		"PILOT_ENABLE_REDIS_FILTER",
    		false,
    		"EnableRedisFilter enables injection of `envoy.filters.network.redis_proxy` in the filter chain.",
    	).Get()
    
    	// EnableMongoFilter enables injection of `envoy.filters.network.mongo_proxy` in the filter chain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    // Do not use directly with Compare.
    const Future = ""
    
    // AtLeast reports whether the file version v comes after a Go release.
    //
    // Use this predicate to enable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func AtLeast(v, release string) bool {
    	if v == Future {
    		return true // an unknown future version is always after y.
    	}
    	return Compare(Lang(v), Lang(release)) >= 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top