Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,479 for search (0.12 sec)

  1. src/sort/search.go

    // This file implements binary search.
    
    package sort
    
    // Search uses binary search to find and return the smallest index i
    // in [0, n) at which f(i) is true, assuming that on the range [0, n),
    // f(i) == true implies f(i+1) == true. That is, Search requires that
    // f is false for some (possibly empty) prefix of the input range [0, n)
    // and then true for the (possibly empty) remainder; Search returns
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-11-28 16:40
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/search.go

    // against the standard library (std and cmd) in GOROOT/src.
    func MatchInModule(ctx context.Context, pattern string, m module.Version, tags map[string]bool) *search.Match {
    	match := search.NewMatch(pattern)
    	if m == (module.Version{}) {
    		matchPackages(ctx, match, tags, includeStd, nil)
    	}
    
    	LoadModFile(ctx) // Sets Target, needed by fetch and matchPackages.
    
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-11-08 17:55
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/search.go

    package load
    
    import (
    	"path/filepath"
    	"strings"
    
    	"cmd/go/internal/search"
    	"cmd/internal/pkgpattern"
    )
    
    // MatchPackage(pattern, cwd)(p) reports whether package p matches pattern in the working directory cwd.
    func MatchPackage(pattern, cwd string) func(*Package) bool {
    	switch {
    	case search.IsRelativePath(pattern):
    		// Split pattern into leading pattern-free directory path
    Registered: 2024-06-12 16:32
    - Last Modified: 2022-09-27 16:43
    - 1.7K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/search.jsp

    							<c:if test="${s.index < 3}">
    								<la:link
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    							<c:if test="${3 <= s.index}">
    								<la:link styleClass="d-none d-sm-inline"
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    						</c:forEach>
    					</p>
    Registered: 2024-06-12 13:08
    - Last Modified: 2023-02-17 12:13
    - 6.6K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/search.jsp

    							<c:if test="${s.index < 3}">
    								<la:link
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    							<c:if test="${3 <= s.index}">
    								<la:link styleClass="d-none d-sm-inline"
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    						</c:forEach>
    					</p>
    Registered: 2024-06-12 13:08
    - Last Modified: 2023-02-17 12:13
    - 6.6K bytes
    - Viewed (0)
  6. src/main/webapp/js/search.js

                i;
            if (data.record_count > 0) {
              docIds = data.data;
              for (i = 0; i < docIds.length; i++) {
                docIds[i] = "#" + docIds[i].doc_id;
              }
              $favorites.each(function(index) {
                var $favorite = $(this),
                    url = $favorite.attr("href"),
                    found = false,
                    $favorited,
                    i;
    Registered: 2024-06-12 13:08
    - Last Modified: 2023-03-30 05:45
    - 7.5K bytes
    - Viewed (1)
  7. src/cmd/go/internal/search/search.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package search
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/str"
    	"cmd/internal/pkgpattern"
    	"fmt"
    	"go/build"
    	"io/fs"
    	"os"
    	"path"
    	"path/filepath"
    	"strings"
    )
    
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-01-31 20:33
    - 15.4K bytes
    - Viewed (0)
  8. src/strings/search.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strings
    
    // stringFinder efficiently finds strings in a source text. It's implemented
    // using the Boyer-Moore string search algorithm:
    // https://en.wikipedia.org/wiki/Boyer-Moore_string_search_algorithm
    // https://www.cs.utexas.edu/~moore/publications/fstrpos.pdf (note: this aged
    // document uses 1-based indexing)
    type stringFinder struct {
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-08-07 18:49
    - 4.1K bytes
    - Viewed (0)
  9. src/net/testdata/search-resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    search test invalid
    Registered: 2024-06-12 16:32
    - Last Modified: 2014-09-08 04:08
    - 78 bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/alias/fess.search.json

    Shinsuke Sugaya <******@****.***> 1472095477 +0900
    Registered: 2024-06-12 13:08
    - Last Modified: 2016-08-25 03:25
    - 2 bytes
    - Viewed (0)
Back to top