Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 467 for Matcher (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/Cookie.kt

          var month = -1
          var year = -1
          val matcher = TIME_PATTERN.matcher(s)
    
          while (pos < limit) {
            val end = dateCharacterOffset(s, pos + 1, limit, true)
            matcher.region(pos, end)
    
            when {
              hour == -1 && matcher.usePattern(TIME_PATTERN).matches() -> {
                hour = matcher.group(1).toInt()
                minute = matcher.group(2).toInt()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

            getMainContent().eachLine(line -> {
                java.util.regex.Matcher matcher = pattern.matcher(line);
                if (matcher.matches()) {
                    String taskStatusLine = matcher.group().replace(TASK_PREFIX, "");
                    String taskName = matcher.group(2);
                    if (!includeBuildSrc && taskName.startsWith(":buildSrc:")) {
                        return;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            int lineNum = 0;
            for (final String line : values) {
                final Matcher matcher = pattern.matcher(line);
                if (matcher.matches()) {
                    if (lineNum == 0) {
                        lineNum = Integer.parseInt(matcher.group(1));
                        list.clear();
                    }
                    list.add(matcher.group(2));
                } else {
                    list.add(line);
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

                } else {
                    // handle tree
                    Matcher matcher = TREE_PATH.matcher(path);
                    if (!matcher.matches()) {
                        throw new IllegalStateException("Cached entry format error, invalid contents: " + path);
                    }
    
                    String treeName = unescape(matcher.group(2));
                    CacheableTree tree = treesByName.get(treeName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                mutable.applicationModulepath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
                mutable.implementationClasspath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
                mutable.implementationModulepath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pkg/bootstrap/option/instances_test.go

    			key:      "inclusionSuffix",
    			option:   option.EnvoyStatsMatcherInclusionSuffix(make([]string, 0)),
    			expected: nil,
    		},
    		{
    			testName: "envoy stats matcher inclusion suffix",
    			key:      "inclusionSuffix",
    			option:   option.EnvoyStatsMatcherInclusionSuffix([]string{"fake"}),
    			expected: []string{"fake"},
    		},
    		{
    			testName: "envoy stats matcher inclusion regexp nil",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot-dashboard.gen.json

                      "matcher": {
                         "id": "byName",
                         "options": "lds"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Listeners"
                         }
                      ]
                   },
                   {
                      "matcher": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    	case *networking.StringMatch_Prefix:
    		return &matcher.StringMatcher{MatchPattern: &matcher.StringMatcher_Prefix{Prefix: m.Prefix}}
    	case *networking.StringMatch_Regex:
    		return &matcher.StringMatcher{
    			MatchPattern: &matcher.StringMatcher_SafeRegex{
    				SafeRegex: &matcher.RegexMatcher{
    					Regex: m.Regex,
    				},
    			},
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

        }
    
        private List<String> filterMatchedValues(List<String> all, final Pattern p) {
            List<String> ret = new ArrayList<>(all.size());
            for (String path : all) {
                Matcher m = p.matcher(path);
                if (m.matches()) {
                    String value = m.group(1);
                    ret.add(value);
                }
            }
            return ret;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

            lock.lock();
            try {
                active.remove(thread);
                Matcher<? extends Throwable> matcher = expectedFailure.get();
                if (failure != null) {
                    if (matcher != null && matcher.matches(failure)) {
                        LOGGER.debug("Finished {} with expected failure.", thread);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top