Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,092 for results2 (0.07 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestCache.java

    import org.apache.maven.api.services.Request;
    import org.apache.maven.api.services.Result;
    
    /**
     * Interface for caching request results in Maven. This cache implementation provides
     * methods for executing and optionally caching both single requests and batches of requests.
     * <p>
     * The cache behavior is determined by the cache retention specified in the request's metadata.
     * Results can be cached at different policies (forever, session, request, or not at all)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * The total number of pages in the search results.
             */
            protected int pageCount;
            /**
             * Indicates if there is a next page of search results.
             */
            protected boolean nextPage;
            /**
             * Indicates if there is a previous page of search results.
             */
            protected boolean prevPage;
            /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

        private static String extractProjectId(ModelBuilderResult result) {
            Model model = null;
            if (result.getEffectiveModel() != null) {
                model = result.getEffectiveModel();
            } else if (result.getRawModel() != null) {
                model = result.getRawModel();
            } else if (result.getFileModel() != null) {
                model = result.getFileModel();
            }
    
            if (model != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverterTest.java

            List<String> results = converter.convert("テスト123", null);
            assertNotNull(results);
            assertTrue(results.size() > 0);
        }
    
        public void test_convertLowercase() {
            // All results should be lowercase
            List<String> results = converter.convert("アイウ", null);
            for (String result : results) {
                assertEquals(result, result.toLowerCase());
            }
        }
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:28:21 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestrator.java

                context.failure("Errors: " + result.errorPoms().size() + " POMs");
                context.unindent();
            } else if (!result.modifiedPoms().isEmpty()) {
                context.success("Strategy completed successfully");
                context.indent();
                context.info("Processed: " + result.processedPoms().size() + " POMs");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 7K bytes
    - Viewed (0)
  6. fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataServiceTest.java

                assertNotNull(result.getSessionId());
                assertNotNull(result.getMimeType());
                assertNotNull(result.getMethod());
                assertEquals("text/html", result.getMimeType());
                assertEquals("GET", result.getMethod());
                assertEquals(sessionId, result.getSessionId());
            }
    
            dataService.delete(sessionId);
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:40:57 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  7. schema/utils.go

    				mapValue = reflectValue.MapIndex(reflect.ValueOf(field.Name))
    			}
    			results[0][idx] = mapValue.Interface()
    		}
    
    		dataResults[utils.ToStringKey(results[0]...)] = []reflect.Value{reflectValue}
    	case reflect.Struct:
    		results = [][]interface{}{make([]interface{}, len(fields))}
    
    		for idx, field := range fields {
    			results[0][idx], zero = field.ValueOf(ctx, reflectValue)
    			notZero = notZero || !zero
    		}
    
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Thu Oct 30 11:15:36 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeTest.java

            for (Thread thread : threads) {
                thread.join();
            }
    
            // Assert
            for (String result : results) {
                assertNotNull(result);
                assertTrue(result.contains("TransPeekNamedPipe"));
                assertTrue(result.contains("pipeName=" + TEST_PIPE_NAME));
            }
        }
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RoutePlanner.kt

       * If [nextPlan] is not-null, another attempt should be made by following it. If [throwable] is
       * non-null, it should be reported to the user should all further attempts fail.
       *
       * The two values are independent: results can contain both (recoverable error), neither
       * (success), just an exception (permanent failure), or just a plan (non-exceptional retry).
       */
      data class ConnectResult(
        val plan: Plan,
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top