Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 364 for tone (0.03 seconds)

  1. scripts/translate.py

        print("LLM translatable languages:", translatable_langs)
        return translatable_langs
    
    
    @app.command()
    def llm_translatable_json(
        language: Annotated[str | None, typer.Option(envvar="LANGUAGE")] = None,
    ) -> None:
        translatable_langs = get_llm_translatable()
        if language:
            if language in translatable_langs:
                print(json.dumps([language]))
                return
            else:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * that returns a {@code ClosingFuture} to its value. The function can use a {@link
       * DeferredCloser} to capture objects to be closed when the pipeline is done (other than those
       * captured by the returned {@link ClosingFuture}).
       *
       * <p>If this {@code ClosingFuture} succeeds, the derived one will be equivalent to the one
       * returned by the function.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 101.7K bytes
    - Click Count (0)
  3. fastapi/datastructures.py

            BinaryIO,
            Doc("The standard Python file object (non-async)."),
        ]
        filename: Annotated[str | None, Doc("The original file name.")]
        size: Annotated[int | None, Doc("The size of the file in bytes.")]
        headers: Annotated[Headers, Doc("The headers of the request.")]
        content_type: Annotated[
            str | None, Doc("The content type of the request, from the headers.")
        ]
    
        async def write(
            self,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/query-params.md

    ## İsteğe bağlı parametreler { #optional-parameters }
    
    Aynı şekilde, varsayılan değerlerini `None` yaparak isteğe bağlı query parametreleri tanımlayabilirsiniz:
    
    {* ../../docs_src/query_params/tutorial002_py310.py hl[7] *}
    
    Bu durumda, fonksiyon parametresi `q` isteğe bağlı olur ve varsayılan olarak `None` olur.
    
    /// check | Ek bilgi
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  5. fastapi/dependencies/utils.py

        background_tasks: StarletteBackgroundTasks | None
        response: Response
        dependency_cache: dict[DependencyCacheKey, Any]
    
    
    async def solve_dependencies(
        *,
        request: Request | WebSocket,
        dependant: Dependant,
        body: dict[str, Any] | FormData | bytes | None = None,
        background_tasks: StarletteBackgroundTasks | None = None,
        response: Response | None = None,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 38.7K bytes
    - Click Count (3)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

        private val body: Sink
        var done = false
    
        init {
          this.body =
            object : ForwardingSink(cacheOut) {
              @Throws(IOException::class)
              override fun close() {
                synchronized(this@Cache) {
                  if (done) return
                  done = true
                  writeSuccessCount++
                }
                super.close()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Mar 20 09:13:37 GMT 2026
    - 26.9K bytes
    - Click Count (0)
  7. src/main/webapp/js/chat.js

        function showErrorBanner(message) {
            elements.errorBanner.find('.error-message').text(message);
            elements.errorBanner.removeClass('d-none');
        }
    
        /**
         * Hide error banner
         */
        function hideErrorBanner() {
            elements.errorBanner.addClass('d-none');
        }
    
        /**
         * Update phase indicator
         */
        function updatePhase(phase, status) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  8. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

        assertThat(CharMatcher.none().negate()).isSameInstanceAs(CharMatcher.any());
        assertThat(CharMatcher.any().negate()).isSameInstanceAs(CharMatcher.none());
    
        assertThat(CharMatcher.any().and(WHATEVER)).isSameInstanceAs(WHATEVER);
        assertThat(CharMatcher.any().or(WHATEVER)).isSameInstanceAs(CharMatcher.any());
    
        assertThat(CharMatcher.none().and(WHATEVER)).isSameInstanceAs(CharMatcher.none());
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  9. fastapi/params.py

            default_factory: Callable[[], Any] | None = _Unset,
            annotation: Any | None = None,
            alias: str | None = None,
            alias_priority: int | None = _Unset,
            validation_alias: str | AliasPath | AliasChoices | None = None,
            serialization_alias: str | None = None,
            title: str | None = None,
            description: str | None = None,
            gt: float | None = None,
            ge: float | None = None,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 25.7K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/chat/ChatClient.java

                    llmClientManager.generateUnclearIntentResponse(userMessage, history, (chunk, done) -> {
                        fullResponse.append(chunk);
                        callback.onChunk(chunk, done);
                    });
                    callback.onPhaseComplete(ChatPhaseCallback.PHASE_ANSWER);
                    if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
Back to Top