Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,264 for Matcher (0.36 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/DefaultTaskSelector.java

            String searchContext = getSearchContext(targetProject, includeSubprojects);
    
            if (context.getOriginalPath().getPath().equals(taskName)) {
                throw getProblemsService().getInternalReporter().throwing(spec -> {
                    configureProblem(spec, matcher, context);
                    String message = matcher.formatErrorMessage("Task", searchContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterMatcher.java

        void setArguments(String arguments);
    
        /**
         * The child matchers of this matcher, e.g. when this is an OR-matcher.
         */
        Set<ResourceFilterMatcher> getChildren();
    
        /**
         * Adds a child/nested matcher to this matcher.
         *
         * @param configureAction The action to use to configure the matcher.
         */
        ResourceFilterMatcher matcher(Action<? super ResourceFilterMatcher> configureAction);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3RegionalResource.java

        public String getKey() {
            return key;
        }
    
    
        private void configure() {
            Matcher matcher = REGIONAL_ENDPOINT_PATTERN.matcher(uri.toString());
            if (matcher.find()) {
                String bucketName = matcher.group(1);
                String region = matcher.group(2);
                String key = matcher.group(4);
                Region derivedRegion;
                if (region.equals("external-1")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/JdkPattern.java

      }
    
      private static final class JdkMatcher extends CommonMatcher {
        final Matcher matcher;
    
        JdkMatcher(Matcher matcher) {
          this.matcher = Preconditions.checkNotNull(matcher);
        }
    
        @Override
        public boolean matches() {
          return matcher.matches();
        }
    
        @Override
        public boolean find() {
          return matcher.find();
        }
    
        @Override
        public boolean find(int index) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_matcher.go

    }
    
    type matcher struct {
    	Matcher *matching.Matcher
    }
    
    func NewPolicyMatcher(m *matching.Matcher) PolicyMatcher {
    	return &matcher{
    		Matcher: m,
    	}
    }
    
    // ValidateInitialization checks if Matcher is initialized.
    func (c *matcher) ValidateInitialization() error {
    	return c.Matcher.ValidateInitialization()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/eclipse/model/customProject.xml

                        <matcher>
                            <id>org.eclipse.ui.ide.multiFilter</id>
                            <arguments>1.0-name-matches-false-false-node_modules</arguments>
                        </matcher>
                        <matcher>
                            <id>org.eclipse.ui.ide.multiFilter</id>
                            <arguments>1.0-name-matches-false-false-target</arguments>
                        </matcher>
                    </arguments>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            expect:
            matcher.matches([candidate1, candidate2], requested, explanationBuilder) == [candidate1, candidate2]
    
            matcher.matches([candidate1], requested, explanationBuilder) == [candidate1]
            matcher.isMatching(candidate1, requested)
    
            matcher.matches([candidate2], requested, explanationBuilder) == [candidate2]
            matcher.isMatching(candidate2, requested)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/matchers.kt

    package org.gradle.kotlin.dsl.fixtures
    
    import org.hamcrest.CoreMatchers.containsString
    import org.hamcrest.Matcher
    
    
    fun containsMultiLineString(string: String): Matcher<String> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 221 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/exceptions/StyledException.java

        public void render(StyledTextOutput output) {
            Matcher matcher = STYLES_REGEX.matcher(styledMessage);
            StringBuffer buf = new StringBuffer();
            while (matcher.find()) {
                buf.setLength(0);
                matcher.appendReplacement(buf, "");
                output.text(buf);
                String styleText = matcher.group(1);
                String txt = matcher.group(3);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 06 16:25:37 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ErrorsOnStdoutScrapingExecutionFailure.java

        public ExecutionFailure assertThatCause(Matcher<? super String> matcher) {
            delegate.assertThatCause(matcher);
            return this;
        }
    
        @Override
        public ExecutionFailure assertHasDescription(String context) {
            delegate.assertHasDescription(context);
            return this;
        }
    
        @Override
        public ExecutionFailure assertThatDescription(Matcher<? super String> matcher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top