Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,334 for concurrent1 (0.24 seconds)

  1. src/test/java/org/codelibs/fess/util/InputStreamThreadTest.java

            assertEquals("Last line", "Line number 4999", receivedLines.get(4999));
        }
    
        @Test
        public void test_run_concurrentAccess() throws InterruptedException {
            String input = "concurrent1\nconcurrent2\nconcurrent3";
            InputStream is = new ByteArrayInputStream(input.getBytes(StandardCharsets.UTF_8));
    
            InputStreamThread thread = new InputStreamThread(is, StandardCharsets.UTF_8, 10, null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 12K bytes
    - Click Count (0)
  2. guava-gwt/src/com/google/common/util/concurrent/Concurrent.gwt.xml

        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see
        https://groups.google.com/g/google-web-toolkit-contributors/c/CqYH59Dt_rQ/m/uVGW1QdUsXUJ
        for details.
    
        The summary is that it ignores one file in favor of the other.
        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 19 16:02:36 GMT 2024
    - 1.5K bytes
    - Click Count (0)
  3. docs/contribute/concurrency.md

    Concurrency
    ===========
    
    This document describes the concurrency considerations for http/2 connections and the connection pool within OkHttp.
    
    ## HTTP/2 Connections
    
    The HttpURLConnection API is a blocking API. You make a blocking write to send a request, and a blocking read to receive the response.
    
    #### Blocking APIs
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 16:35:36 GMT 2022
    - 7K bytes
    - Click Count (0)
  4. fastapi/concurrency.py

    from typing import TypeVar
    
    import anyio.to_thread
    from anyio import CapacityLimiter
    from starlette.concurrency import iterate_in_threadpool as iterate_in_threadpool  # noqa
    from starlette.concurrency import run_in_threadpool as run_in_threadpool  # noqa
    from starlette.concurrency import (  # noqa
        run_until_first_complete as run_until_first_complete,
    )
    
    _T = TypeVar("_T")
    
    
    @asynccontextmanager
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  5. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-05.png

    concurrent-burgers-05.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Aug 17 10:48:05 GMT 2022
    - 156.1K bytes
    - Click Count (0)
  6. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-03.png

    concurrent-burgers-03.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Aug 17 10:48:05 GMT 2022
    - 168.9K bytes
    - Click Count (0)
  7. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-04.png

    concurrent-burgers-04.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Aug 17 10:48:05 GMT 2022
    - 159.6K bytes
    - Click Count (0)
  8. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-07.png

    concurrent-burgers-07.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Aug 17 10:48:05 GMT 2022
    - 166K bytes
    - Click Count (0)
  9. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-01.png

    concurrent-burgers-01.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Aug 17 10:48:05 GMT 2022
    - 198.6K bytes
    - Click Count (0)
  10. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-02.png

    concurrent-burgers-02.png...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Aug 17 10:48:05 GMT 2022
    - 163.1K bytes
    - Click Count (0)
Back to Top