Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 721 for sortby (0.1 sec)

  1. src/go/doc/testdata/d.0.golden

    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    	const (
    		// Single const declarations inside ()'s are considered ungrouped
    		// and show up in sorted order.
    		Cungrouped = 0
    	)
    
    
    VARIABLES
    	// VBx variables should appear before VAx variables. 
    	var (
    		VB2	int	// before VB1
    		VB1	int	// before VB0
    		VB0	int	// at end
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            dep.exclusions.size() == 2
            def sorted = dep.exclusions.sort { it.groupId }
            sorted[0].groupId == "*"
            sorted[0].artifactId == "commons-collections"
            sorted[1].groupId == "commons-io"
            sorted[1].artifactId == "*"
    
            project2.parsedModuleMetadata.variant('apiElements') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationClasspathMerger.java

                .map(ClassPathTransformedArtifact::ofTransformedArtifact)
                // We sort based on the original classpath to we keep the original order,
                // we also rely on the fact that for ordered streams `sorted()` method has stable sort.
                .sorted((first, second) -> ordering.compare(first.originalIdentifier, second.originalIdentifier))
                .map(artifact -> artifact.file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/BooleanOptionElement.java

        /**
         * Returns a comparator that groups opposite option pairs together.
         *
         * <p>Options are sorted in the natural order of their names,
         * except for disable options which are sorted after their opposite option.
         * For example, {@code "--foo"} and {@code "--no-foo"} are grouped together
         * and are sorted after {@code "--bar"} and {@code "--no-bar"}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 18 06:43:54 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/AbstractSortedSetMultimap.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Basic implementation of the {@link SortedSetMultimap} interface. It's a wrapper around {@link
     * AbstractMapBasedMultimap} that converts the returned collections into sorted sets. The {@link
     * #createCollection} method must return a {@code SortedSet}.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  6. src/go/doc/testdata/d.2.golden

    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    	const (
    		// Single const declarations inside ()'s are considered ungrouped
    		// and show up in sorted order.
    		Cungrouped = 0
    	)
    
    
    VARIABLES
    	// VBx variables should appear before VAx variables. 
    	var (
    		VB2	int	// before VB1
    		VB1	int	// before VB0
    		VB0	int	// at end
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Basic implementation of the {@link SortedSetMultimap} interface. It's a wrapper around {@link
     * AbstractMapBasedMultimap} that converts the returned collections into sorted sets. The {@link
     * #createCollection} method must return a {@code SortedSet}.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. src/go/doc/testdata/d.1.golden

    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    	const (
    		// Single const declarations inside ()'s are considered ungrouped
    		// and show up in sorted order.
    		Cungrouped = 0
    	)
    
    
    VARIABLES
    	// VBx variables should appear before VAx variables. 
    	var (
    		VB2	int	// before VB1
    		VB1	int	// before VB0
    		VB0	int	// at end
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            dependency.exclusions.size() == 3
            def sorted = dependency.exclusions.sort { it.groupId }
            sorted[0].groupId == "*"
            sorted[0].artifactId == "dep2"
            sorted[1].groupId == "org.opensource1"
            sorted[1].artifactId == "dep1"
            sorted[2].groupId == "org.opensource2"
            sorted[2].artifactId == "*"
    
        }
    
        @Issue("GRADLE-3318")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/runtime/debug/garbage.go

    			// See the allocation at the top of the function.
    			sorted := stats.Pause[n : n+n]
    			copy(sorted, stats.Pause)
    			slices.Sort(sorted)
    			nq := len(stats.PauseQuantiles) - 1
    			for i := 0; i < nq; i++ {
    				stats.PauseQuantiles[i] = sorted[len(sorted)*i/nq]
    			}
    			stats.PauseQuantiles[nq] = sorted[len(sorted)-1]
    		}
    	}
    }
    
    // SetGCPercent sets the garbage collection target percentage:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top