Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 965 for excluded (0.15 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["*.foo.*"]              | "fooTest"                 | "aaaa"                | false
            ["*.foo.*"]              | "foo"                     | "aaaa"                | false
        }
    
        def "knows if excluded test matches class"() {
            expect:
            matcher([], input, []).matchesTest(className, methodName) == match
    
            where:
            input                    | className                 | methodName            | match
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            if (!defaultBuild.isProjectsCreated()) {
                // Too early to resolve excludes
                return new Filter(defaultBuild, Specs.satisfyNone());
            }
            TaskSelector.SelectionContext selection = sanityCheckPath(taskName, "excluded tasks");
            ProjectResolutionResult resolutionResult = resolveProject(selection, selection.getOriginalPath(), defaultBuild);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                String id = artifact.getGroupId() + ":" + artifact.getArtifactId();
                if (providedArtifacts.contains(id)) {
                    log.debug("  Excluded {}", id);
                } else {
                    File file = artifact.getFile();
                    log.debug("  Included {} located at {}", id, file);
                    realm.addURL(file.toURI().toURL());
                }
            }
            return CoreExtensionEntry.discoverFrom(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

        }
    
        private List<String> parsePluginExcludes(RepositorySystemSession session) {
            String excludes = ConfigUtils.getString(session, null, MAVEN_PLUGIN_VALIDATION_EXCLUDES_KEY);
            if (excludes == null || excludes.isEmpty()) {
                return Collections.emptyList();
            }
            return Arrays.stream(excludes.split(","))
                    .map(String::trim)
                    .filter(s -> !s.isEmpty())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

              desiredType, Optional.fromNullable(PublicSuffixPatterns.EXACT.get(ancestorName)))) {
            return i;
          }
    
          // Excluded domains (e.g. !nhs.uk) use the next highest
          // domain as the effective public suffix (e.g. uk).
    
          if (PublicSuffixPatterns.EXCLUDED.containsKey(ancestorName)) {
            return i + 1;
          }
        }
    
        return NO_SUFFIX_FOUND;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Excluded Paths For Crawling */
        public static final String LABELS_EXCLUDED_PATHS = "{labels.excludedPaths}";
    
        /** The key of the message: Excluded URLs For Crawling */
        public static final String LABELS_EXCLUDED_URLS = "{labels.excludedUrls}";
    
        /** The key of the message: Excluded Paths For Indexing */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    // FromTag reports closest matching ID for an internal language Tag.
    func FromTag(t language.Tag) (id ID, exact bool) {
    	// TODO: perhaps give more frequent tags a lower index.
    	// TODO: we could make the indexes stable. This will excluded some
    	//       possibilities for optimization, so don't do this quite yet.
    	exact = true
    
    	b, s, r := t.Raw()
    	if t.HasString() {
    		if t.IsPrivateUse() {
    			// We have no entries for user-defined tags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      optional string expression = 2;
    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    message MatchResources {
      // NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. pilot/pkg/features/experimental.go

    		false,
    		"If enabled, istiod will automatically generate Kubernetes "+
    			"Multi-Cluster Services (MCS) ServiceExport resources for every "+
    			"service in the mesh. Services defined to be cluster-local in "+
    			"MeshConfig are excluded.",
    	).Get()
    
    	EnableMCSServiceDiscovery = env.Register(
    		"ENABLE_MCS_SERVICE_DISCOVERY",
    		false,
    		"If enabled, istiod will enable Kubernetes Multi-Cluster "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertPathSuffixEquals("main.included", pom.getValue("build/resources[1]/includes[1]"));
            assertEquals(1, ((List<?>) pom.getValue("build/resources[1]/excludes")).size());
            assertPathSuffixEquals("main.excluded", pom.getValue("build/resources[1]/excludes[1]"));
    
            assertEquals(1, ((List<?>) pom.getValue("build/testResources")).size());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
Back to top