Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 102 for shorterOf (2.28 sec)

  1. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

       *
       * But this chain is wrong because the attackerSwitch certificate is being used in a CA role even
       * though it is not a CA certificate. There are pinned certificates in the chain! The correct
       * chain is much shorter because it skips the non-CA certificate.
       *
       * ```
       *   attackerCa
       *     -> attackerIntermediate
       *         -> phonyVictim
       * ```
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. src/os/timeout_test.go

    	// at least when they are long enough to cover scheduling jitter.
    	return d * 11 / 10
    }
    
    // nextTimeout returns the next timeout to try after an operation took the given
    // actual duration with a timeout shorter than that duration.
    func nextTimeout(actual time.Duration) (next time.Duration, ok bool) {
    	if actual >= maxDynamicTimeout {
    		return maxDynamicTimeout, false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Booleans.java

       * compares, using {@link #compare(boolean, boolean)}), the first pair of values that follow any
       * common prefix, or when one array is a prefix of the other, treats the shorter array as the
       * lesser. For example, {@code [] < [false] < [false, true] < [true]}.
       *
       * <p>The returned comparator is inconsistent with {@link Object#equals(Object)} (since arrays
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Booleans.java

       * compares, using {@link #compare(boolean, boolean)}), the first pair of values that follow any
       * common prefix, or when one array is a prefix of the other, treats the shorter array as the
       * lesser. For example, {@code [] < [false] < [false, true] < [true]}.
       *
       * <p>The returned comparator is inconsistent with {@link Object#equals(Object)} (since arrays
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. src/cmd/cover/cover_test.go

    	// we don't generate tons of output if there's an inserted or deleted line.
    	for i, goldenLine := range goldenLines {
    		if i >= len(outLines) {
    			t.Fatalf("output shorter than golden; stops before line %d: %s\n", i+1, goldenLine)
    		}
    		// Convert all white space to simple spaces, for easy comparison.
    		goldenLine = strings.Join(strings.Fields(goldenLine), " ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. src/slices/slices.go

    // until one element is not equal to the other.
    // The result of comparing the first non-matching elements is returned.
    // If both slices are equal until one of them ends, the shorter slice is
    // considered less than the longer one.
    // The result is 0 if s1 == s2, -1 if s1 < s2, and +1 if s1 > s2.
    func Compare[S ~[]E, E cmp.Ordered](s1, s2 S) int {
    	for i, v1 := range s1 {
    		if i >= len(s2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Joiner.java

      /*
       * In this file, we use <? extends @Nullable Object> instead of <?> to work around a Kotlin bug
       * (see b/189937072 until we file a bug against Kotlin itself). (The two should be equivalent, so
       * we normally prefer the shorter one.)
       */
    
      /**
       * Appends the string representation of each of {@code parts}, using the previously configured
       * separator between each, to {@code appendable}.
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  8. src/net/http/pattern.go

    	// their relationship.
    	if len(segs1) == 0 && len(segs2) == 0 {
    		return rel
    	}
    	// Otherwise, the only way they could fail to be disjoint is if the shorter
    	// pattern ends in a multi. In that case, that multi is more general
    	// than the remainder of the longer pattern, so combine those two relationships.
    	if len(segs1) < len(segs2) && p1.lastSegment().multi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            expect:
            def matches = matcher.matches([candidate1, candidate2], requested, explanationBuilder)
            matches == [candidate1]
        }
    
        def "prefers a shorter match with compatible requested values and more than one extra attribute (type: #type)"() {
            given:
            def matcher = new DefaultAttributeMatcher(schema)
    
            def usage = Attribute.of("usage", String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse_test.go

    			// it must have found one with fewer parens.
    			// Unfortunately we can't check the length here, because
    			// ToString produces "\\{" for a literal brace,
    			// but "{" is a shorter equivalent in some contexts.
    			nre, err := Parse(s, testFlags)
    			if err != nil {
    				t.Errorf("Parse(%#q.String() = %#q): %v", tt.Regexp, s, err)
    				continue
    			}
    			nd := dump(nre)
    			if d != nd {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top