- Sort Score
- Result 10 results
- Languages All
Results 3031 - 3040 of 5,397 for returns (0.13 sec)
-
src/main/java/org/codelibs/core/net/JarURLConnectionUtil.java
* * @param conn * {@link JarURLConnection}. Must not be {@literal null}. * @return {@link JarFile} */ public static JarFile getJarFile(final JarURLConnection conn) { assertArgumentNotNull("conn", conn); try { return conn.getJarFile(); } catch (final IOException e) { throw new IORuntimeException(e); } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/Toolchain.java
@Deprecated(since = "4.0.0") public interface Toolchain { /** * get the type of toolchain. * * @return the toolchain type */ String getType(); /** * Gets the platform tool executable. * * @param toolName the tool platform independent tool name. * @return file representing the tool executable, or null if the tool can not be found */ String findTool(String toolName);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 12 13:13:28 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
final OptionalEntity<SearchResponse> searchResponseOpt = sendRequest(query, params, userBean); return processResponse(searchResponseOpt); } /** * Processes the OpenSearch response and converts it to a SearchResult. * * @param searchResponseOpt the optional search response from OpenSearch * @return the processed search result */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
* * @return the capabilities */ public int getCapabilities() { return this.capabilities; } /** * Gets the array of SMB dialect versions supported by the client. * * @return the dialects */ public int[] getDialects() { return this.dialects; } /** * Gets the client GUID used for identification. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
if (props != null) { return props.getProperty(key + ERROR_KEY_SUFFIX); } return null; } private Properties read(File touchfile) { if (!touchfile.canRead()) { getLogger().debug("Skipped unreadable resolution tracking file: " + touchfile); return null; } synchronized (touchfile.getAbsolutePath().intern()) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 22 22:13:51 UTC 2025 - 12.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
try { return !cls.getDeclaredMethod("equals", Object.class).isSynthetic(); } catch (NoSuchMethodException e) { return false; } } abstract static class Chopper { final Chopper or(Chopper you) { Chopper i = this; return new Chopper() { @Override Optional<String> chop(String str) { return i.chop(str).or(you.chop(str)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 17.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java
project.setGroupId(groupId); return this; } public ProjectBuilder setArtifactId(String artifactId) { project.setArtifactId(artifactId); return this; } public ProjectBuilder setVersion(String version) { project.setVersion(version); return this; } // Dependencies //
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
mockBhv.setTestData(testData); relatedQueryHelper.load(); // Mock virtual host helper to return site1.com virtualHostHelper = new VirtualHostHelper() { @Override public String getVirtualHostKey() { return "site1.com"; } }; ComponentUtil.register(virtualHostHelper, "virtualHostHelper");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
public String getName() { return filename; } @Override public int getType() { return SmbFile.TYPE_FILESYSTEM; } @Override public int getAttributes() { return extFileAttributes; } @Override public long createTime() { return creationTime; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java
public void run() { // If either of these reads return null then we must be after a successful cancel or another // call to this method. TimeoutFuture<V> timeoutFuture = timeoutFutureRef; if (timeoutFuture == null) { return; } @RetainedLocalRef ListenableFuture<V> delegate = timeoutFuture.delegateRef; if (delegate == null) { return; } /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8K bytes - Viewed (0)