Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 461 for keep1 (0.03 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    3. Set a convention in a constructor
    
    Most properties should have a convention set, so (1) can be treated as a rare case where a value must be provided by a user.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  7. docs/fr/llm-prompt.md

    - For headings that are instructions written in imperative in English (e.g. `Go check …`), keep them in imperative in French, using the formal grammar (e.g. `Allez voir …`).
    
    ### French instructions about technical terms
    
    Do not try to translate everything. In particular, keep common programming terms (e.g. `framework`, `endpoint`, `plug-in`, `payload`).
    
    Keep class names, function names, modules, file names, and CLI commands unchanged.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Jan 16 11:57:08 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  8. docs/ja/llm-prompt.md

    ### Target language
    
    Translate to Japanese (ζ—₯本θͺž).
    
    Language code: ja.
    
    ### Grammar and tone
    
    - Use polite, instructional Japanese (です/ますθͺΏ).
    - Keep the tone concise and technical (match existing Japanese FastAPI docs).
    
    ### Headings
    
    - Follow the existing Japanese style: short, descriptive headings (often noun phrases), e.g. γ€Œγƒγ‚§γƒƒγ‚―γ€.
    - Do not add a trailing period at the end of headings.
    
    ### Quotes
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 04 16:44:21 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  9. docs/features/connections.md

    With fast fallback, OkHttp attempts to connect to multiple web servers concurrently. It keeps whichever route connects first and cancels all of the others. Its rules are:
    
     * Prefer to alternate IP addresses from different address families, (IPv6 / IPv4), starting with IPv6.
     * Don't start a new attempt until 250 ms after the most recent attempt was started.
     * Keep whichever TCP connection succeeds first and cancel all the others.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:01:42 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  10. docs/zh-hant/llm-prompt.md

    ### Quotes and punctuation
    
    - Keep punctuation style consistent with existing Traditional Chinese docs (they often mix English terms like β€œFastAPI” with Chinese text).
    - Never change punctuation inside inline code, code blocks, URLs, or file paths.
    - For more details, please follow the [Chinese Copywriting Guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines).
    
    ### Ellipsis
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 2.2K bytes
    - Click Count (0)
Back to Top