Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,121 for longerst (0.15 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/registry/core/pod/rest/log.go

    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    )
    
    // LogREST implements the log endpoint for a Pod
    type LogREST struct {
    	KubeletConn client.ConnectionInfoGetter
    	Store       *genericregistry.Store
    }
    
    // LogREST implements GetterWithOptions
    var _ = rest.GetterWithOptions(&LogREST{})
    
    // New creates a new Pod log options object
    func (r *LogREST) New() runtime.Object {
    	// TODO - return a resource that represents a log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 24 10:50:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/net/http/servemux121.go

    // Find a handler on a handler map given a path string.
    // Most-specific (longest) pattern wins.
    func (mux *serveMux121) match(path string) (h Handler, pattern string) {
    	// Check for exact match first.
    	v, ok := mux.m[path]
    	if ok {
    		return v.h, v.pattern
    	}
    
    	// Check for longest valid match.  mux.es contains all patterns
    	// that end in / sorted from longest to shortest.
    	for _, e := range mux.es {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top