Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for setTransitive (0.37 sec)

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

         * closure of its dependencies and their dependencies. The default value is true.
         *
         * @param t true if this is a transitive configuration.
         * @return this configuration
         */
        Configuration setTransitive(boolean t);
    
        /**
         * Returns the description for this configuration.
         *
         * @return the description. May be null.
         */
        @Nullable
        String getDescription();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                }
            }
            return this;
        }
    
        @Override
        public boolean isTransitive() {
            return transitive;
        }
    
        @Override
        public Configuration setTransitive(boolean transitive) {
            validateMutation(MutationType.DEPENDENCIES);
            this.transitive = transitive;
            return this;
        }
    
        @Override
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top