Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 958 for longerst (0.26 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. 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)
  9. src/internal/syscall/windows/registry/key.go

    	SubKeyCount     uint32
    	MaxSubKeyLen    uint32 // size of the key's subkey with the longest name, in Unicode characters, not including the terminating zero byte
    	ValueCount      uint32
    	MaxValueNameLen uint32 // size of the key's longest value name, in Unicode characters, not including the terminating zero byte
    	MaxValueLen     uint32 // longest data component among the key's values, in bytes
    	lastWriteTime   syscall.Filetime
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. pilot/pkg/simulation/traffic.go

    				return vh
    			}
    		}
    	}
    	// prefix match
    	var bestMatch *route.VirtualHost
    	longest := 0
    	for _, vh := range rc.VirtualHosts {
    		for _, d := range vh.Domains {
    			if d[0] != '*' {
    				continue
    			}
    			if len(host) >= len(d) && strings.HasSuffix(host, d[1:]) && len(d) > longest {
    				bestMatch = vh
    				longest = len(d)
    			}
    		}
    	}
    	if bestMatch != nil {
    		return bestMatch
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top