Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for getAllDependencies (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/RootNode.java

        public ResolveOptimizations getResolveOptimizations() {
            return resolveOptimizations;
        }
    
        @Override
        protected List<? extends DependencyMetadata> getAllDependencies() {
            List<? extends DependencyMetadata> superDependencies = super.getAllDependencies();
            if (syntheticDependencies.isEmpty()) {
                return superDependencies;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/InspectableConfigurationFixture.groovy

                }
            } else {
                reply.append("\n   none")
            }
    
            reply.append("\nAll Dependencies:")
            if (configuration.getAllDependencies().size() > 0) {
                configuration.getAllDependencies().each { Dependency d ->
                    reply.append("\n   ").append(d)
                }
            } else {
                reply.append("\n   none")
            }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        @Override
        public DependencySet getAllDependencies() {
            if (allDependencies == null) {
                initAllDependencies();
            }
            return allDependencies;
        }
    
        @Override
        public boolean hasDependencies() {
            runDependencyActions();
            return !getAllDependencies().isEmpty();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

         *
         * In dependency graph terminology, this method returns the edges of the graph.
         *
         * @return all dependencies, including unresolved dependencies.
         */
        Set<? extends DependencyResult> getAllDependencies();
    
        /**
         * Applies given action for each dependency.
         * An instance of {@link DependencyResult} is passed as parameter to the action.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolutionResult.java

        @Override
        public AttributeContainer getRequestedAttributes() {
            return attributeDesugaring.desugar(resolutionAccess.getAttributes());
        }
    
        @Override
        public Set<? extends DependencyResult> getAllDependencies() {
            final Set<DependencyResult> out = new LinkedHashSet<>();
            allDependencies(out::add);
            return out;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjects.java

            }
    
            private static boolean doesConfigurationDependOnProject(Configuration configuration, Path identityPath) {
                Set<ProjectDependency> projectDependencies = configuration.getAllDependencies().withType(ProjectDependency.class);
                for (ProjectDependency projectDependency : projectDependencies) {
                    Path dependencyIdentityPath = ((ProjectDependencyInternal) projectDependency).getIdentityPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependency.java

            if (transitive) {
                Configuration projectConfiguration = findProjectConfiguration();
                for (Dependency dependency : projectConfiguration.getAllDependencies()) {
                    context.add(dependency);
                }
                for (DependencyConstraint dependencyConstraint : projectConfiguration.getAllDependencyConstraints()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/DependenciesAwareVersionCatalogBuilder.java

        }
    
        @Override
        public DefaultVersionCatalog build() {
            if (shouldAmendModel) {
                DependencySet allDependencies = dependenciesConfiguration.getAllDependencies();
                DependencyConstraintSet allDependencyConstraints = dependenciesConfiguration.getAllDependencyConstraints();
                Set<ModuleIdentifier> seen = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPlugin.java

            }
    
            private void collectDependencies(Configuration configuration, Collection<Dependency> dependencies, DefaultTarget target) {
                for (org.gradle.api.artifacts.Dependency dependency : configuration.getAllDependencies()) {
                    if (dependency instanceof ProjectDependency) {
                        ProjectDependency projectDependency = (ProjectDependency) dependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

    val <T : Configuration> NamedDomainObjectProvider<T>.dependencies
        get() = get().dependencies
    
    
    /**
     * See [Configuration.getAllDependencies].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().allDependencies"), level = DeprecationLevel.HIDDEN)
    val <T : Configuration> NamedDomainObjectProvider<T>.allDependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top