- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 1,467 for result7 (0.76 sec)
-
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
String result = server.toString(); assertNotNull(result); assertTrue(result.startsWith("ServerInfo1[")); assertTrue(result.contains("name=SERVER01")); assertTrue(result.contains("versionMajor=6")); assertTrue(result.contains("versionMinor=1")); assertTrue(result.contains("type=0x00000801")); assertTrue(result.contains("commentOrMasterBrowser=Test server"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
String[] results = relatedQueryHelper.getRelatedQueries("java"); assertEquals(2, results.length); assertEquals("programming", results[0]); assertEquals("tutorial", results[1]); results = relatedQueryHelper.getRelatedQueries("python"); assertEquals(2, results.length); assertEquals("scripting", results[0]); assertEquals("data science", results[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
fail("Thread interrupted"); } } // Verify all results are consistent for (String result : results) { assertEquals("thread-test", result); } } finally { // Restore original value if (originalValue != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 12.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/BatchRequestException.java
String message, List<RequestResult<REQ, REP>> allResults) { super(message); this.results = List.copyOf(allResults); } /** * Returns the list of results from all requests that were part of the batch operation. * Each result contains the original request, the response (if successful), and any error * that occurred during processing. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
protected final long queryTime; /** Flag indicating whether the search results are partial due to timeout or other constraints. */ protected final boolean partialResults; /** The facet response containing aggregated facet information for the search results. */ protected final FacetResponse facetResponse; /** * Constructs a new SearchResult with the specified parameters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K 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) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
* @param partialResults whether the results are partial due to timeout or other constraints * @param facetResponse the facet information for the search results * @param start the starting position for pagination * @param pageSize the size of the current page * @param offset the offset applied to the results * @return QueryResponseList containing the search results and metadata */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt
val plan1 = routePlanner.addPlan() plan1.connectState = TLS_CONNECTED taskRunner.newQueue().execute("connect") { val result0 = finder.find() assertThat(result0).isEqualTo(plan0.connection) val result1 = finder.find() assertThat(result1).isEqualTo(plan1.connection) } taskFaker.runTasks() assertEvents( "take plan 0", "take plan 1", )
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 20.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
import org.codelibs.fess.util.FacetResponse; /** * Data container for search results rendering. * * This class holds all the data needed to render search results in the UI, * including the actual search results, pagination information, facet data, * execution timing, and highlighting parameters. */ public class SearchRenderData { /** List of search result documents. */ protected List<Map<String, Object>> documentItems;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K 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)