Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 439 for highest (0.82 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionResolveIntegrationTest.groovy

    @Requires(IntegTestPreconditions.NotParallelExecutor)
    class IvyDynamicRevisionResolveIntegrationTest extends AbstractModuleDependencyResolveTest {
    
        @Issue("GRADLE-2502")
        def "latest.integration selects highest version regardless of status"() {
            given:
            buildFile << """
                dependencies {
                    conf 'org.test:projectA:latest.integration'
                }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredReplacements 'a->b'
            expect:
            resolvedModules 'b'
        }
    
        def "uses highest when it is last"() {
            declaredDependencies 'b', 'a', 'b:2'
            declaredReplacements 'a->b'
            expect:
            resolvedModules 'b:2'
        }
    
        def "uses highest when it is last following replacedBy"() {
            declaredDependencies 'a', 'b', 'b:2'
            declaredReplacements 'a->b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption.go

    				return int64(math.MinInt64)
    			}
    			// The bigger the earliestStartTimeOnNode, the higher the score.
    			return earliestStartTimeOnNode.UnixNano()
    		}
    
    		// Each scoreFunc scores the nodes according to specific rules and keeps the name of the node
    		// with the highest score. If and only if the scoreFunc has more than one node with the highest
    		// score, we will execute the other scoreFunc in order of precedence.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    ** If there are only ranges, the selection will depend on the intersection of ranges:
    *** If all the ranges intersect, then the highest _existing_ version of the intersection will be selected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    		// Afterwards the final priorities can be calculted from 0 (highest) to N (lowest) without skipping.
    		priorityInt := int(loadAssignment.Endpoints[i].Priority*5) + priority
    		loadAssignment.Endpoints[i].Priority = uint32(priorityInt)
    		priorityMap[priorityInt] = append(priorityMap[priorityInt], i)
    	}
    
    	// since Priorities should range from 0 (highest) to N (lowest) without skipping.
    	// 2. adjust the priorities in order
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * from levels higher than the specified granularity will be ignored.
         * <p>The default granularity is -1, which specifies that test events from only the most granular level should be logged.  Setting this value to something lower will cause events
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    					return nil, fmt.Errorf("illegal zero-prefixed version component %q in %q", comp, str)
    				}
    			}
    		}
    	}
    
    	return v, nil
    }
    
    // HighestSupportedVersion returns the highest supported version
    // This function assumes that the highest supported version must be v1.x.
    func HighestSupportedVersion(versions []string) (*Version, error) {
    	if len(versions) == 0 {
    		return nil, errors.New("empty array for supported versions")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/coderepo.go

    			highest = v
    			break
    		}
    	}
    	if highest == "" {
    		highest = versions[len(versions)-1]
    	}
    
    	data, err := r.GoMod(ctx, highest)
    	if err != nil {
    		return nil, err
    	}
    	f, err := modfile.ParseLax("go.mod", data, nil)
    	if err != nil {
    		return nil, err
    	}
    	retractions := make([]modfile.VersionInterval, 0, len(f.Retract))
    	for _, r := range f.Retract {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

                    (x): "x",
                    // attribute that has a lower precedence than the next one
                    (c): AttributeTestUtil.named(ConcreteNamed, "c"),
                    // attribute with the highest precedence
                    (a): flavor("a"),
                    // attribute that doesn't have a precedence
                    (Attribute.of("z", String)): "z"
            )
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

            if (preferResults == null) {
                return;
            }
    
            // If no result from 'require', just use the highest preferred version (no range merging)
            if (results.isEmpty()) {
                ComponentIdResolveResult highestPreferredVersion = preferResults.first();
                results.register(selectors.first(), highestPreferredVersion);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top