Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 522 for Matcher (0.11 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. 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)
  4. 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)
  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/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)
  8. pilot/pkg/security/authz/matcher/metadata_test.go

    				MatchPattern: &matcher.ValueMatcher_ListMatch{
    					ListMatch: &matcher.ListMatcher{
    						MatchPattern: &matcher.ListMatcher_OneOf{
    							OneOf: &matcher.ValueMatcher{
    								MatchPattern: &matcher.ValueMatcher_StringMatch{
    									StringMatch: &matcher.StringMatcher{
    										MatchPattern: &matcher.StringMatcher_SafeRegex{
    											SafeRegex: &matcher.RegexMatcher{
    												Regex: regex,
    											},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

            return strippedOutput;
        }
    
        private static void findOutputs(String strippedOutput, Pattern outputPattern, Consumer<Matcher> consumer) {
            Matcher matcher = outputPattern.matcher(strippedOutput);
            while (matcher.find()) {
                consumer.accept(matcher);
            }
        }
    
        public int getTaskCount() {
            return tasks.size();
        }
    
        public int getTransformCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top