- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 58 for setResult (0.19 sec)
-
guava/src/com/google/common/io/Resources.java
@Override public boolean processLine(String line) { result.add(line); return true; } @Override public List<String> getResult() { return result; } }); } /** * Copies all bytes from a URL to an output stream. * * @param from the URL to read from
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
} buf = new NdrBuffer(stub, 0); msg.decode(buf); } finally { jcifs.smb1.smb1.BufferCache.releaseBuffer(stub); } if ((de = msg.getResult()) != null) throw de; } public void setDcerpcSecurityProvider(DcerpcSecurityProvider securityProvider) { this.securityProvider = securityProvider; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 26.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/ResourcesTest.java
@Override public boolean processLine(String line) { collector.add(whitespace().trimFrom(line)); return true; } @Override public List<String> getResult() { return collector; } }; List<String> result = Resources.readLines(resource, US_ASCII, collectAndLowercaseAndTrim); assertEquals(3600, result.size());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 6.8K bytes - Viewed (0) -
guava/src/com/google/common/io/CharStreams.java
String line; while ((line = lineReader.readLine()) != null) { if (!processor.processLine(line)) { break; } } return processor.getResult(); } /** * Reads and discards data from the given {@code Readable} until the end of the stream is reached. * Returns the total number of chars read. Does not close the stream. * * @since 20.0
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 17 14:35:11 UTC 2023 - 10.9K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt
if (!sourceFile.name.endsWith(".java")) return emptyMap() val versionsToIncubating = mutableMapOf<Version, MutableSet<IncubatingDescription>>() JavaParser().parse(sourceFile).getResult().get().run { solver.inject(this) findAllIncubating() .map { node -> toVersionIncubating(sourceFile, node) } .forEach { (version, incubating) ->
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractBehavior.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractBehavior.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 26.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
this.transportContext.getBufferCache().releaseBuffer(inB); this.transportContext.getBufferCache().releaseBuffer(out); } DcerpcException de; if ( ( de = msg.getResult() ) != null ) { throw de; } } /** * @param msg * @param out * @param buf * @param off * @param tot * @return
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jun 30 10:11:57 UTC 2019 - 12.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
public boolean isOffline() { return request.isOffline(); } public MavenProject getTopLevelProject() { return topLevelProject; } public MavenExecutionResult getResult() { return result; } // Backward compat /** * Returns the plugin context for given key ({@link PluginDescriptor#getPluginLookupKey()} and
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.6K bytes - Viewed (0)