Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 187 for getFailure (0.3 sec)

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

        public void fail(Throwable error) {
            failure = error;
        }
    
        @Override
        public T getSelected() {
            return selected;
        }
    
        @Nullable
        @Override
        public Throwable getFailure() {
            return failure;
        }
    
        @Override
        public boolean hasFailure() {
            return failure != null;
        }
    
        @Override
        public boolean hasSelected() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteDisabledDueToFailureProgressDetails.java

         * The cache key.
         *
         * @since 8.6
         */
        String getCacheKey();
    
        /**
         * The failure that caused the build cache to be disabled.
         *
         * @since 8.6
         */
        Throwable getFailure();
    
        /**
         * The type of operation that had the failure.
         *
         * @since 8.6
         */
        BuildCacheOperationType getOperationType();
    
        /**
         * The type of build cache operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:53:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DynamicProblemOperationContext.java

        }
    
        @Override
        public List<Solution> getSolutions() {
            throw new UnsupportedOperationException();
        }
    
        @Nullable
        @Override
        public FailureContainer getFailure() {
            throw new UnsupportedOperationException();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         */
        List<Solution> getSolutions();
    
        /**
         * Returns the failure associated with this problem.
         *
         * @return the failure
         * @since 8.8
         */
        @Nullable
        FailureContainer getFailure();
    
        /**
         * Returns the additional data associated with this problem.
         *
         * @return the additional data
         * @since 8.9
         */
        AdditionalData getAdditionalData();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

                switch (metaDataResolveResult.getState()) {
                    case Failed:
                        failures.add(metaDataResolveResult.getFailure());
                        if (isCriticalFailure(metaDataResolveResult.getFailure())) {
                            queue.clear();
                        }
                        break;
                    case Missing:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/ResolvedGraphDependency.java

     */
    public interface ResolvedGraphDependency {
    
        ComponentSelector getRequested();
    
        @Nullable
        ModuleVersionResolveException getFailure();
    
        /**
         * Returns the simple id of the selected component, as per {@link ResolvedGraphComponent#getResultId()}.
         */
        @Nullable
        Long getSelected();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

                    } catch (InterruptedException e) {
                        throw new RuntimeException(e);
                    }
                }
                if (failureTracker.getFailure() != null) {
                    throw failureTracker.getFailure();
                }
                if (state.isFailed()) {
                    throw state.getWaitFailure(describeCurrentState());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/BuildResult.java

            this.gradle = gradle;
            this.failure = failure;
        }
    
        @Nullable
        public Gradle getGradle() {
            return gradle;
        }
    
        @Nullable
        public Throwable getFailure() {
            return failure;
        }
    
        /**
         * The action performed by this build. Either `Build` or `Configure`.
         */
        public String getAction() {
            return action;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 14 23:28:03 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultProblemsOperationContext.java

            return solutions;
        }
    
        public AdditionalData getAdditionalData() {
            return additionalData;
        }
    
        @Nullable
        @Override
        public FailureContainer getFailure() {
            return failure;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilder.java

                }
                if (d.getFailure() != null) {
                    dependencyResult = dependencyResultFactory.createUnresolvedDependency(d.getRequested(), fromComponent, d.isConstraint(), d.getReason(), d.getFailure());
                } else {
                    DefaultResolvedComponentResult selectedComponent = components.get(d.getSelected().longValue());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top