- Sort Score
- Num 10 results
- Language All
Results 711 - 720 of 1,813 for Result (0.35 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/io/CharSource.java
Closer closer = Closer.create(); try { BufferedReader reader = closer.register(openBufferedStream()); List<String> result = new ArrayList<>(); String line; while ((line = reader.readLine()) != null) { result.add(line); } return ImmutableList.copyOf(result); } catch (Throwable e) { throw closer.rethrow(e); } finally { closer.close(); } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 25.7K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ForwardingListeningExecutorService.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.2K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenParser.java
public class MavenParser extends BaseParser { @Override protected Options parseCliOptions(LocalContext context) { ArrayList<MavenOptions> result = new ArrayList<>(); // CLI args MavenOptions cliOptions = parseMavenCliOptions(context.parserRequest.args()); result.add(cliOptions); // atFile option if (cliOptions.atFile().isPresent()) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Oct 14 12:35:44 GMT 2025 - 4.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusRequest.java
final int tmp = questionName.hexCode; questionName.hexCode = 0x00; // type has to be 0x00 for node status final int result = writeQuestionSectionWireFormat(dst, dstIndex); questionName.hexCode = tmp; return result; } @Override int readBodyWireFormat(final byte[] src, final int srcIndex) { return 0; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 1.8K bytes - Click Count (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
else -> 0L } result = TriggerSink( delegate = result, triggerByteCount = halfwayByteCount, ) { result.flush() handleSocketEffect(socketEffect, socket, stream) } } return result } /** Returns true if processing this exchange is complete. */Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 40.3K bytes - Click Count (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/client/FesenClientTest.java
throw new RuntimeException("Simulated failure #" + count); } return "Success"; }); final String result = fesenClient.get(c -> mockFuture); assertEquals("Success", result); assertEquals(6, attemptCount.get()); // Initial attempt + 5 retries } /** * Test: Retry logic fails after exceeding maxRetryCount
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Mon Jan 12 06:25:38 GMT 2026 - 16.9K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java
return toolchains; } PersistedToolchains result; try { Map<String, ?> options = Collections.singletonMap(ToolchainsReader.IS_STRICT, Boolean.FALSE); result = toolchainsReader.read(new StringReader(serializedToolchains), options); } catch (IOException e) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 05 09:37:42 GMT 2025 - 7.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceActionTest.java
public void test_addErrorsOperationAlreadyRunning() { final FessMessages messages = new FessMessages(); final FessMessages result = messages.addErrorsOperationAlreadyRunning("testProperty", "host1"); assertNotNull(result); assertFalse(result.isEmpty()); assertTrue(result.hasMessageOf("testProperty")); } @Test public void test_addErrorsOperationAlreadyRunning_withDifferentHosts() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/operations/DeletionOperations.java
updateItems.add(item); } final SuggestWriterResult result = suggestWriter.write(client, settings, index, updateItems.toArray(new SuggestItem[updateItems.size()]), false); if (result.hasFailure()) { throw new SuggestIndexException(result.getFailures().get(0)); } updateItems.clear();
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 9.5K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java
public void testToString() { String result = response.toString(); assertNotNull(result); assertTrue(result.startsWith("SmbComQueryInformationResponse[")); assertTrue(result.contains("fileAttributes=0x0000")); assertTrue(result.contains("lastWriteTime=" + new Date(0L))); assertTrue(result.contains("fileSize=0")); assertTrue(result.endsWith("]")); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.5K bytes - Click Count (0)