Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,283 for search_ (0.21 sec)

  1. src/main/webapp/js/search.js

    Shinsuke Sugaya <******@****.***> 1680155124 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/net/testdata/search-single-dot-resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    search .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 03:01:14 UTC 2022
    - 67 bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/SortedLists.java

              @ParametricNullness E key,
              List<? extends E> list,
              int foundIndex) {
            // Of course, we have to use binary search to find the precise
            // breakpoint...
            int lower = 0;
            int upper = foundIndex;
            // Of course, we have to use binary search to find the precise breakpoint...
            // Everything between lower and upper inclusive compares at <= 0.
            while (lower < upper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/SortedLists.java

              @ParametricNullness E key,
              List<? extends E> list,
              int foundIndex) {
            // Of course, we have to use binary search to find the precise
            // breakpoint...
            int lower = 0;
            int upper = foundIndex;
            // Of course, we have to use binary search to find the precise breakpoint...
            // Everything between lower and upper inclusive compares at <= 0.
            while (lower < upper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/regexp/testdata/re2-search.txt

    # RE2 basic search tests built by make log
    # Wed May 12 12:13:22 EDT 2021
    Regexp.SearchTests
    strings
    ""
    "a"
    regexps
    "a"
    -;-;-;-
    0-1;0-1;0-1;0-1
    "^(?:a)$"
    -;-;-;-
    0-1;0-1;0-1;0-1
    "^(?:a)"
    -;-;-;-
    0-1;0-1;0-1;0-1
    "(?:a)$"
    -;-;-;-
    0-1;0-1;0-1;0-1
    strings
    ""
    "zyzzyva"
    regexps
    "a"
    -;-;-;-
    -;6-7;-;6-7
    "^(?:a)$"
    -;-;-;-
    -;-;-;-
    "^(?:a)"
    -;-;-;-
    -;-;-;-
    "(?:a)$"
    -;-;-;-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 42.4K bytes
    - Viewed (0)
  6. pkg/kubelet/network/dns/dns.go

    			}
    		}
    		if fields[0] == "search" {
    			// Normalise search fields so the same domain with and without trailing dot will only count once, to avoid hitting search validation limits.
    			searches = []string{}
    			for _, s := range fields[1:] {
    				if s != "." {
    					searches = append(searches, strings.TrimSuffix(s, "."))
    				}
    			}
    		}
    		if fields[0] == "options" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/alias/fess.search.json

    Shinsuke Sugaya <******@****.***> 1472095477 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 25 03:25:32 UTC 2016
    - 2 bytes
    - Viewed (0)
  8. src/net/dnsclient_unix_test.go

    		},
    		{
    			desc: "searchX error fails in strict mode",
    			resolveWhich: func(quest dnsmessage.Question) resolveWhichEnum {
    				if quest.Name.String() == searchX {
    					return resolveTimeout
    				}
    				return resolveOK
    			},
    			wantStrictErr: makeTimeout(),
    			wantIPs:       []string{ip4, ip6},
    		},
    		{
    			desc: "searchX IPv4-only timeout fails in strict mode",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. pkg/kubelet/network/dns/dns_test.go

    		{"search ", []string{}, []string{}, []string{}, false},  // search empty
    		{"search .", []string{}, []string{}, []string{}, false}, // ignore lone dot
    		{"search . foo", []string{}, []string{"foo"}, []string{}, false},
    		{"search foo .", []string{}, []string{"foo"}, []string{}, false},
    		{"search foo .  bar", []string{}, []string{"foo", "bar"}, []string{}, false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

    import org.lastaflute.web.util.LaRequestUtil;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.common.document.DocumentField;
    import org.opensearch.search.SearchHit;
    import org.opensearch.search.SearchHits;
    import org.opensearch.search.aggregations.Aggregations;
    import org.opensearch.search.fetch.subphase.highlight.HighlightField;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top