Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 130 for negligible (0.18 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/ConventionMapping.java

        MappedProperty map(String propertyName, Closure<?> value);
    
        MappedProperty map(String propertyName, Callable<?> value);
    
        /**
         * Mark a property as ineligible for convention mapping.
         */
        void ineligible(String propertyName);
    
        @Nullable
        <T> T getConventionValue(@Nullable T actualValue, String propertyName, boolean isExplicitValue);
    
        interface MappedProperty {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. pkg/controller/ttlafterfinished/metrics/metrics.go

    	// JobDeletionDurationSeconds tracks the time it took to delete the job since it
    	// became eligible for deletion.
    	JobDeletionDurationSeconds = metrics.NewHistogram(
    		&metrics.HistogramOpts{
    			Subsystem:      TTLAfterFinishedSubsystem,
    			Name:           "job_deletion_duration_seconds",
    			Help:           "The time it took to delete the job since it became eligible for deletion",
    			StabilityLevel: metrics.ALPHA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 12 18:02:17 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantResolveMetadata.java

        @Override
        ImmutableCapabilities getCapabilities();
    
        boolean isExternalVariant();
    
        /**
         * Is this variant eligible for caching?
         *
         * Only variants from a project component are eligible for caching.
         *
         * @see <a href="https://github.com/gradle/gradle/pull/23500#discussion_r1073224819">Context</a>
         */
        default boolean isEligibleForCaching() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

         */
        Property<JavaLanguageVersion> getLanguageVersion();
    
        /**
         * The vendor of the toolchain.
         * <p>
         * By default, toolchains from any vendor are eligible.
         * <p>
         * Note that the vendor can only be configured if the {@link #getLanguageVersion() language version} is configured as well.
         *
         * @since 6.8
         */
        Property<JvmVendorSpec> getVendor();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CacheableRule.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Declares a rule eligible for caching.
     *
     * @since 4.9
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE})
    public @interface CacheableRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 10 20:23:22 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder.go

    		// add them to the eligible nodes
    		nodeNames := util.GetLocalPersistentVolumeNodeNames(pv)
    		if len(nodeNames) != 0 {
    			// on the first found list of eligible nodes for the local PersistentVolume,
    			// insert to the eligible node set.
    			if eligibleNodes == nil {
    				eligibleNodes = sets.New(nodeNames...)
    			} else {
    				// for subsequent finding of eligible nodes for the local PersistentVolume,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. pkg/proxy/healthcheck/proxier_health.go

    			continue
    		}
    		return false, proxierLastUpdated
    	}
    	return true, lastUpdated
    }
    
    // SyncNode syncs the node and determines if it is eligible or not. Eligible is
    // defined as being: not tainted by ToBeDeletedTaint and not deleted.
    func (hs *ProxierHealthServer) SyncNode(node *v1.Node) {
    	hs.lock.Lock()
    	defer hs.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/internal/health/util.go

    	"istio.io/istio/pkg/config"
    )
    
    // IsEligibleForHealthStatusUpdates returns true if a given WorkloadEntry
    // is allowed to receive health status updates sent by an Istio Proxy.
    //
    // Consider a workload eligible for health status updates as long as the
    // WorkloadEntryHealthCheckAnnotation is present (no matter what the value is).
    // In case the annotation is present but the value is not "true", the proxy should be allowed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 07:04:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

        if (pooled2 != null) return pooled2
    
        return connect
      }
    
      /**
       * Returns the connection already attached to the call if it's eligible for a new exchange.
       *
       * If the call's connection exists and is eligible for another exchange, it is returned. If it
       * exists but cannot be used for another exchange, it is closed and this returns null.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedVariantCache.java

     */
    @ServiceScope(Scope.Build.class)
    public interface ResolvedVariantCache {
        /**
         * Caches resolved variants created by the given function if the identifier is eligible for caching.
         *
         * @param key key for the cache
         * @param mappingFunction function to create a {@link ResolvedVariant}
         * @return the resolved variant created by the function or a cached instance, if available
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top