Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 629 for leastOf (0.23 sec)

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

    import org.apache.maven.artifact.resolver.ResolutionNode;
    
    /**
     * Resolves conflicting artifacts by always selecting the nearest declaration. Nearest is defined as the
     * declaration that has the least transitive steps away from the project being built.
     *
     * @since 3.0
     */
    @Named("nearest")
    @Singleton
    @Deprecated
    public class NearestConflictResolver implements ConflictResolver {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/ProjectBuildListTest.java

            TaskSegment taskSegment = projectBuildList.get(0).getTaskSegment();
            assertThat(
                    "This test assumes there are at least 6 elements in projectBuilds",
                    projectBuildList.size(),
                    is(greaterThanOrEqualTo(6)));
    
            final ProjectBuildList byTaskSegment = projectBuildList.getByTaskSegment(taskSegment);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/runtime/internal/sys/consts.go

    // the compiler word, the link editor word, and the TOC save word.
    const MinFrameSize = goarch.MinFrameSize
    
    // StackAlign is the required alignment of the SP register.
    // The stack must be at least word aligned, but some architectures require more.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. plugin/pkg/admission/eventratelimit/cache.go

    	// the single rate limiter held by the cache
    	rateLimiter flowcontrol.RateLimiter
    }
    
    func (c *singleCache) get(key interface{}) flowcontrol.RateLimiter {
    	return c.rateLimiter
    }
    
    // lruCache is a least-recently-used cache
    type lruCache struct {
    	// factory to use to create new rate limiters
    	rateLimiterFactory func() flowcontrol.RateLimiter
    	// the actual LRU cache
    	cache *lru.Cache
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 02:31:37 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestHistory.java

            return getExperiment().getDisplayName();
        }
    
        PerformanceExperiment getExperiment();
    
        /**
         * The results of all executions of this performance test, ordered from most recent to least recent.
         */
        List<? extends PerformanceTestExecution> getExecutions();
    
        /**
         * Returns the number of scenarios for this performance test.
         */
        int getScenarioCount();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilderOptions.java

            // As Android Studio wanted to avoid task realization during sync, it started using "omit_all_tasks" option in production.
            // Gradle should support this option at least until an alternative solution exists and Android Studio has migrated to it.
            String builderOptions = System.getProperty("org.gradle.internal.GradleProjectBuilderOptions", "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:25:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/runtime/proc_runtime_test.go

    	}
    	// Make sure that different arguments to ord.start don't generate the
    	// same pos+inc twice.
    	for procs := 2; procs <= 64; procs++ {
    		ord.reset(uint32(procs))
    		checked := make([]bool, procs*procs)
    		// We want at least procs*len(ord.coprimes) different pos+inc values
    		// before we start repeating.
    		for i := 0; i < procs*len(ord.coprimes); i++ {
    			enum := ord.start(uint32(i))
    			j := enum.pos*uint32(procs) + enum.inc
    			if checked[j] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 18:43:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/JavaToolchainSpecInternal.java

         * suitable for usage in collections.
         */
        interface Key {}
    
        Key toKey();
    
        /**
         * A spec is considered configured when at least {@link #getLanguageVersion() language version} is set.
         * <p>
         * A spec that is not configured always directly matches the toolchain of the current JVM.
         */
        boolean isConfigured();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/fmahash_test.go

    	"path/filepath"
    	"regexp"
    	"runtime"
    	"testing"
    )
    
    // TestFmaHash checks that the hash-test machinery works properly for a single case.
    // It also runs ssa/check and gccheck to be sure that those are checked at least a
    // little in each run.bash.  It does not check or run the generated code.
    // The test file is however a useful example of fused-vs-cascaded multiply-add.
    func TestFmaHash(t *testing.T) {
    	switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/text/tabwriter/example_test.go

    	fmt.Fprintln(w, "a\tb\tc\td\t.")
    	fmt.Fprintln(w, "123\t12345\t1234567\t123456789\t.")
    	fmt.Fprintln(w)
    	w.Flush()
    
    	// Format right-aligned in space-separated columns of minimal width 5
    	// and at least one blank of padding (so wider column entries do not
    	// touch each other).
    	w.Init(os.Stdout, 5, 0, 1, ' ', tabwriter.AlignRight)
    	fmt.Fprintln(w, "a\tb\tc\td\t.")
    	fmt.Fprintln(w, "123\t12345\t1234567\t123456789\t.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
Back to top