Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getConfigurations (0.2 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractDependencyReportTask.java

         * @return the configurations.
         */
        @Internal
        public Set<Configuration> getConfigurations() {
            return configurations;
        }
    
        /**
         * Sets the configurations to generate the report for.
         *
         * @param configurations The configuration. Must not be null.
         */
        public void setConfigurations(Set<Configuration> configurations) {
            this.configurations = configurations;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

                ProjectState targetState = projectStateRegistry.stateFor(projectResult.projectIdentity);
                ConfigurationInternal targetConfig = (ConfigurationInternal) targetState.getMutableModel().getConfigurations().findByName(projectResult.targetConfiguration);
                if (targetConfig != null) {
                    // Can be null when dependency metadata for target project has been loaded from cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

            );
        }
    
        private static Stream<? extends ConfigurationDetails> getConfigurationsWhichCouldHaveDependencyInfo(Project project) {
            return project.getConfigurations().stream()
                .map(ConfigurationInternal.class::cast)
                .filter(c -> c.isDeclarableByExtension())
                .map(ConfigurationDetails::of);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

        } // -- void addGoal( String )
    
        /**
         * Get configuration to pass to the goals.
         *
         * @return Object
         */
        public Object getConfiguration() {
            return this.configuration;
        } // -- Object getConfiguration()
    
        /**
         * Method getGoals.
         *
         * @return List
         */
        public java.util.List<String> getGoals() {
            if (this.goals == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

        } // -- void addExecution( Execution )
    
        /**
         * Get configuration to pass to all goals run in this phase.
         *
         * @return Object
         */
        public Object getConfiguration() {
            return this.configuration;
        } // -- Object getConfiguration()
    
        /**
         * Method getExecutions.
         *
         * @return List
         */
        public java.util.List<Execution> getExecutions() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvedDependency.java

            return moduleVersionId.getName();
        }
    
        @Override
        public String getModuleVersion() {
            return moduleVersionId.getVersion();
        }
    
        @Override
        public String getConfiguration() {
            return variantName;
        }
    
        @Override
        public ResolvedModuleVersion getModule() {
            return new DefaultResolvedModuleVersion(moduleVersionId);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-file-collection.txt

    Method <org.gradle.api.tasks.compile.CompileOptions.getSourcepath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (CompileOptions.java:0)
    Method <org.gradle.plugins.signing.SigningExtension.getConfiguration()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SigningExtension.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.api.tasks.SourceTask.getSource()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SourceTask.java:0)
    Method <org.gradle.api.tasks.Upload.getConfiguration()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (Upload.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top