- Sort Score
- Result 10 results
- Languages All
Results 2981 - 2990 of 5,397 for returns (0.04 sec)
-
guava/src/com/google/common/graph/StandardMutableGraph.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/Address.java
* @param type the target type to unwrap to * @return instance for type, null if the type cannot be unwrapped */ <T extends Address> T unwrap(Class<T> type); /** * Gets the host name of this address. * * @return the resolved host name, or the host address if it could not be resolved */ String getHostName(); /** * Return the IP address as text such as "192.168.1.15". *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java
* Checks if the request will be handled asynchronously. * * @return request was handled asynchronously */ boolean isResponseAsync(); /** * * @return next chained message */ @Override CommonServerMessageBlockRequest getNext(); /** * Splits this request for processing. * * @return the following message */ CommonServerMessageBlockRequest split();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
} return entity; }).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, body.id)); return null; }); return asJson(new ApiUpdateResponse().id(badWord.getId()).created(false).status(Status.OK).result()); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java
public boolean removeRule(Rule rule) { return rules.remove(rule); } @Override public boolean hasRule(Rule rule) { return rules.contains(rule); } public int getRuleCount() { return rules.size(); } public int getGetRuleCallCount() { return getRuleCallCount; } public void clearRules() {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 23.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java
} @Override public SampleElements<E> samples() { return gen.samples(); } @Override public Multiset<E> create(Object... elements) { return (Multiset<E>) SerializableTester.reserialize(gen.create(elements)); } @Override public E[] createArray(int length) { return gen.createArray(length); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsSearchLogCB.java
@Override public SearchLogDbm asDBMeta() { return SearchLogDbm.getInstance(); } @Override public String asTableDbName() { return "search_log"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsAccessToken.java
// ======= @Override public AccessTokenDbm asDBMeta() { return AccessTokenDbm.getInstance(); } @Override public String asTableDbName() { return "access_token"; } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFileConfigCB.java
@Override public FileConfigDbm asDBMeta() { return FileConfigDbm.getInstance(); } @Override public String asTableDbName() { return "file_config"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
return false; } return true; } /** * Creates a property item from a system property key. * * @param key the property key * @return map containing the key-value pair */ protected static Map<String, String> createPropItem(final String key) { return createItem(key, System.getProperty(key)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0)