Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 880 for bsearch (0.45 sec)

  1. src/strconv/quote.go

    		rr, isPrint, isNotPrint := uint16(r), isPrint16, isNotPrint16
    		i, _ := bsearch(isPrint, rr)
    		if i >= len(isPrint) || rr < isPrint[i&^1] || isPrint[i|1] < rr {
    			return false
    		}
    		_, found := bsearch(isNotPrint, rr)
    		return !found
    	}
    
    	rr, isPrint, isNotPrint := uint32(r), isPrint32, isNotPrint32
    	i, _ := bsearch(isPrint, rr)
    	if i >= len(isPrint) || rr < isPrint[i&^1] || isPrint[i|1] < rr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/sort/search.go

    	return Search(len(a), func(i int) bool { return a[i] >= x })
    }
    
    // Search returns the result of applying [SearchInts] to the receiver and x.
    func (p IntSlice) Search(x int) int { return SearchInts(p, x) }
    
    // Search returns the result of applying [SearchFloat64s] to the receiver and x.
    func (p Float64Slice) Search(x float64) int { return SearchFloat64s(p, x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. pkg/kubelet/network/dns/dns_test.go

    		{"search foo bar", []string{}, []string{"foo", "bar"}, []string{}, false},
    		{"search foo. bar", []string{}, []string{"foo", "bar"}, []string{}, false},
    		{"search foo bar bat\n", []string{}, []string{"foo", "bar", "bat"}, []string{}, false},
    		{"search foo\nsearch bar", []string{}, []string{"bar"}, []string{}, false},
    		{"nameserver 1.2.3.4\nsearch foo bar", []string{"1.2.3.4"}, []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)
  5. src/net/dnsclient_unix_test.go

    	defer conf.teardown()
    
    	confData := []string{
    		"nameserver 192.0.2.53",
    		"search x.golang.org y.golang.org",
    	}
    	if err := conf.writeAndUpdate(confData); err != nil {
    		t.Fatal(err)
    	}
    
    	const name = "test-issue19592"
    	const server = "192.0.2.53:53"
    	const searchX = "test-issue19592.x.golang.org."
    	const searchY = "test-issue19592.y.golang.org."
    	const ip4 = "192.0.2.1"
    	const ip6 = "2001:db8::1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

        //                                                                      Search Execute
        //                                                                      ==============
        @Execute
        public HtmlResponse index(final SearchForm form) {
            return search(form);
        }
    
        @Execute
        public HtmlResponse advance(final SearchForm form) {
            if (isLoginRequired()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

        // Search Execute
        // ==============
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final ListForm form) {
            saveToken();
            validate(form, messages -> {}, () -> asHtml(path_AdminError_AdminErrorJsp));
            return asListHtml();
        }
    
        protected HtmlResponse doSearch(final ListForm form) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            List<String> docIds = new ArrayList<>();
            Response response = given().contentType("application/json").param("scroll", "1m").param("q", queryString)
                    .get(getEsUrl() + "/" + DOC_INDEX_NAME + "/_search");
            JsonPath jsonPath = JsonPath.from(response.asString());
            String scrollId = jsonPath.getString("_scroll_id");
            while (true) {
                List<String> resultIds = jsonPath.getList("hits.hits._id");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. README.md

    *   [TensorFlow Code Search](https://cs.opensource.google/tensorflow/tensorflow)
    
    Learn more about the
    [TensorFlow community](https://www.tensorflow.org/community) and how to
    [contribute](https://www.tensorflow.org/community/contribute).
    
    ## Courses
    
    * [Coursera](https://www.coursera.org/search?query=TensorFlow)
    * [Udacity](https://www.udacity.com/courses/all?search=TensorFlow)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 15:00:10 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.MaxAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top