Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,737 for pattern1 (0.27 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/PatternConcatenationFilterFactory.java

                logger.debug("pattern1: {}, pattern2: {}", pattern1Str, pattern2Str);
            }
            if (pattern1Str != null) {
                pattern1 = Pattern.compile(pattern1Str);
                pattern2 = Pattern.compile(pattern2Str);
            }
        }
    
        @Override
        public TokenStream create(final TokenStream tokenStream) {
            return new PatternConcatenationFilter(tokenStream, pattern1, pattern2);
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionListerTest.groovy

            0 * _
        }
    
        def 'overlapping patterns filter out parts matching more than one pattern'() {
            def resource1 = Mock(ExternalResource)
    
            when:
            def pattern1 = pattern("/[organisation]/[module]/[revision]/ivy-[revision].xml")
            def pattern2 = pattern("/[organisation]/[module]/ivy-[revision].xml")
            lister.listVersions(module, artifact, [pattern1, pattern2], result)
            def versions = result.versions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/MavenVersionListerTest.groovy

        }
    
        def "builds union of versions"() {
            LocallyAvailableExternalResource resource1 = Mock()
            LocallyAvailableExternalResource resource2 = Mock()
            def pattern1 = pattern("prefix1/" + MavenPattern.M2_PATTERN)
            def pattern2 = pattern("prefix2/" + MavenPattern.M2_PATTERN)
            def location1 = new ExternalResourceName('prefix1/org/acme/testproject/maven-metadata.xml')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ['org.gradle.Foo$1$2.test']       | "org.gradle.Foo"     | true
        }
    
        def 'can use multiple patterns'() {
            expect:
            matcher(pattern1, [], pattern2).mayIncludeClass(fullQualifiedName) == maybeMatch
    
            where:
            pattern1                | pattern2                        | fullQualifiedName     | maybeMatch
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/scala/ScalaCompileTest.groovy

    import org.gradle.util.internal.WrapUtil
    
    class ScalaCompileTest extends AbstractConventionTaskTest {
        public static final String TEST_PATTERN_1 = "pattern1"
        public static final String TEST_PATTERN_2 = "pattern2"
        public static final String TEST_PATTERN_3 = "pattern3"
    
        protected File srcDir
        protected File destDir
        protected File depCacheDir
    
        private ScalaCompile scalaCompile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

    import static org.gradle.util.internal.WrapUtil.toSet
    
    class TestTest extends AbstractConventionTaskTest {
        static final String TEST_PATTERN_1 = "pattern1"
        static final String TEST_PATTERN_2 = "pattern2"
        static final String TEST_PATTERN_3 = "pattern3"
    
        private File classesDir
        private File resultsDir
        private File binResultsDir
        private File reportDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/build.go

    			significantly more expensive.
    		Sets -cover.
    	-coverpkg pattern1,pattern2,pattern3
    		For a build that targets package 'main' (e.g. building a Go
    		executable), apply coverage analysis to each package matching
    		the patterns. The default is to apply coverage analysis to
    		packages in the main Go module. See 'go help packages' for a
    		description of package patterns.  Sets -cover.
    	-v
    		print the names of packages as they are compiled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. src/net/http/pattern.go

    // than the other.
    //
    //	Precedence is defined by two rules:
    //	1. Patterns with a host win over patterns without a host.
    //	2. Patterns whose method and path is more specific win. One pattern is more
    //	   specific than another if the second matches all the (method, path) pairs
    //	   of the first and more.
    //
    // If rule 1 doesn't apply, then two patterns conflict if their relationship
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //			significantly more expensive.
    //		Sets -cover.
    //	-coverpkg pattern1,pattern2,pattern3
    //		For a build that targets package 'main' (e.g. building a Go
    //		executable), apply coverage analysis to each package matching
    //		the patterns. The default is to apply coverage analysis to
    //		packages in the main Go module. See 'go help packages' for a
    //		description of package patterns.  Sets -cover.
    //	-v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    			significantly more expensive.
    	    Sets -cover.
    
    	-coverpkg pattern1,pattern2,pattern3
    	    Apply coverage analysis in each test to packages matching the patterns.
    	    The default is for each test to analyze only the package being tested.
    	    See 'go help packages' for a description of package patterns.
    	    Sets -cover.
    
    	-cpu 1,2,4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top