Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,134 for bsearch (0.14 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 (1)
  2. 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)
  3. 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)
  4. 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)
  5. src/regexp/testdata/README

    AT&T POSIX Test Files
    See textregex.c for copyright + license.
    
    testregex.c	http://www2.research.att.com/~gsf/testregex/testregex.c
    basic.dat	http://www2.research.att.com/~gsf/testregex/basic.dat
    nullsubexpr.dat	http://www2.research.att.com/~gsf/testregex/nullsubexpr.dat
    repetition.dat	http://www2.research.att.com/~gsf/testregex/repetition.dat
    
    The test data has been edited to reflect RE2/Go differences:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 27 20:18:25 UTC 2015
    - 957 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. docs/security/security.md

    
    [gradle_verification]: https://docs.gradle.org/current/userguide/dependency_verification.html#sec:signature-verification
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top