Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1711 - 1720 of 1,838 for longp (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava/src/com/google/common/collect/ImmutableSetMultimap.java

      @GwtIncompatible
      @J2ktIncompatible
        private Object readResolve() {
        return requireNonNull(deserializationReplacement); // set by readObject
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Feb 19 22:57:35 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  2. docs/tr/docs/async.md

    *path operasyon fonksiyonları* için `async def` sözdizimi hakkında detaylar ve asenkron kod, eşzamanlılık (concurrency) ve paralellik üzerine arka plan bilgisi.
    
    ## Aceleniz mi var? { #in-a-hurry }
    
    <abbr title="too long; didn't read - çok uzun; okumadım"><strong>TL;DR:</strong></abbr>
    
    Eğer `await` ile çağırmanız gerektiğini söyleyen üçüncü taraf kütüphaneler kullanıyorsanız, örneğin:
    
    ```Python
    results = await some_library()
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.7K bytes
    - Click Count (0)
  3. docs/en/docs/alternatives.md

    And after searching for a long time for a similar framework and testing many different alternatives, APIStar was the best option available.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.35.md

    ### Feature
    
    - Added `k8s-short-name` and `k8s-long-name` format validation tags to enforce DNS label and DNS subdomain compliance. ([#133894](https://github.com/kubernetes/kubernetes/pull/133894), [@lalitc375](https://github.com/lalitc375))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:20:49 GMT 2026
    - 265.9K bytes
    - Click Count (0)
  5. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        return isEmpty() ? null : removeAndGet(0);
      }
    
      @SuppressWarnings("unchecked") // we must carefully only allow Es to get in
      E elementData(int index) {
        /*
         * requireNonNull is safe as long as we're careful to call this method only with populated
         * indexes.
         */
        return (E) requireNonNull(queue[index]);
      }
    
      @Override
      public @Nullable E peek() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 13:11:08 GMT 2026
    - 34K bytes
    - Click Count (0)
  6. docs/uk/docs/async.md

    Деталі щодо синтаксису `async def` для функцій операції шляху і деякі відомості про асинхронний код, рівночасність і паралелізм.
    
    ## Поспішаєте? { #in-a-hurry }
    
    <abbr title="too long; didn't read - занадто довго; не читав"><strong>TL;DR:</strong></abbr>
    
    Якщо ви використовуєте сторонні бібліотеки, які вимагають виклику з `await`, наприклад:
    
    ```Python
    results = await some_library()
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 36.6K bytes
    - Click Count (0)
  7. src/main/resources/fess_label_en.properties

    labels.chat_error_service_unavailable=The AI service is temporarily unavailable. Please try again later.
    labels.chat_error_timeout=The request timed out. Please try again.
    labels.chat_error_context_length_exceeded=The message is too long to process. Please shorten it and try again.
    labels.chat_error_model_not_found=The AI model was not found. Please contact the administrator.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  8. docs/en/docs/deployment/docker.md

    When a **container** is started, it will run that command/program (although you can override it and make it run a different command/program).
    
    A container is running as long as the **main process** (command or program) is running.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 28.3K bytes
    - Click Count (1)
  9. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            QueryResponseList qrList = new QueryResponseList(null, 0, 100, 0) {
                @Override
                public int size() {
                    return 100;
                }
            };
            qrList.allRecordCount = Long.MAX_VALUE;
            qrList.calculatePageInfo();
    
            assertTrue(qrList.getAllPageCount() > 0);
            assertEquals(1, qrList.getCurrentPageNumber());
            assertEquals(1, qrList.getCurrentStartRecordNumber());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 40.1K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/async.md

    # 並行與 async / await { #concurrency-and-async-await }
    
    有關*路徑操作函式*的 `async def` 語法的細節與非同步 (asynchronous) 程式碼、並行 (concurrency) 與平行 (parallelism) 的一些背景知識。
    
    ## 趕時間嗎? { #in-a-hurry }
    
    <abbr title="too long; didn't read - 太長不看"><strong>TL;DR:</strong></abbr>
    
    如果你正在使用要求你以 `await` 語法呼叫的第三方函式庫,例如:
    
    ```Python
    results = await some_library()
    ```
    
    然後,使用 `async def` 宣告你的*路徑操作函式*:
    
    
    ```Python hl_lines="2"
    @app.get('/')
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 21.7K bytes
    - Click Count (0)
Back to Top