- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 78 for setResult (0.05 sec)
-
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt
fun <T : Any?> executeQuery(apiSourceFile: ApiSourceFile.Java, query: JavaSourceQuery<T>): T = openJavaCompilationUnitsByFile .computeIfAbsent(apiSourceFile.currentFile) { JavaParser().parse(it).getResult().get() } .accept(query.visitor, null) ?: query.defaultValue fun <T : Any?> executeQuery(apiSourceFile: ApiSourceFile.Kotlin, transform: (KtFile) -> T): T =Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Apr 28 14:56:52 UTC 2025 - 4.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java
projectExecutionListener.afterProjectExecutionSuccess( new ProjectExecutionEvent(session, currentProject, mojoExecutions)); reactorContext .getResult() .addBuildSummary(new BuildSuccess(currentProject, Duration.between(buildStartTime, buildEndTime))); eventCatapult.fire(ExecutionEvent.Type.ProjectSucceeded, session, null);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
flags |= flag; } /** * Get the result of the DCERPC call. * @return result exception if the call failed, null otherwise */ public DcerpcException getResult() { if (result != 0) { return new DcerpcException(result); } return null; } void encode_header(final NdrBuffer buf) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
this.lastName = e.getFilename(); this.resumeKey = e.getFileIndex(); } bufferIndex += e.getNextEntryOffset(); } setResults(results); /* * last nextEntryOffset for NT 4(but not 98) is 0 so we must * use dataCount or our accounting will report an error for NT :~( */ return getDataCount();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java
/** * Gets the interim result of the model building up to the point where it failed. * * @return The interim model building result or {@code null} if not available. */ public ModelBuildingResult getResult() { return result; } /** * Gets the model that could not be built properly. * * @return The erroneous model or {@code null} if not available. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
final Instant buildStartTime) { // record the error and mark the project as failed Instant buildEndTime = MonotonicClock.now(); buildContext.getResult().addException(t); buildContext .getResult() .addBuildSummary(new BuildFailure(mavenProject, Duration.between(buildStartTime, buildEndTime), t)); // notify listeners about "soft" project build failures onlyRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 10.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
Throwable t) { // record the error and mark the project as failed Clock clock = getClock(mavenProject); buildContext.getResult().addException(t); buildContext .getResult() .addBuildSummary(new BuildFailure(mavenProject, clock.execTime(), clock.wallTime(), t)); // notify listeners about "soft" project build failures onlyRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcMessage.java
this.flags |= flag; } /** * Get the result of the DCERPC call. * @return result exception, if the call failed */ public DcerpcException getResult() { if (this.result != 0) { return new DcerpcException(this.result); } return null; } void encode_header(final NdrBuffer buf) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharSourceTest.java
public boolean processLine(String line) throws IOException { list.add(line); return true; } @Override public List<String> getResult() { return list; } }); assertEquals(ImmutableList.of("foo", "bar", "baz", "something"), list); assertTrue(lines.wasStreamOpened() && lines.wasStreamClosed()); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetServerEnum2Response.java
e.commentOrMasterBrowser = readString(buffer, off, 48, false); if (log.isTraceEnabled()) { log.trace(e.toString()); } } setResults(results); this.lastName = e == null ? null : e.name; return bufferIndex - start; } @Override public String toString() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0)