Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 183 for machine (0.07 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

    /**
     * Represents the result of a search operation in the rank fusion system.
     *
     * This class encapsulates all the information returned from a search query,
     * including the list of matching documents, total record count, query execution
     * time, facet information, and metadata about the search results.
     */
    public class SearchResult {
    
        /** The list of documents returned by the search query. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        // names or patterns, but they should be treated as absolute. At the same time, any hostname
        // presented to this method should also be treated as absolute for the purposes of matching
        // to the server certificate.
        //   www.android.com  matches www.android.com
        //   www.android.com  matches www.android.com.
        //   www.android.com. matches www.android.com.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. docs/works_with_okhttp.md

     * [Fresco](https://github.com/facebook/fresco): An Android library for managing images and the memory they use.
     * [Glide](https://github.com/bumptech/glide): An image loading and caching library for Android focused on smooth scrolling.
     * [GoogleAppEngineOkHttp](https://github.com/apkelly/GoogleAppEngineOkHttp): An OkHttp Call that works on Google App Engine.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 15 16:18:51 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            // Within time range and matching day
            assertTrue(rule.isTarget(12, 30, 1)); // 12:30 on Sunday
            assertTrue(rule.isTarget(12, 30, 3)); // 12:30 on Tuesday
            assertTrue(rule.isTarget(12, 30, 5)); // 12:30 on Thursday
    
            // Within time range but not matching day
            assertFalse(rule.isTarget(12, 30, 2)); // 12:30 on Monday
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/WebApiManager.java

    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Interface for managing web API request processing.
     * Implementations of this interface handle specific types of web API requests
     * by matching incoming requests and processing them accordingly.
     */
    public interface WebApiManager {
    
        /**
         * Checks if the request matches this API manager.
         * @param request The HTTP servlet request.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class WebApiManagerTest extends UnitFessTestCase {
    
        public void test_matches_withPathBasedImplementation() {
            // Test simple path-based matching
            WebApiManager manager = new TestWebApiManager("/api/v1");
    
            TestHttpServletRequest request = new TestHttpServletRequest();
            request.setRequestURI("/api/v1/search");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/base/SplitterBenchmark.java

     *
     * @author Paul Lindner
     */
    @NullUnmarked
    public class SplitterBenchmark {
      // overall size of string
      @Param({"1", "10", "100", "1000"})
      int length;
    
      // Number of matching strings
      @Param({"xxxx", "xxXx", "xXxX", "XXXX"})
      String text;
    
      private String input;
    
      private static final Splitter CHAR_SPLITTER = Splitter.on('X');
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java

        String allMatchingChars = allMatchingChars(bitSet);
        char[] result = new char[STRING_LENGTH];
        // Fill with matching chars.
        for (int i = 0; i < result.length; i++) {
          result[i] = allMatchingChars.charAt(random.nextInt(allMatchingChars.length()));
        }
        // Replace some of chars by non-matching.
        int remaining = (int) ((100 - percentMatching) * result.length / 100.0 + 0.5);
        while (remaining > 0) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.9.md

    [#57159](https://github.com/kubernetes/kubernetes/issues/57159).
    
    *   If you are adding Windows Server Virtual Machines as nodes to your Kubernetes environment, there is a compatibility issue with certain virtualization products. Specifically the Windows version of the kubelet.exe calls `GetPhysicallyInstalledSystemMemory` to get the physical memory installed on Windows machines and reports it as part of node metrics to heapster. This API call fails for VMware and VirtualBox virtualization environments....
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/SingletonImmutableSet.java

     * @author Nick Kralevich
     */
    @GwtCompatible
    @SuppressWarnings("serial") // uses writeReplace(), not default serialization
    final class SingletonImmutableSet<E> extends ImmutableSet<E> {
      // We deliberately avoid caching the asList and hashCode here, to ensure that with
      // compressed oops, a SingletonImmutableSet packs all the way down to the optimal 16 bytes.
    
      final transient E element;
    
      SingletonImmutableSet(E element) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top