Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 176 for excluded (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         *     exclude module: 'cglib' //by artifact name
         *     exclude group: 'org.jmock' //by group
         *     exclude group: 'org.unwanted', module: 'iAmBuggy' //by both name and group
         *   }
         * }
         * </pre>
         *
         * @param excludeProperties the properties to define the exclude rule.
         * @return this
         */
        ModuleDependency exclude(Map<String, String> excludeProperties);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                // This is a wrong behavior if property was overridden. Execution time must see overridden value instead of restored one.
                // Overridden properties keys are passed to be excluded from the restoration process.
                return Restoring(mutatedSystemProperties.filterValues { it is SystemPropertyOverride }.keys)
            }
    
            fun isSystemPropertyMutated(key: String): Boolean {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/settings.go

    	SelectorString string
    
    	// The regex specifying which tests to skip. This follows inverted semantics of golang's
    	// -test.run flag, which only supports positive match. If an entire package is meant to be
    	// excluded, it can be filtered with `go list` and explicitly passing the list of desired
    	// packages. For example: `go test $(go list ./... | grep -v bad-package)`.
    	SkipString  ArrayFlags
    	SkipMatcher *Matcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom

      <build>
        <plugins>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>org/codehaus/plexus/util/FileBasedTestCase.java</exclude>
                <exclude>**/Test*.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <distributionManagement>
        <status>deployed</status>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 767 bytes
    - Viewed (0)
  5. maven-model/pom.xml

                  <exclude>org.apache.maven.model.Dependency#clearManagementKey():METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.ModelBase#addProperty(java.lang.String,java.lang.String):METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.ModelBase#getReports():METHOD_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

            immutableCopy.sources == sources
            immutableCopy.statusScheme == ["1", "2"]
        }
    
        def exclude(String group, String module, String... confs) {
            def exclude = new DefaultExclude(DefaultModuleIdentifier.newId(group, module), confs, "whatever")
            return exclude
        }
    
        def artifact(String name, String... confs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. maven-settings/pom.xml

            <configuration>
              <parameter>
                <excludes>
                  <exclude>org.apache.maven.settings.io.xpp3.SettingsXpp3Reader#contentTransformer</exclude>
                  <exclude>org.apache.maven.settings.RuntimeInfo</exclude>
                  <exclude>org.apache.maven.settings.Settings#setModelEncoding(java.lang.String):METHOD_REMOVED</exclude>
                </excludes>
              </parameter>
            </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. maven-plugin-api/pom.xml

            <configuration>
              <parameter>
                <excludes>
                  <exclude>org.apache.maven.monitor.logging.DefaultLog</exclude>
                  <exclude>org.apache.maven.plugin.lifecycle</exclude>
                  <exclude>org.apache.maven.plugin.descriptor.PluginDescriptor#getLifecycleMapping(java.lang.String)</exclude>
                </excludes>
              </parameter>
            </configuration>
          </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. maven-toolchain-model/pom.xml

                <includes>
                  <include>org.apache.maven.toolchain.model</include>
                </includes>
                <excludes>
                  <exclude>org.apache.maven.toolchain.model.PersistedToolchains#setModelEncoding(java.lang.String):METHOD_REMOVED</exclude>
                </excludes>
                <includeExclusively>true</includeExclusively>
              </parameter>
              <oldVersion>
                <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceDirectoryExcludeIncludePatternCrossVersionSpec.groovy

            then:
            project.sourceDirectories.size() == 1
            project.sourceDirectories[0].excludes.isEmpty()
            project.sourceDirectories[0].includes.isEmpty()
        }
    
        def "Source folder has exclude and include patterns defined"() {
            setup:
            def excludePatterns = excludes.collect { "exclude '$it'" }.join('\n')
            def includePatterns = includes.collect { "include '$it'" }.join('\n')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top