- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 1,007 for results2 (0.05 sec)
-
utils/utils.go
} func ToStringKey(values ...interface{}) string { results := make([]string, len(values)) for idx, value := range values { if valuer, ok := value.(driver.Valuer); ok { value, _ = valuer.Value() } switch v := value.(type) { case string: results[idx] = v case []byte: results[idx] = string(v) case uint: results[idx] = strconv.FormatUint(uint64(v), 10) default:
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Aug 22 11:03:42 UTC 2024 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
/** * Processes a list of access results and converts them into indexable documents. * Each access result is transformed into a document map and added to the document list. * * @param docList the document list to add processed documents to * @param accessResultList the list to track processed access results for cleanup * @param arList the list of access results to process */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java
* Provides common pagination parameters for search operations. */ public class BaseSearchBody { /** The page size for search results. */ public Integer size = ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); /** The page number for search results. */ public Integer page = Constants.DEFAULT_ADMIN_PAGE_NUMBER; /** * Default constructor for BaseSearchBody. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
/** * Gets the file entry results from the response * @return the results */ public final FileEntry[] getResults() { return this.results; } /** * Sets the file entry results for the response * @param results * the results to set */ protected final void setResults(final FileEntry[] results) { this.results = results; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.3K bytes - Viewed (0) -
tests/generics_test.go
} for i := 1; i < len(result.Pets); i++ { if result.Pets[i-1].Name > result.Pets[i].Name { t.Fatalf("Preload user %v pets not ordered correctly, last %v, cur %v", result.Name, result.Pets[i-1], result.Pets[i]) } } for i := 1; i < len(result.Pets); i++ { if result.Pets[i-1].Name > result.Pets[i].Name {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 28K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
/** The search query string that was used to generate these results. */ protected String searchQuery; /** The total execution time for the search request in milliseconds. */ protected long execTime; /** The facet response containing aggregated search facets and their counts. */ protected FacetResponse facetResponse; /** Flag indicating whether the search results are partial (not complete). */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.5K bytes - Viewed (0) -
cmd/metacache-server-pool.go
if !truncated { return entries, io.EOF } return entries, nil } // listMerged will list across all sets and return a merged results stream. // The result channel is closed when no more results are expected. func (z *erasureServerPools) listMerged(ctx context.Context, o listPathOptions, results chan<- metaCacheEntry) error { var mu sync.Mutex var wg sync.WaitGroup var errs []error allAtEOF := true
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 26 07:06:43 UTC 2025 - 12.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java
// Enqueue more than enough tasks to force reentrancy. for (int i = 0; i < 5; i++) { results.add(serializer.submit(Callables.returning(null), directExecutor())); } manualExecutorTask[0].run(); for (Future<?> result : results) { if (!result.isCancelled()) { result.get(10, SECONDS); } // TODO(cpovirk): Verify that the cancelled futures are exactly ones that we expect. }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 16.1K bytes - Viewed (0) -
statement.go
results[rel.Name] = result } } else if field := stmt.Schema.LookUpField(column); field != nil && field.DBName != "" { results[field.DBName] = result } else if table, col := matchName(column); col != "" && (table == stmt.Table || table == "") { if col == "*" { for _, dbName := range stmt.Schema.DBNames { results[dbName] = result } } else { results[col] = result } } else {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 20.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/ClasspathArtifactResolver.java
throws ArtifactResolutionException { List<ArtifactResult> results = new ArrayList<>(); for (ArtifactRequest request : requests) { ArtifactResult result = new ArtifactResult(request); results.add(result); Artifact artifact = request.getArtifact(); if ("maven-test".equals(artifact.getGroupId())) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.1K bytes - Viewed (0)