Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 234 for Operator (0.06 sec)

  1. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

        /** Whether to allow leading wildcards in query terms */
        protected boolean allowLeadingWildcard = true;
    
        /** The default operator to use between query terms */
        protected Operator defaultOperator = Operator.AND;
    
        /** List of filters to apply to queries */
        protected List<Filter> filterList = new ArrayList<>();
    
        /** The filter chain used to process queries */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            }
    
        }
    
        /**
         * Internal search method that executes the actual search query.
         *
         * This method performs the search using the rank fusion processor and may retry
         * with OR operator if the hit count is below the configured minimum threshold.
         *
         * @param query The search query string
         * @param params The search request parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/CookiesTest.kt

        server: MockWebServer,
        path: String,
      ): HttpUrl =
        server
          .url(path)
          .newBuilder()
          .host(InetAddress.getByName(server.hostName).hostAddress)
          .build()
    
      private operator fun get(url: HttpUrl) {
        val call =
          client.newCall(
            Request
              .Builder()
              .url(url)
              .build(),
          )
        val response = call.execute()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 13K bytes
    - Viewed (0)
  4. guava/src/com/google/common/math/LongMath.java

       * mod(8, 4) == 0
       * }
       *
       * @throws ArithmeticException if {@code m <= 0}
       * @see <a href="http://docs.oracle.com/javase/specs/jls/se7/html/jls-15.html#jls-15.17.3">
       *     Remainder Operator</a>
       */
      @GwtIncompatible // TODO
      public static int mod(long x, int m) {
        // Cast is safe because the result is guaranteed in the range [0, m)
        return (int) mod(x, (long) m);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Predicates.java

       *       using this method. For example, {@code not(in(target))} is generally more readable than
       *       {@code not(target::contains)}.
       *   <li>This method's name conflicts with Kotlin's {@code in} operator.
       * </ul>
       *
       * <p><b>Discouraged:</b> Prefer using either {@code target::contains} or {@code x ->
       * target.contains(x)}, but note that lambdas do not have human-readable {@link #toString()}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

            localTask.run();
            // Now check if our task attempted to reentrantly execute the next task.
            Runnable queuedTask;
            Executor queuedExecutor;
            // Intentionally using non-short-circuit operator
            while ((queuedTask = executingTaskQueue.nextTask) != null
                && (queuedExecutor = executingTaskQueue.nextExecutor) != null) {
              executingTaskQueue.nextTask = null;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/Constants.java

        // ============================================================
        // Query and Search Constants
        // ============================================================
    
        /** Default query operator configuration key. */
        public static final String DEFAULT_QUERY_OPERATOR = "fess.DefaultQueryOperator";
    
        /** Search log access type field name. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.34.md

    - Extended resources backed by DRA feature allowed cluster operator to specify `extendedResourceName` in `DeviceClass`, and application operator to continue using extended resources in pod's requests to request for DRA devices matching the DeviceClass.
      
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

            .Builder()
            .body("c")
            .build(),
        )
        val urlC = server.url("/c")
        assertThat(get(urlC).body.string()).isEqualTo("c")
    
        // Confirm the iterator returns those responses...
        val i: Iterator<String> = cache.urls()
        assertThat(i.hasNext()).isTrue()
        assertThat(i.next()).isEqualTo(urlA.toString())
        assertThat(i.hasNext()).isTrue()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.32.md

    - CRI client now used the default timeout for `ImageFsInfo` RPC. ([#128052](https://github.com/kubernetes/kubernetes/pull/128052), [@saschagrunert](https://github.com/saschagrunert))
    - Clarified an API validation error for toleration if `operator` is `Exists` and `value` is not empty. ([#128119](https://github.com/kubernetes/kubernetes/pull/128119), [@saschagrunert](https://github.com/saschagrunert)) [SIG API Machinery and Apps]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
Back to top