Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for maxswap (0.2 sec)

  1. src/sort/sort_test.go

    	desc        string
    	t           *testing.T
    	data        []int
    	maxswap     int // number of swaps allowed
    	ncmp, nswap int
    }
    
    func (d *testingData) Len() int { return len(d.data) }
    func (d *testingData) Less(i, j int) bool {
    	d.ncmp++
    	return d.data[i] < d.data[j]
    }
    func (d *testingData) Swap(i, j int) {
    	if d.nswap >= d.maxswap {
    		d.t.Fatalf("%s: used %d swaps sorting slice of %d", d.desc, d.nswap, len(d.data))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

          case 2:
            return 1; // The lone element in the maxHeap is the maximum.
          default:
            // The max element must sit on the first level of the maxHeap. It is
            // actually the *lesser* of the two from the maxHeap's perspective.
            return (maxHeap.compareElements(1, 2) <= 0) ? 1 : 2;
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

          case 2:
            return 1; // The lone element in the maxHeap is the maximum.
          default:
            // The max element must sit on the first level of the maxHeap. It is
            // actually the *lesser* of the two from the maxHeap's perspective.
            return (maxHeap.compareElements(1, 2) <= 0) ? 1 : 2;
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/regexp/syntax/regexp.go

    		b.WriteString(`\x{`)
    		b.WriteString(strconv.FormatInt(int64(r), 16))
    		b.WriteString(`}`)
    	}
    }
    
    // MaxCap walks the regexp to find the maximum capture index.
    func (re *Regexp) MaxCap() int {
    	m := 0
    	if re.Op == OpCapture {
    		m = re.Cap
    	}
    	for _, sub := range re.Sub {
    		if n := sub.MaxCap(); m < n {
    			m = n
    		}
    	}
    	return m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. src/sort/zsortinterface.go

    // [shortestNinther,∞): uses the Tukey ninther method.
    func choosePivot(data Interface, a, b int) (pivot int, hint sortedHint) {
    	const (
    		shortestNinther = 50
    		maxSwaps        = 4 * 3
    	)
    
    	l := b - a
    
    	var (
    		swaps int
    		i     = a + l/4*1
    		j     = a + l/4*2
    		k     = a + l/4*3
    	)
    
    	if l >= 8 {
    		if l >= shortestNinther {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  6. src/sort/zsortfunc.go

    // [shortestNinther,∞): uses the Tukey ninther method.
    func choosePivot_func(data lessSwap, a, b int) (pivot int, hint sortedHint) {
    	const (
    		shortestNinther = 50
    		maxSwaps        = 4 * 3
    	)
    
    	l := b - a
    
    	var (
    		swaps int
    		i     = a + l/4*1
    		j     = a + l/4*2
    		k     = a + l/4*3
    	)
    
    	if l >= 8 {
    		if l >= shortestNinther {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  7. src/slices/zsortanyfunc.go

    // [shortestNinther,∞): uses the Tukey ninther method.
    func choosePivotCmpFunc[E any](data []E, a, b int, cmp func(a, b E) int) (pivot int, hint sortedHint) {
    	const (
    		shortestNinther = 50
    		maxSwaps        = 4 * 3
    	)
    
    	l := b - a
    
    	var (
    		swaps int
    		i     = a + l/4*1
    		j     = a + l/4*2
    		k     = a + l/4*3
    	)
    
    	if l >= 8 {
    		if l >= shortestNinther {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

     * declared in the POM.
     *
     */
    public class ProjectModelResolver implements ModelResolver {
    
        private static final int MAX_CAP = 0x7fff;
    
        private final RepositorySystemSession session;
    
        private final RequestTrace trace;
    
        private final String context = "project";
    
        private List<RemoteRepository> repositories;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        new File(projectDirectory, "gradle.properties") << "\norg.gradle.workers.max=${maxWorkers}\n"
    
    }
    
    private void setMaxHeap(File projectDirectory, String maxHeap) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.jvmargs=-Xmx${maxHeap}\n"
    
    }
    
    private void setParallel(File projectDirectory, boolean parallel) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.parallel=${parallel}\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. src/slices/zsortordered.go

    // [shortestNinther,∞): uses the Tukey ninther method.
    func choosePivotOrdered[E cmp.Ordered](data []E, a, b int) (pivot int, hint sortedHint) {
    	const (
    		shortestNinther = 50
    		maxSwaps        = 4 * 3
    	)
    
    	l := b - a
    
    	var (
    		swaps int
    		i     = a + l/4*1
    		j     = a + l/4*2
    		k     = a + l/4*3
    	)
    
    	if l >= 8 {
    		if l >= shortestNinther {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top