- Sort Score
 - Result 10 results
 - Languages All
 
Results 1791 - 1800 of 5,206 for RETURN (0.11 sec)
- 
				
				
src/main/java/org/codelibs/fess/suggest/Suggester.java
* @return A SuggestIndexer instance. */ public SuggestIndexer indexer() { return createDefaultIndexer(); } /** * Creates a new SuggesterBuilder for building Suggester instances. * @return A SuggesterBuilder instance. */ public static SuggesterBuilder builder() { return new SuggesterBuilder(); } // getterRegistered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 20.7K bytes - Viewed (3) - 
				
				
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
* Returns the crawler client factory. * @return The CrawlerClientFactory instance. */ public CrawlerClientFactory getClientFactory() { return clientFactory; } /** * Checks if the crawler is running in background mode. * @return true if in background mode, false otherwise. */ public boolean isBackground() { return background; } /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) - 
				
				
guava/src/com/google/common/util/concurrent/Monitor.java
return new Guard(this) { @Override public boolean isSatisfied() { return isSatisfied.getAsBoolean(); } }; } /** Enters this monitor. Blocks indefinitely. */ public void enter() { lock.lock(); } /** * Enters this monitor. Blocks at most the given time. * * @return whether the monitor was entered
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 42.8K bytes - Viewed (0) - 
				
				
misc/chrome/gophertool/gopher.js
return "https://golang.org/cl/" + t; } var match = commitRE.exec(t); if (match) { return "https://golang.org/change/" + match[1]; } if (pkgRE.test(t)) { // TODO: make this smarter, using a list of packages + substring matches. // Get the list from godoc itself in JSON format? return "https://golang.org/pkg/" + t; } return null;Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Sat Jul 11 14:36:33 UTC 2015 - 1.2K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/app/pager/BadWordPager.java
/** * Gets the default current page number. * @return The default current page number. */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Gets the total number of records. * @return The total record count. */ public int getAllRecordCount() { return allRecordCount; } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
* * @return The default current page number. */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Returns the total number of records. * * @return The total number of records. */ public int getAllRecordCount() { return allRecordCount; } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
} return entity; }).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, body.id)); return null; }); return asJson(new ApiUpdateResponse().id(elevateWord.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 - 12.8K bytes - Viewed (0) - 
				
				
src/test/java/org/codelibs/fess/it/admin/PluginTests.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; } @OverrideRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.5K bytes - Viewed (0) - 
				
				
cmd/bucket-versioning-handler.go
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } config, err := globalBucketVersioningSys.Get(bucket) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } configData, err := xml.Marshal(config) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } // Write bucket versioning configuration to client
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5K bytes - Viewed (0) - 
				
				
android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java
return seed == other.seed && supplementaryPlaneFix == other.supplementaryPlaneFix; } return false; } @Override public int hashCode() { return getClass().hashCode() ^ seed; } @Override public HashCode hashInt(int input) { int k1 = mixK1(input); int h1 = mixH1(seed, k1); return fmix(h1, Ints.BYTES); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 11.8K bytes - Viewed (0)