Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for rightLen (0.16 sec)

  1. src/regexp/onepass.go

    var (
    	noRune = []rune{}
    	noNext = []uint32{mergeFailed}
    )
    
    func mergeRuneSets(leftRunes, rightRunes *[]rune, leftPC, rightPC uint32) ([]rune, []uint32) {
    	leftLen := len(*leftRunes)
    	rightLen := len(*rightRunes)
    	if leftLen&0x1 != 0 || rightLen&0x1 != 0 {
    		panic("mergeRuneSets odd length []rune")
    	}
    	var (
    		lx, rx int
    	)
    	merged := make([]rune, 0)
    	next := make([]uint32, 0)
    	ok := true
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/slices/zsortanyfunc.go

    		wasPartitioned = alreadyPartitioned
    
    		leftLen, rightLen := mid-a, b-mid
    		balanceThreshold := length / 8
    		if leftLen < rightLen {
    			wasBalanced = leftLen >= balanceThreshold
    			pdqsortCmpFunc(data, a, mid, limit, cmp)
    			a = mid + 1
    		} else {
    			wasBalanced = rightLen >= balanceThreshold
    			pdqsortCmpFunc(data, mid+1, b, limit, cmp)
    			b = mid
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. src/slices/zsortordered.go

    		wasPartitioned = alreadyPartitioned
    
    		leftLen, rightLen := mid-a, b-mid
    		balanceThreshold := length / 8
    		if leftLen < rightLen {
    			wasBalanced = leftLen >= balanceThreshold
    			pdqsortOrdered(data, a, mid, limit)
    			a = mid + 1
    		} else {
    			wasBalanced = rightLen >= balanceThreshold
    			pdqsortOrdered(data, mid+1, b, limit)
    			b = mid
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/sort/gen_sort_variants.go

    		wasPartitioned = alreadyPartitioned
    
    		leftLen, rightLen := mid-a, b-mid
    		balanceThreshold := length / 8
    		if leftLen < rightLen {
    			wasBalanced = leftLen >= balanceThreshold
    			pdqsort{{.FuncSuffix}}(data, a, mid, limit {{.ExtraArg}})
    			a = mid + 1
    		} else {
    			wasBalanced = rightLen >= balanceThreshold
    			pdqsort{{.FuncSuffix}}(data, mid+1, b, limit {{.ExtraArg}})
    			b = mid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/compile.go

    	{name: "lowered cse", fn: cse},
    	{name: "elim unread autos", fn: elimUnreadAutos},
    	{name: "tighten tuple selectors", fn: tightenTupleSelectors, required: true},
    	{name: "lowered deadcode", fn: deadcode, required: true},
    	{name: "checkLower", fn: checkLower, required: true},
    	{name: "late phielim and copyelim", fn: copyelim},
    	{name: "tighten", fn: tighten, required: true}, // move values closer to their uses
    	{name: "late deadcode", fn: deadcode},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

        }
    
        def "diffing sets"() {
            given:
            def leftSet = left as Set
            def rightSet = right as Set
            def leftOnlySet = leftOnly as Set
            def rightOnlySet = rightOnly as Set
    
            when:
            def diff = diffSetsBy(leftSet, rightSet, transformer { it + 10 })
    
            then:
            diff.leftOnly == leftOnlySet
            diff.common.size() == common.size()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/PACTest.java

            testRC4HMac(5, data, key, expect);
        }
    
    
        @Test
        public void testRC4Checksum2 () throws PACDecodingException, GeneralSecurityException {
            String data = "seventeen eighteen nineteen twenty";
            String key = "F7D3A155AF5E238A0B7A871A96BA2AB2";
            String expect = "EB38CC97E2230F59DA4117DC5859D7EC";
            testRC4HMac(6, data, key, expect);
        }
    
    
        @Test
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Oct 01 12:01:17 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                visitFields(type.getSuperclass(), collector);
            }
    
            // Disallow instance fields. This doesn't guarantee that the object is immutable, just makes it less likely
            // We might tighten this constraint to also disallow any _code_ on immutable types that reaches out to static state
            for (Field field : type.getDeclaredFields()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    https://en.wikipedia.org/wiki/Continuous_integration[Continuous Integration] (CI) has been a long-established practice for running a build for every single change committed to version control to tighten the feedback loop.
    
    In this guide, we'll discuss how to configure link:https://github.com/features/actions/[GitHub Actions] for a Gradle project hosted on GitHub.
    
    == Introduction
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. test/live.go

    // errorcheckwithauto -0 -l -live -wb=0 -d=ssa/insert_resched_checks/off
    
    //go:build !ppc64 && !ppc64le && !goexperiment.regabiargs
    
    // ppc64 needs a better tighten pass to make f18 pass
    // rescheduling checks need to be turned off because there are some live variables across the inserted check call
    //
    // For register ABI, liveness info changes slightly. See live_regabi.go.
    
    // Copyright 2014 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top