Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 174 for keep1 (0.02 seconds)

  1. docs/en/docs/tutorial/stream-json-lines.md

        App->>App: Produce Item 3
        Client->>Client: Process Item 2
        App->>Client: Send Item 3
        Client->>Client: Process Item 3
        Note over App: Keeps producing...
        Note over Client: Keeps consuming...
    ```
    
    It could even be an infinite stream, where you keep sending data.
    
    ## JSON Lines { #json-lines }
    
    In these cases, it's common to send "**JSON Lines**", which is a format where you send one JSON object per line.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/FinalizableReferenceQueue.java

       *
       * Even if no other references to classes from the application class loader remain, the Finalizer
       * thread keeps an indirect strong reference to the queue in ReferenceMap, which keeps the
       * Finalizer running, and as a result, the application class loader can never be reclaimed.
       *
       * This means that dynamically loaded web applications and OSGi bundles can't be unloaded.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 19:26:59 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        MockReference(FinalizableReferenceQueue frq) {
          super(new Object(), frq);
        }
    
        @Override
        public void finalizeReferent() {
          finalizeReferentCalled = true;
        }
      }
    
      /**
       * Keeps a weak reference to the underlying reference queue. When this reference is cleared, we
       * know that the background thread has stopped and released its strong reference.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Feb 27 21:20:19 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  4. docs/en/docs/environment-variables.md

    For example, when you type `python` in the terminal, the operating system looks for a program called `python` in the **first directory** in that list.
    
    If it finds it, then it will **use it**. Otherwise it keeps looking in the **other directories**.
    
    ### Installing Python and Updating the `PATH` { #installing-python-and-updating-the-path }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

       *
       * Even if no other references to classes from the application class loader remain, the Finalizer
       * thread keeps an indirect strong reference to the queue in ReferenceMap, which keeps the
       * Finalizer running, and as a result, the application class loader can never be reclaimed.
       *
       * This means that dynamically loaded web applications and OSGi bundles can't be unloaded.
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 19:26:59 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  6. docs/en/docs/help-fastapi.md

    Those two tasks are what **consume time the most**. That's the main work of maintaining FastAPI.
    
    If you can help me with that, **you are helping me maintain FastAPI** and making sure it keeps **advancing faster and better**. 🚀
    
    ## Join the chat { #join-the-chat }
    
    Join the 👥 [Discord chat server](https://discord.gg/VQjSZaeJmf) 👥 and hang out with others in the FastAPI community.
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  7. docs/ko/llm-prompt.md

    - Do not add trailing punctuation to headings.
    
    ### Quotes
    
    - Keep quote style consistent with the existing Korean docs.
    - Never change quotes inside inline code, code blocks, URLs, or file paths.
    
    ### Ellipsis
    
    - Keep ellipsis style consistent with existing Korean docs (often `...`).
    - Never change `...` in code, URLs, or CLI examples.
    
    ### Preferred translations / glossary
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 24 21:17:54 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  8. docs/tr/llm-prompt.md

    - If you translate a concept one way, keep it consistent across all occurrences.
    
    ### Links and references
    
    - Never modify link syntax like `{.internal-link target=_blank}`.
    - Keep markdown link structure intact: `[text](url){.internal-link}`.
    
    ### Preferred translations / glossary
    
    Do not translate technical terms like path, route, request, response, query, body, cookie, and header, keep them as is.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Jan 20 20:34:03 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            assertEquals(2, result.length);
            assertEquals(" spaced value ", result[0]);
            assertEquals("\"  another  \"", result[1]);
    
            // Tab characters - quoted value keeps quotes
            value = "tab\tvalue,\"quoted\ttab\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(2, result.length);
            assertEquals("tab\tvalue", result[0]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  10. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        }
    
        @Keep
        protected void protectedOneArg(String s) {
          checkNotNull(s);
        }
    
        @Keep
        public void oneNullableArg(@Nullable String s) {}
    
        @Keep
        public void oneNullableArgThrows(@Nullable String s) {
          doThrow(s);
        }
    
        @Keep
        public void twoArg(String s, Integer i) {
          checkNotNull(s);
          i.intValue();
        }
    
        @Keep
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 47.9K bytes
    - Click Count (0)
Back to Top