Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for getFailures (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

                            Collection<RepositoryAwareVerificationFailure> value = entry.getValue();
                            return value.stream().anyMatch(wrapper -> wrapper.getFailure().isFatal());
                        }).collect(ImmutableMap.toImmutableMap(Map.Entry::getKey, Map.Entry::getValue));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

                    return;
                }
    
                Finished notification = new Finished(finishEvent.getEndTime(), id, parentId, buildOperation.getDetails(), finishEvent.getResult(), finishEvent.getFailure());
                try {
                    notificationListener.finished(notification);
                } catch (Throwable e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. mockwebserver-deprecated/api/mockwebserver.api

    	public final fun getBody ()Lokio/Buffer;
    	public final fun getBodySize ()J
    	public final fun getChunkSizes ()Ljava/util/List;
    	public final fun getFailure ()Ljava/io/IOException;
    	public final fun getHandshake ()Lokhttp3/Handshake;
    	public final fun getHeader (Ljava/lang/String;)Ljava/lang/String;
    	public final fun getHeaders ()Lokhttp3/Headers;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

                                    StreamFailureMessage streamFailureMessage = (StreamFailureMessage) message;
                                    streamFailureHandler.handleStreamFailure(streamFailureMessage.getFailure());
                                } else {
                                    throw new IllegalArgumentException(String.format("Don't know how to handle message %s", message));
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            }
        }
    
        ExecutionResult getResult() {
            return OutputScrapingExecutionResult.from(stdout.toString(), stderr.toString())
        }
    
        ExecutionFailure getFailure() {
            return OutputScrapingExecutionFailure.from(stdout.toString(), stderr.toString())
        }
    
        def validateOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. mockwebserver/api/mockwebserver3.api

    	public final fun getBody ()Lokio/Buffer;
    	public final fun getBodySize ()J
    	public final fun getChunkSizes ()Ljava/util/List;
    	public final fun getFailure ()Ljava/io/IOException;
    	public final fun getHandshake ()Lokhttp3/Handshake;
    	public final fun getHandshakeServerNames ()Ljava/util/List;
    	public final fun getHeaders ()Lokhttp3/Headers;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 03 21:59:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedVariantDependencyResolver.java

                    throw new GradleException("Could not map coordinates for " + unresolved.getAttempted().getDisplayName() + ".", unresolved.getFailure());
                }
    
                if (dependencyResult.isConstraint()) {
                    // Constraints also appear in the graph if they contributed to it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

            this(textOutputFactory, loggingConfiguration, clientMetaData, null);
        }
    
        public void buildFinished(BuildResult result) {
            Throwable failure = result.getFailure();
            if (failure == null) {
                return;
            }
    
            execute(failure);
        }
    
        @Override
        public void execute(@Nonnull Throwable failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            _ * mock.name >> name
            _ * mock.identityPath >> project.identityPath.child(name)
            _ * mock.project >> project
            _ * mock.state >> Stub(TaskStateInternal) {
                getFailure() >> failure
                rethrowFailure() >> { throw failure }
            }
            _ * mock.taskDependencies >> Stub(TaskDependencyInternal)
            _ * mock.lifecycleDependencies >> Stub(TaskDependencyInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTest.java

            }
        }
    
        @Test
        public void propagatesGetPropertyException() {
            final RuntimeException failure = new RuntimeException();
            Bean bean = new Bean() {
                String getFailure() {
                    throw failure;
                }
            };
    
            try {
                bean.getProperty("failure");
                fail();
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 33.7K bytes
    - Viewed (0)
Back to top