- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 4,946 for RETURN (0.03 sec)
-
src/main/java/jcifs/util/SecureCredentialStorage.java
* @return decrypted credentials * @throws GeneralSecurityException if decryption fails */ public char[] decryptFromString(String encryptedString) throws GeneralSecurityException { if (encryptedString == null) { return null; } byte[] encrypted = Base64.getDecoder().decode(encryptedString); return decryptCredentials(encrypted); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java
// ======= @Override public FavoriteLogDbm asDBMeta() { return FavoriteLogDbm.getInstance(); } @Override public String asTableDbName() { return "favorite_log"; } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DomUtil.java
* @return {@link InputStream} */ public static InputStream getContentsAsStream(final String contents, final String encoding) { assertArgumentNotNull("contents", contents); if (encoding == null) { return new ByteArrayInputStream(contents.getBytes()); } try { return new ByteArrayInputStream(contents.getBytes(encoding));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiation.java
} /** * Gets the negotiation request. * * @return the request */ public SmbNegotiationRequest getRequest() { return this.request; } /** * Gets the negotiation response. * * @return the response */ public SmbNegotiationResponse getResponse() { return this.response; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java
@Override public boolean storedInGroupDirectory() { return true; } @Override public boolean storedInArtifactVersionDirectory() { return false; } @Override public String getGroupId() { return groupId; } @Override public String getArtifactId() { return null; } @Override public String getBaseVersion() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinder.kt
} catch (e: Throwable) { FailedPlan(e) } } else -> return null // Nothing further to try. } // Already connected. Return it immediately. if (plan.isReady) return ConnectResult(plan) // Already failed? Return it immediately. if (plan is FailedPlan) return plan.result // Connect TCP asynchronously. tcpConnectsInFlight += plan
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NetServerEnumIterator.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
for (String element : elements) { builder.add(element); } return builder.build(); } } public static class BuilderAddAllListGenerator extends TestStringListGenerator { @Override protected List<String> create(String[] elements) { return ImmutableList.<String>builder().addAll(asList(elements)).build(); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/FileEntry.java
/** * Gets the name of the file or directory. * * @return the file or directory name */ String getName(); /** * Gets the type of the entry. * * @return the entry type */ int getType(); /** * Gets the file attributes. * * @return the file attributes */ int getAttributes(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 881 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
} public String getIndexFieldContent() { return "content"; } public String getIndexFieldImportantContent() { return "important_content"; } @Override public BigDecimal getQueryBoostTitleAsDecimal() { return new BigDecimal("0.5"); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0)