Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 794 for excluded (0.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/CandidateMethods.java

        }
    
        /**
         * @param methodName Method name
         * @param excludes Signature equivalences to exclude from the returned index
         * @return Overloaded candidate methods named {@literal methodName} indexed by signature equivalence except thoses
         * matching any of the signature equivalence provided in {@literal excludes} or {@literal null} if none
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSpecFactory.java

            List<Spec<FileTreeElement>> allExcludeSpecs = new ArrayList<>(2 + excludeSpecs.size());
    
            Set<String> excludes = patternSet.getExcludesView();
            if (!excludes.isEmpty()) {
                allExcludeSpecs.add(createSpec(excludes, false, patternSet.isCaseSensitive()));
            }
    
            allExcludeSpecs.add(getDefaultExcludeSpec(CaseSensitivity.forCaseSensitive(patternSet.isCaseSensitive())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.pom

            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>org/codehaus/plexus/classworlds/event/*</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <profiles>
        <profile>
          <id>debug</id>
          <build>
            <plugins>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. maven-toolchain-builder/pom.xml

                </includes>
                <excludes>
                  <exclude>org.apache.maven.toolchain.building.DefaultToolchainsBuilder#DefaultToolchainsBuilder():CONSTRUCTOR_REMOVED</exclude>
                  <exclude>org.apache.maven.toolchain.merge.MavenToolchainMerger#getToolchainModelKey(org.apache.maven.toolchain.model.ToolchainModel):METHOD_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/test/groovy/org/gradle/api/tasks/scala/ScalaCompileTest.groovy

        }
    
        def "test excludes"() {
            given:
            AbstractCompile compile = getCompile()
    
            expect:
            compile.is(compile.exclude(TEST_PATTERN_1, TEST_PATTERN_2))
            compile.getExcludes() == WrapUtil.toLinkedSet(TEST_PATTERN_1, TEST_PATTERN_2)
    
            and:
            compile.is(compile.exclude(TEST_PATTERN_3))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. maven-resolver-provider/pom.xml

        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. hack/golangci-hints.yaml

      max-issues-per-linter: 0
      max-same-issues: 0
    
      # The default excludes disable the "should have comment or be unexported" check from revive.
      # We want that to be enabled, therefore we have to disable all default excludes and
      # add those back one-by-one that we want. See https://github.com/golangci/golangci-lint/issues/456#issuecomment-617470264
      exclude-use-default: false
      exclude:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.AbstractCopyTask.xml

                    </tr>
                </thead>
                <tr>
                    <td>includes</td>
                    <td><literal>[]</literal></td>
                </tr>
                <tr>
                    <td>excludes</td>
                    <td><literal>[]</literal></td>
                </tr>
                <tr>
                    <td>source</td>
                    <td><literal>[]</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. pom.xml

    					<excludes>
    						<exclude>pom.xml</exclude>
    						<exclude>breaking-changes.xml</exclude>
    						<exclude>README.md</exclude>
    						<exclude>build.properties</exclude>
    						<exclude>src/test/resources/**</exclude>
    						<exclude>**/*.idl</exclude>
    						<exclude>**/*.css</exclude>
    						<exclude>.*</exclude>
    						<exclude>.*/**</exclude>
    						<exclude>META-INF/**</exclude>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.api-parameter-names-index.gradle.kts

    val main = sourceSets.main.get()
    val parameterNamesIndex by tasks.registering(ParameterNamesIndex::class) {
        sources.from(
            main.allJava.matching {
                include(PublicApi.includes)
                exclude(PublicApi.excludes)
            }
        )
        classpath.from(main.compileClasspath)
        classpath.from(tasks.named<JavaCompile>("compileJava"))
        classpath.from(tasks.named<GroovyCompile>("compileGroovy"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 20 15:24:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top