Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 107 for alphabetically (0.47 sec)

  1. testing/architecture-test/build.gradle.kts

        description = "Ensures the accepted api changes file is kept alphabetically ordered to make merging changes to it easier"
        apiChangesDirectory = acceptedApiChangesDirectory
    }
    
    val sortAcceptedApiChanges = tasks.register<gradlebuild.binarycompatibility.SortAcceptedApiChangesTask>("sortAcceptedApiChanges") {
        group = "verification"
        description = "Sort the accepted api changes file alphabetically"
        apiChangesDirectory = acceptedApiChangesDirectory
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

                            group = "verification"
                            description = "Ensures the accepted api changes file is kept alphabetically ordered to make merging changes to it easier"
                            apiChangesDirectory = layout.projectDirectory.dir("${ TextUtil.normaliseFileSeparators(firstAcceptedApiChangesFile.parentFile.absolutePath) }")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/version/helpers_test.go

    		{"v1beta10", "v1beta2", true},
    		{"foo", "v1beta2", false},
    		{"bar", "foo", true},
    		{"version1", "version2", true},  // Non kube-like versions are sorted alphabetically
    		{"version1", "version10", true}, // Non kube-like versions are sorted alphabetically
    	}
    
    	for _, tc := range tests {
    		if e, a := tc.expectedGreater, CompareKubeAwareVersionStrings(tc.v1, tc.v2) > 0; e != a {
    			if e {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 19 02:46:55 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGeneratorTest.groovy

    class InstrumentedPropertiesResourceGeneratorTest extends InstrumentationCodeGenTest {
    
        private static final ObjectMapper MAPPER = new ObjectMapper()
    
        def "should generate a resource with upgraded properties sorted alphabetically"() {
            given:
            def givenSource = source """
                package org.gradle.test;
    
                import org.gradle.api.provider.Property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy

        }
    
        def "tasks are executed when they are ready and not necessarily alphabetically"() {
            buildFile << """
                tasks.getByPath(':b:pingA').dependsOn(':a:pingA')
                tasks.getByPath(':b:pingC').dependsOn([':b:pingA', ':b:pingB'])
            """
    
            expect:
            //project a and b are both executed even though alphabetically more important task is blocked
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

            doesNotHaveIncubatingLegend()
            doesNotPromptForRerunToFindMoreConfigurations()
        }
    
        def "If multiple resolvable configurations present with attributes, task reports them all, sorted alphabetically"() {
            given:
            buildFile << """
                configurations.create("someConf") {
                    description = "My first custom configuration"
                    assert canBeResolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. src/math/rand/auto_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package rand_test
    
    import (
    	. "math/rand"
    	"testing"
    )
    
    // This test is first, in its own file with an alphabetically early name,
    // to try to make sure that it runs early. It has the best chance of
    // detecting deterministic seeding if it's the first test that runs.
    
    func TestAuto(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:49:48 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. pkg/apis/flowcontrol/util/helpers.go

    func (s FlowSchemaSequence) Less(i, j int) bool {
    	// the flow-schema w/ lower matching-precedence is prior
    	if ip, jp := s[i].Spec.MatchingPrecedence, s[j].Spec.MatchingPrecedence; ip != jp {
    		return ip < jp
    	}
    	// sort alphabetically
    	return s[i].Name < s[j].Name
    }
    
    func (s FlowSchemaSequence) Swap(i, j int) {
    	s[i], s[j] = s[j], s[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 29 04:26:12 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  9. pkg/config/host/names.go

    func MoreSpecific(a, b Name) bool {
    	if len(a) == 0 && len(b) == 0 {
    		return true // doesn't matter, they're both the empty string
    	}
    
    	// we sort longest to shortest, alphabetically, with wildcards last
    	ai, aj := string(a[0]) == "*", string(b[0]) == "*"
    	if ai && !aj {
    		// h[i] is a wildcard, but h[j] isn't; therefore h[j] < h[i]
    		return false
    	} else if !ai && aj {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/Operation.java

         */
        abstract long getElapsedTime();
    
        abstract String getDescription();
    
        /**
         * @return comparator that compares operations, slowest first, then alphabetically
         */
        public static Comparator<? super Operation> slowestFirst() {
            return new Comparator<Operation>() {
                @Override
                public int compare(Operation o1, Operation o2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top