Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 555 for amatch (0.16 sec)

  1. guava-gwt/src/com/google/common/math/Math.gwt.xml

    David P. Baker <******@****.***> 1641482883 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/patch.example.com_indirect_v1.0.0.txt

    patch.example.com/indirect v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/indirect
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/indirect
    -- direct.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 209 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    # If a wildcard matches no packages, we should see a warning.
    ! go install example.com/cmd/nomatch...@v1.0.0
    stderr '^go: example.com/cmd/nomatch\.\.\.@v1.0.0: module example.com/cmd@v1.0.0 found, but does not contain packages matching example.com/cmd/nomatch\.\.\.$'
    go install example.com/cmd/a@v1.0.0 example.com/cmd/nomatch...@v1.0.0
    stderr '^go: warning: "example.com/cmd/nomatch\.\.\." matched no packages$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/id/stopwords.txt

    ada
    adanya
    adalah
    adapun
    agak
    agaknya
    agar
    akan
    akankah
    akhirnya
    aku
    akulah
    amat
    amatlah
    anda
    andalah
    antar
    diantaranya
    antara
    antaranya
    diantara
    apa
    apaan
    mengapa
    apabila
    apakah
    apalagi
    apatah
    atau
    ataukah
    ataupun
    bagai
    bagaikan
    sebagai
    sebagainya
    bagaimana
    bagaimanapun
    sebagaimana
    bagaimanakah
    bagi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImplTest.java

            final String sessionId = "id1";
            urlFilter.init(sessionId);
    
            assertTrue(urlFilter.match("http://example.com/"));
            assertTrue(urlFilter.match("http://example.com/a"));
            assertFalse(urlFilter.match("http://test.com/"));
            assertFalse(urlFilter.match("http://test.com/a"));
    
        }
    
        public void test_match_include_case2() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ParamsMatchingConstructorSelector.java

                    if (match == null) {
                        // We had no previous match, so choose this candidate
                        match = constructor;
                    } else if (parameterTypes.length < match.getParameterTypes().length) {
                        // We had a previous match, if this candidate has fewer parameters, choose it as the best match
                        match = constructor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

            map.put("data1", 20);
            assertTrue(docBoostMatcher.match(map));
    
            map.put("data1", 5);
            assertFalse(docBoostMatcher.match(map));
    
            map.remove("data1");
            assertFalse(docBoostMatcher.match(map));
    
            map.put("data2", 5);
            assertFalse(docBoostMatcher.match(map));
        }
    
        public void test_string() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/patch.example.com_depofdirectpatch_v1.0.0.txt

    patch.example.com/depofdirectpatch v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/depofdirectpatch
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/depofdirectpatch
    -- depofdirectpatch.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 251 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/patch.example.com_direct_v1.0.0.txt

    patch.example.com/direct v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- direct.go --
    package direct
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 336 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/patch.example.com_direct_v1.0.1.txt

    patch.example.com/direct v1.0.1
    written by hand
    
    -- .mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    	patch.example.com/depofdirectpatch v1.0.0
    )
    -- .info --
    {"Version":"v1.0.1"}
    -- go.mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    	patch.example.com/depofdirectpatch v1.0.0
    )
    -- direct.go --
    package direct
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 533 bytes
    - Viewed (0)
Back to top