Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,248 for excluding (0.13 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/SourceFolder.java

        public SourceFolder(Node node) {
            super(node);
            this.output = normalizePath((String) node.attribute("output"));
            this.includes = parseNodeListAttribute(node, "including");
            this.excludes = parseNodeListAttribute(node, "excluding");
        }
    
        private List<String> parseNodeListAttribute(Node node, String attributeName) {
            Object attribute = node.attribute(attributeName);
            if (attribute == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    ====
    
    [[sec:excluding-transitive-deps]]
    == Excluding transitive dependencies
    
    While the previous section showed how you can enforce a certain version of a transitive dependency, this section covers _excludes_ as a way to remove a transitive dependency completely.
    
    [WARNING]
    ====
    Similar to forcing a version of a dependency, excluding a dependency completely requires a conscious decision.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterType.java

     * limitations under the License.
     */
    package org.gradle.plugins.ide.eclipse.model;
    
    /**
     * Specifies whether an Eclipse {@link ResourceFilter} is including or excluding resources.
     *
     * @since 3.5
     */
    public enum ResourceFilterType {
        INCLUDE_ONLY,
        EXCLUDE_ALL;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 850 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

        def "can record file trees with excludes for parts of paths"() {
            def excluding = Mock(Node)
            def including = Mock(Node)
            def includingWithChildren = Mock(Node)
            def root = "/some/root/"
    
            hierarchy.recordNodeAccessingFileTree(excluding, root, excludes("child"))
            hierarchy.recordNodeAccessingFileTree(including, root, includes("child"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. licenses/github.com/spf13/cobra/LICENSE.txt

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 9.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticProjectStructureProvider.kt

     */
    public abstract class KtStaticProjectStructureProvider : ProjectStructureProvider() {
        /**
         * All [KtModule]s registered with the project structure provider, excluding [KtNotUnderContentRootModule]s and the built-ins module.
         *
         * [allKtModules] may be used by other services to pre-build caches based on the full module structure.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jul 31 15:58:00 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/internal/ModelNodeRendererTest.groovy

    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor
    import spock.lang.Specification
    
    
    class ModelNodeRendererTest extends Specification {
    
        def "should filter rules removing duplicates and excluding creators"() {
            ModelRuleDescriptor creator = Mock()
            creator.describeTo(_) >> { Appendable a ->
                a.append("creator")
            }
    
            ModelRuleDescriptor mutator = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 01 02:14:13 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  9. licenses/github.com/openshift/api/LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 16 06:16:35 UTC 2020
    - 10.5K bytes
    - Viewed (0)
  10. licenses/github.com/vishvananda/netlink/LICENSE

              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
          (d) If the Work includes a "NOTICE" text file as part of its
              distribution, then any Derivative Works that You distribute must
              include a readable copy of the attribution notices contained
              within such NOTICE file, excluding those notices that do not
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 28 00:29:20 UTC 2021
    - 10.5K bytes
    - Viewed (0)
Back to top