Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,784 for Greater (0.19 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolver.java

    import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
    
    /**
     * Resolves conflicting artifacts by always selecting the newest declaration. Newest is defined as the
     * declaration whose version is greater according to <code>ArtifactVersion.compareTo</code>.
     *
     * @see ArtifactVersion#compareTo
     * @since 3.0
     */
    @Named("newest")
    @Singleton
    @Deprecated
    public class NewestConflictResolver implements ConflictResolver {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/caching/local/DirectoryBuildCache.java

            return removeUnusedEntriesAfterDays;
        }
    
        /**
         * Sets the number of days after unused entries are garbage collected. Defaults to 7 days.
         *
         * Must be greater than 1.
         *
         * @since 4.6
         * @deprecated
         */
        @Deprecated
        public void setRemoveUnusedEntriesAfterDays(int removeUnusedEntriesAfterDays) {
            if (removeUnusedEntriesAfterDays < 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/pidlimit/pidlimit_linux.go

    				}
    			}
    		}
    	}
    	// Both reads did not fail.
    	if taskMax >= 0 {
    		rlimit.MaxPID = &taskMax
    	}
    
    	// Prefer to read "/proc/loadavg" when possible because sysinfo(2)
    	// returns truncated number when greater than 65538. See
    	// https://github.com/kubernetes/kubernetes/issues/107107
    	if procs, err := runningTaskCount(); err == nil {
    		rlimit.NumOfRunningProcesses = &procs
    	} else {
    		var info syscall.Sysinfo_t
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:24:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. cmd/batch-expire_test.go

          size:
            lessThan: "10MiB" # match objects with size less than this value (e.g. 10MiB)
            greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
          purge:
              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
              # retainVersions: 5 # keep the latest 5 versions of the object.
      
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/NullsLastOrdering.java

    import java.io.Serializable;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** An ordering that treats {@code null} as greater than all other values. */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    final class NullsLastOrdering<T extends @Nullable Object> extends Ordering<@Nullable T>
        implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 27 16:03:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/NullsLastOrdering.java

    import java.io.Serializable;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** An ordering that treats {@code null} as greater than all other values. */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    final class NullsLastOrdering<T extends @Nullable Object> extends Ordering<@Nullable T>
        implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 27 16:03:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. docs/erasure/storage-class/README.md

    ### Allowed values for STANDARD storage class
    
    `STANDARD` storage class implies more parity than `REDUCED_REDUNDANCY` class. So, `STANDARD` parity drives should be
    
    - Greater than or equal to 2, if `REDUCED_REDUNDANCY` parity is not set.
    - Greater than `REDUCED_REDUNDANCY` parity, if it is set.
    
    Parity blocks can not be higher than data blocks, so `STANDARD` storage class parity can not be higher than N/2. (N being total number of drives)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorFactory.java

        ManagedThreadPoolExecutor createThreadPool(String displayName, int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit timeUnit);
    
        /**
         * Creates a scheduled executor which can run tasks periodically. It is the caller's responsibility to stop the executor.
         *
         * The created scheduled executor has a fixed pool size of {@literal fixedSize}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/support/KotlinCompilerTest.kt

                assertThat(javaVersion.toKotlinJvmTarget(), equalTo(JvmTarget.JVM_1_8))
            }
        }
    
        @Test
        fun `Gradle JavaVersion greater than 21 to Kotlin JvmTarget conversion`() {
            JavaVersion.values().filter { it > JavaVersion.VERSION_21 }.forEach { javaVersion ->
                assertThat(javaVersion.toKotlinJvmTarget(), equalTo(JvmTarget.JVM_21))
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 31 08:46:17 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. operator/pkg/patch/patch.go

    # ADD
    
    1. Add vv3 to list
    
    	path: a.b.[name:n2].list.[1000]
    	value: vv3
    
    Note: the value 1000 is an example. That value used in the patch should
    be a value greater than number of the items in the list. Choose 1000 is
    just an example which normally is greater than the most of the lists used.
    
    2. Add new key:value to container name: n1
    
    	path: a.b.[name:n1]
    	value:
    	  new_attr: v3
    
    *NOTES*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top