Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,226 for longerst (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/performance/tests-longest.png

    tests-longest.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 112.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/StyledTableTest.groovy

                    new StyledTable.Row(["tiny", "even longer"], StyledTextOutput.Style.Normal)
                ]
            )
    
            expect:
            StyledTableUtil.toString(table) == """
                | a         | b           |
                |-----------|-------------|
                | foo       | bar         |
                | very long | short       |
                | tiny      | even longer |
            """.stripIndent(true).trim()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 25 00:22:38 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. src/regexp/backtrack.go

    			}
    			if old := b.matchcap[1]; old == -1 || (longest && pos > 0 && pos > old) {
    				copy(b.matchcap, b.cap)
    			}
    
    			// If going for first match, we're done.
    			if !longest {
    				return true
    			}
    
    			// If we used the entire text, no longer match is possible.
    			if pos == b.end {
    				return true
    			}
    
    			// Otherwise, continue on in hope of a longer match.
    			continue
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_ambiguous_pkg.txt

    # 'go mod tidy' would arbitrarily choose the one with the longer path,
    # but 'go mod tidy' also arbitrarily chooses the latest version.
    
    cp go.mod go.mod.orig
    
    
    # From a clean slate, 'go get' currently does the same thing as 'go mod tidy':
    # it resolves the package from the module with the longest matching prefix.
    
    go get example.net/ambiguous/nested/pkg@v0.1.0
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

            // We've chosen a connection to evict. Confirm it's still okay to be evicted, then close it.
            toEvict.withLock {
              if (toEvict.calls.isNotEmpty()) return 0L // No longer idle.
              if (toEvict.idleAtNs != toEvictIdleAtNs) return 0L // No longer oldest.
              toEvict.noNewExchanges = true
              connections.remove(toEvict)
            }
            addressStates[toEvict.route.address]?.scheduleOpener()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

    }
    
    /** Encodes an IPv6 address in canonical form according to RFC 5952. */
    internal fun inet6AddressToAscii(address: ByteArray): String {
      // Go through the address looking for the longest run of 0s. Each group is 2-bytes.
      // A run must be longer than one group (section 4.2.2).
      // If there are multiple equal runs, the first one must be used (section 4.2.3).
      var longestRunOffset = -1
      var longestRunLength = 0
      run {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/regexp/regexp.go

    	// This field can be modified by the Longest method,
    	// but it is otherwise read-only.
    	longest bool // whether regexp prefers leftmost-longest match
    }
    
    // String returns the source text used to compile the regular expression.
    func (re *Regexp) String() string {
    	return re.expr
    }
    
    // Copy returns a new [Regexp] object copied from re.
    // Calling [Regexp.Longest] on one copy does not affect another.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/internal/diff/diff.go

    		l[len(l)-1] += "\n\\ No newline at end of file\n"
    	}
    	return l
    }
    
    // tgs returns the pairs of indexes of the longest common subsequence
    // of unique lines in x and y, where a unique line is one that appears
    // once in x and once in y.
    //
    // The longest common subsequence algorithm is as described in
    // Thomas G. Szymanski, “A Special Case of the Maximal Common
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. src/regexp/exec_test.go

    	re.longest = false
    	return re.MatchString(text), ""
    }
    
    func matchFullLongest(re, refull *Regexp, text string) (bool, string) {
    	refull.longest = true
    	return refull.MatchString(text), "[full,longest]"
    }
    
    func matchPartialLongest(re, refull *Regexp, text string) (bool, string) {
    	re.longest = true
    	return re.MatchString(text), "[longest]"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pkg/config/host/names.go

    // In a few locations we care about the order hostnames appear in Envoy config: primarily HTTP routes, but also in
    // gateways, and for SNI. In those locations, we sort hostnames longest to shortest with wildcards last.
    type Names []Name
    
    // prove we implement the interface at compile time
    var _ sort.Interface = Names{}
    
    func (h Names) Len() int {
    	return len(h)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top