Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 303 for watcher (0.43 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/TestableDaemon.groovy

                Pattern.MULTILINE + Pattern.DOTALL);
    
            Matcher matcher = pattern.matcher(daemonLog.text);
            assert matcher.matches(): "Unable to find daemon address in the daemon log. Daemon: $context"
    
            try {
                return Integer.parseInt(matcher.group(1))
            } catch (NumberFormatException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/filters.go

    		return match.NotRegularPod.GetMatches(instances)
    	}
    }
    
    // FilterMatch returns a filter that simply applies the given matcher.
    func FilterMatch(matcher match.Matcher) Filter {
    	return func(instances echo.Instances) echo.Instances {
    		return matcher.GetMatches(instances)
    	}
    }
    
    // SameNetwork filters out destinations that are on a different network from the source.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/DefaultOsXJavaHomeCommand.java

        static Set<File> parse(Reader output) {
            BufferedReader reader = new BufferedReader(output);
            return reader.lines().flatMap(line -> {
                Matcher matcher = INSTALLATION_PATTERN.matcher(line);
                if (matcher.matches()) {
                    String javaHome = matcher.group(1);
                    return Stream.of(javaHome);
                }
                return Stream.empty();
            }).map(File::new).collect(Collectors.toSet());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionFailure.java

         */
        ExecutionFailure assertThatDescription(Matcher<? super String> matcher);
    
        /**
         * Asserts that there all failures match the given description (ie the bit after '* What went wrong').
         *
         * <p>Error messages are normalized to use new-line char as line separator.
         */
        ExecutionFailure assertThatAllDescriptions(Matcher<? super String> matcher);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_internal_test.go

    		ForwardNotMatchingPreflights: wrapperspb.Bool(false),
    		AllowOriginStringMatch: []*matcher.StringMatcher{
    			{MatchPattern: &matcher.StringMatcher_Exact{Exact: "exact"}},
    			{MatchPattern: &matcher.StringMatcher_Prefix{Prefix: "prefix"}},
    			{
    				MatchPattern: &matcher.StringMatcher_SafeRegex{
    					SafeRegex: &matcher.RegexMatcher{
    						Regex: "regex",
    					},
    				},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/AbstractKotlinScriptModelCrossVersionTest.groovy

                            }
                        } as Collection<Matcher<Iterable<? super File>>>
                    } as Collection<Matcher<Iterable<? super File>>>
    
                def resourceDirs =
                    sourceRoots.sourceSets.collect { sourceSet ->
                        hasLanguageDir(sourceRoots.projectDir, sourceSet, "resources")
                    } as Collection<Matcher<Iterable<? super File>>>
    
                languageDirs + resourceDirs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

        }
    
        private static class ClassMethodNameFilter implements PostDiscoveryFilter {
            private final TestSelectionMatcher matcher;
    
            private ClassMethodNameFilter(TestSelectionMatcher matcher) {
                this.matcher = matcher;
            }
    
            @Override
            public FilterResult apply(TestDescriptor descriptor) {
                if (classMatch(descriptor)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

                Matcher matcher = text =~ /(mavenCentral\(\))/
                boolean matched = false
                matcher.find() // skip first match in pluginManagement {}
                if (matcher.find()) {
                    matched = true // matched dependencyResolutionManagement {}
                    def result = matcher.toMatchResult()
                    text.replace(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/internal/bisect/bisect.go

    )
    
    // New creates and returns a new Matcher implementing the given pattern.
    // The pattern syntax is defined in the package doc comment.
    //
    // In addition to the pattern syntax syntax, New("") returns nil, nil.
    // The nil *Matcher is valid for use: it returns true from ShouldEnable
    // and false from ShouldPrint for all changes. Callers can avoid calling
    // [Hash], [Matcher.ShouldEnable], and [Matcher.ShouldPrint] entirely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                java.util.regex.Matcher matcher = LOCATION_PATTERN.matcher(failureMessage);
                if (matcher.find()) {
                    fileNames.add(matcher.group(1));
                    lineNumbers.add(matcher.group(3));
                    failures.add(new FailureDetails(failure, failureMessage.substring(matcher.end()).trim(), causes));
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top