Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 187 for getFailure (0.22 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableModuleComponentMetaDataResolveResult.java

         * @throws ModuleVersionResolveException If the resolution was not successful.
         */
        T getMetaData() throws ModuleVersionResolveException;
    
        @Override
        @Nullable
        ModuleVersionResolveException getFailure();
    
        /**
         * Marks the module version as resolved, with the given meta-data.
         */
        void resolved(T metaData);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultInternalProblemContextDetails.java

            return locations;
        }
    
        @Override
        public List<InternalSolution> getSolutions() {
            return solutions;
        }
    
        @Nullable
        @Override
        public InternalFailure getFailure() {
            return failure;
        }
    
        @Nullable
        @Override
        public InternalContextualLabel getContextualLabel() {
            return contextualLabel;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildResultLogger.java

            // Summary of validation warnings during the build
            workValidationWarningReporter.reportWorkValidationWarningsAtEndOfBuild();
    
            boolean buildSucceeded = result.getFailure() == null;
    
            StyledTextOutput textOutput = textOutputFactory.create(BuildResultLogger.class, buildSucceeded ? LogLevel.LIFECYCLE : LogLevel.ERROR);
            textOutput.println();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 08 10:17:53 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         * <p>
         * The failure can also be omitted due to limits. Its absence does not mean there was no exception causing the problem.
         */
        @Nullable
        Failure getFailure();
    
        /**
         * Returns an exception that can be thrown when this problem should result in an error.
         *
         * <p>Not every problem has a useful exception associated with it.</p>
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultSingleProblemEvent.java

            return locations;
        }
    
        @Override
        public List<Solution> getSolutions() {
            return solutions;
        }
    
        @Nullable
        @Override
        public FailureContainer getFailure() {
            return failure;
        }
    
        @Override
        public AdditionalData getAdditionalData() {
            return additionalData;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/AbstractResolutionFailureException.java

            LOGGER.info("Variant Selection Exception: {} caused by Resolution Failure: {}", this.getClass().getName(), failure.getClass().getName());
        }
    
        public ResolutionFailure getFailure() {
            return failure;
        }
    
        @Override
        public ImmutableList<String> getResolutions() {
            return resolutions;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowProviders.java

         *                 flowProviders.getBuildWorkResult().map(result -&gt;
         *                     new File(
         *                         soundsDir,
         *                         result.getFailure().isPresent() ? "sad-trombone.mp3" : "tada.mp3"
         *                     )
         *                 )
         *             )
         *         );
         *     }
         * }
         * </pre>
         *
         * @see FlowAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder.java

                        if (dependency.getFailure() != null) {
                            //by keying the failures only by 'requested' we lose some precision
                            //at edge case we'll lose info about a different exception if we have different failure for the same requested version
                            failures.put(dependency.getRequested(), dependency.getFailure());
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/TextDependencyVerificationReportRenderer.java

            if (inMultiErrors) {
                formatter.node("");
            }
            formatter.append("in repository '" + failure.getRepositoryName() + "': ");
            failure.getFailure().explainTo(formatter);
        }
    
        @Override
        public void reportAsMultipleErrors(Runnable action) {
            formatter.append("multiple problems reported:");
            formatter.startChildren();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/BuildActionResult.java

        public boolean wasCancelled() {
            return wasCancelled;
        }
    
        @Nullable
        public SerializedPayload getResult() {
            return result;
        }
    
        @Nullable
        public SerializedPayload getFailure() {
            return serializedFailure;
        }
    
        @Nullable
        public RuntimeException getException() {
            return failure;
        }
    
        public boolean hasFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top