Search Options

Results per page
Sort
Preferred Languages
Advance

Results 631 - 640 of 862 for Multiple (1.59 sec)

  1. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

            request.setRequestURI("/api/data#anchor");
            assertTrue(manager.matches(request));
        }
    
        public void test_process_withMultipleOperations() throws IOException, ServletException {
            // Test multiple operations in process
            ComplexWebApiManager manager = new ComplexWebApiManager();
    
            TestHttpServletRequest request = new TestHttpServletRequest();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/samr.java

                    }
                }
            }
        }
    
        /**
         * SAMR SAM Array structure representing an array of SAM entries.
         * Used to return multiple SAM objects in enumeration operations.
         */
        public static class SamrSamArray extends NdrObject {
    
            /**
             * Default constructor for SamrSamArray.
             */
            public SamrSamArray() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

                    }
                }
            }
        }
    
        /**
         * SAMR SAM Array structure representing an array of SAM entries.
         * Used to return multiple SAM objects in enumeration operations.
         */
        public static class SamrSamArray extends NdrObject {
    
            /**
             * Default constructor for SamrSamArray.
             */
            public SamrSamArray() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Gets multiple documents asynchronously.
         *
         * @param request the multi-get request
         * @return a future for the multi-get response
         */
        @Override
        public ActionFuture<MultiGetResponse> multiGet(final MultiGetRequest request) {
            return client.multiGet(request);
        }
    
        /**
         * Gets multiple documents asynchronously with a callback.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.18.md

    - Kube-apiserver: multiple comma-separated protocols in a single X-Stream-Protocol-Version header are now recognized, in addition to multiple headers, complying with RFC2616 ([#89857](https://github.com/kubernetes/kubernetes/pull/89857), [@tedyu](https://github.com/tedyu)) [SIG API Machinery]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Changed the error message to `cannot exec into multiple objects at a time` when file passed to `kubectl exec` contains multiple resources ([#114249](https://github.com/kubernetes/kubernetes/pull/114249), [@ardaguclu](https://github.com/ardaguclu))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (2)
  7. android/guava/src/com/google/common/escape/UnicodeEscaper.java

     * wherever possible.
     *
     * <p>A {@code UnicodeEscaper} instance is required to be stateless, and safe when used concurrently
     * by multiple threads.
     *
     * <p>Popular escapers are defined as constants in classes like {@link
     * com.google.common.html.HtmlEscapers} and {@link com.google.common.xml.XmlEscapers}. To create
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/escape/UnicodeEscaper.java

     * wherever possible.
     *
     * <p>A {@code UnicodeEscaper} instance is required to be stateless, and safe when used concurrently
     * by multiple threads.
     *
     * <p>Popular escapers are defined as constants in classes like {@link
     * com.google.common.html.HtmlEscapers} and {@link com.google.common.xml.XmlEscapers}. To create
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            assertEquals("arg1", pythonJob.argList.get(0));
    
            pythonJob.arg("arg2");
            assertEquals(2, pythonJob.argList.size());
            assertEquals("arg2", pythonJob.argList.get(1));
        }
    
        // Test multiple arguments addition
        public void test_args() {
            assertTrue(pythonJob.argList.isEmpty());
    
            PythonJob result = pythonJob.args("arg1", "arg2", "arg3");
    
            assertSame(pythonJob, result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AggregateFuture.java

      /**
       * Clears fields that are no longer needed after this future has completed -- or at least all its
       * inputs have completed (more precisely, after {@link #handleAllCompleted()} has been called).
       * Often called multiple times (that is, both when the inputs complete and when the output
       * completes).
       *
       * <p>This is similar to our proposed {@code afterCommit} method but not quite the same. See the
       * description of CL 265462958.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top