- Sort Score
- Result 10 results
- Languages All
Results 3271 - 3280 of 5,397 for returns (0.04 sec)
-
src/test/java/org/codelibs/fess/it/admin/PathMapTests.java
@Override protected String getNamePrefix() { return NAME_PREFIX; } @Override protected String getApiPath() { return API_PATH; } @Override protected String getKeyProperty() { return KEY_PROPERTY; } @Override protected String getListEndpointSuffix() { return LIST_ENDPOINT_SUFFIX; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.4K bytes - Viewed (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.java
synchronized (this) { listeners.put(state, listener); } return slackApi.authorizeUrl(scopes, redirectUrl(), state, team); } private ByteString randomToken() { byte[] bytes = new byte[16]; secureRandom.nextBytes(bytes); return ByteString.of(bytes); } private HttpUrl redirectUrl() { return mockWebServer.url("/oauth/"); }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 3.8K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/MapRetrievalCache.java
return entry.value; } entry = cacheEntry2; if (entry != null && entry.key == key) { // Promote second cache entry to first so the access pattern // [K1, K2, K1, K3, K1, K4...] still hits the cache half the time. addToCache(entry); return entry.value; } return null; } @Override void clearCache() { super.clearCache(); cacheEntry1 = null; cacheEntry2 = null;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java
* Gets the supported encryption ciphers. * * @return array of encryption cipher IDs */ public int[] getCiphers() { return this.ciphers; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.nego.NegotiateContextRequest#getContextType() */ @Override public int getContextType() { return NEGO_CTX_ENC_TYPE; } /** * {@inheritDoc}
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessUnregisterMessage.java
* * @return true if the context handle has been invalidated */ public boolean isContextHandleInvalidated() { if (contextHandle == null) { return true; } for (byte b : contextHandle) { if (b != 0) { return false; } } return true; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 3.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java
* @param name The component name. * @return The component. * @param <T> The component type. * @throws LookupException if no such component or there is some provisioning related issue. */ @Nonnull <T> T lookup(Class<T> type, String name); /** * Performs a lookup for optional typed component. * * @param type The component type.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 10 12:55:54 UTC 2024 - 3.3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/AbstractConflictResolverTest.java
protected Artifact createArtifact(String id, String version) throws InvalidVersionSpecificationException { return createArtifact(id, version, Artifact.SCOPE_COMPILE); } protected Artifact createArtifact(String id, String version, String scope) throws InvalidVersionSpecificationException { return createArtifact(id, version, scope, null, false); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 19:31:34 UTC 2025 - 4.3K bytes - Viewed (0) -
cmd/update-notifier.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Mar 09 03:07:08 UTC 2024 - 3.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/SitemapsRuleTest.java
return responseData; } private ResponseData getTestData2_OK() { final ResponseData responseData = new ResponseData(); responseData.setUrl("http://example.com/sitemap.xml.gz"); File file = ResourceUtil.getResourceAsFile("sitemaps/sitemap1.xml.gz"); responseData.setResponseBody(file, false); return responseData; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 4.7K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
bb.putLong(guid.getLeastSignificantBits()); return bb.array(); } @Override public String toString() { return guid.toString(); } @Override public boolean equals(Object obj) { if (obj instanceof HandleGuid) { return guid.equals(((HandleGuid)obj).guid); } return false; } @Override public int hashCode() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0)