Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 423 for excluding (0.37 sec)

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

        /**
         * Returns whether this dependency should be resolved including or excluding its transitive dependencies.
         *
         * @see #setTransitive(boolean)
         */
        boolean isTransitive();
    
        /**
         * Sets whether this dependency should be resolved including or excluding its transitive dependencies. The artifacts
    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. src/internal/nettrace/nettrace.go

    	// ConnectStart is called before a Dial, excluding Dials made
    	// during DNS lookups. In the case of DualStack (Happy Eyeballs)
    	// dialing, this may be called multiple times, from multiple
    	// goroutines.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called after a Dial with the results, excluding
    	// Dials made during DNS lookups. It may also be called multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/groovy/settings.gradle

    rootProject.name = 'excluding-transitive-dependencies-for-dependency'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForConfiguration/groovy/settings.gradle

    rootProject.name = 'excluding-transitive-dependencies-for-configuration'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 73 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForConfiguration/kotlin/settings.gradle.kts

    rootProject.name = "excluding-transitive-dependencies-for-configuration"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 73 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/kotlin/settings.gradle.kts

    rootProject.name = "excluding-transitive-dependencies-for-dependency"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 70 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/SourceFolderTest.groovy

    import groovy.xml.XmlParser
    import spock.lang.Specification
    
    class SourceFolderTest extends Specification {
        final static String XML_TEXT = '''
                    <classpathentry including="**/Test1*|**/Test2*" excluding="**/Test3*|**/Test4*" kind="src" output="bin2" path="src">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top