Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 318 for resolutions (0.29 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultSingleProblemEvent.java

            return details;
        }
    
        @Override
        public List<Location> getLocations() {
            return locations;
        }
    
        @Override
        public List<Solution> getSolutions() {
            return solutions;
        }
    
        @Nullable
        @Override
        public FailureContainer getFailure() {
            return failure;
        }
    
        @Override
        public AdditionalData getAdditionalData() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeValidationProblemRenderer.java

            });
            if (renderSolutions) {
                List<String> allSolutions = new ArrayList<>(problem.getSolutions().size() + problem.getSolutions().size());
                allSolutions.addAll(problem.getSolutions());
                renderSolutions(formatter, allSolutions);
            }
            if (renderDocLink) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         *
         * @return the locations
         * @since 8.8
         */
        List<Location> getLocations();
    
        /**
         * Returns the list of solutions.
         *
         * @return the solutions
         * @since 8.8
         */
        List<Solution> getSolutions();
    
        /**
         * Returns the failure associated with this problem.
         *
         * @return the failure
         * @since 8.8
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    		fi, err := fsys.Stat(path)
    		return err == nil && fi.IsDir()
    	})
    }
    
    // ResolveImportPath returns the true meaning of path when it appears in parent.
    // There are two different resolutions applied.
    // First, there is Go 1.5 vendoring (golang.org/s/go15vendor).
    // If vendor expansion doesn't trigger, then the path is also subject to
    // Go 1.11 module legacy conversion (golang.org/issue/25069).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            return this;
        }
    
    
        @Override
        public InternalProblemBuilder solution(@Nullable String solution) {
            if (this.solutions == null) {
                this.solutions = new ArrayList<String>();
            }
            this.solutions.add(solution);
            return this;
        }
    
        @Override
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private static List<Solution> toSolutions(List<InternalSolution> solutions) {
            List<Solution> result = new ArrayList<>(solutions.size());
            for (InternalSolution solution : solutions) {
                result.add(new DefaultSolution(solution.getSolution()));
            }
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

        @Override
        String getContextualLabel() {
           contextualLabel
        }
    
        @Override
        String getDetails() {
           details
        }
    
        @Override
        List<String> getSolutions() {
            solutions
        }
    
        @Override
        List<ProblemLocation> getLocations() {
            locations
        }
    
        <T extends ProblemLocation> T getSingleLocation(Class<T> locationType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/calls/KtCall.kt

    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundArrayAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaCompoundVariableAccessCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaDelegatedConstructorCall
    import org.jetbrains.kotlin.analysis.api.resolution.KaErrorCallInfo
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionFailureDescriberRegistry.java

    import org.gradle.internal.component.resolution.failure.describer.IncompatibleArtifactVariantsFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.IncompatibleGraphVariantsFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.IncompatibleRequestedConfigurationFailureDescriber;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:29:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionAccess.java

    /**
     * An internal lazy reference to a graph resolution. Provides access to the inputs and
     * outputs of a graph resolution.
     */
    public interface ResolutionAccess {
    
        /**
         * Get the owner of the resolution.
         */
        ResolutionHost getHost();
    
        /**
         * Get the request attributes for this resolution. Calling this method will lock-in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top