Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 429 for bsearch (0.31 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/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: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/java/org/codelibs/fess/es/user/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