Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 371 - 380 of 798 for loss (0.1 seconds)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

                The difference must identically match <a href="${mainApiChangesJsonFile.asFile.path}">accepted-public-api-changes.json</a> like .json file in <a href="${apiChangesJsonDirectory.asFile.path}">accepted-changes</a> directory, no more, no less - otherwise the task will fail.
                </p>
                ${writeFilterPreset(project)}
    """.stripIndent()
    
                it.renderer.set(EnrichedReportRenderer.class)
            } as Action
        )
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  2. docs/ru/docs/fastapi-cli.md

          <span style="background-color:#007166"><font color="#D3D7CF"> tip </font></span>  Running in development mode, for production use:
                 <b>fastapi run</b>
    
                 Logs:
    
         <span style="background-color:#007166"><font color="#D3D7CF"> INFO </font></span>  Will watch for changes in these directories:
                 <b>[</b><font color="#4E9A06">&apos;/home/user/code/awesomeapp&apos;</font><b>]</b>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

            }
            return themeName;
        }
    
        /**
         * Recursively deletes a directory and all its contents.
         * Does not throw exceptions, only logs warnings if deletion fails.
         *
         * @param dir the directory to delete
         */
        protected void closeQuietly(final Path dir) {
            if (Files.notExists(dir)) {
                if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/server-sent-events.md

    Esto es similar a [Stream JSON Lines](stream-json-lines.md), pero usa el formato `text/event-stream`, que los navegadores soportan de forma nativa con la [`EventSource` API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource).
    
    /// info | Información
    
    Añadido en FastAPI 0.135.0.
    
    ///
    
    ## ¿Qué son los Server-Sent Events? { #what-are-server-sent-events }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 5K bytes
    - Click Count (0)
  5. docs/es/docs/tutorial/stream-json-lines.md

    Pero normalmente no tendrás que preocuparte por eso, se hace automáticamente, sigue leyendo. 🤓
    
    ///
    
    ## Casos de uso { #use-cases }
    
    Podrías usar esto para hacer stream de datos desde un servicio de **AI LLM**, desde **logs** o **telemetry**, o desde otros tipos de datos que puedan estructurarse en ítems **JSON**.
    
    /// tip | Consejo
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/server-sent-events.md

    It looks like this:
    
    ```
    data: {"name": "Portal Gun", "price": 999.99}
    
    data: {"name": "Plumbus", "price": 32.99}
    
    ```
    
    SSE is commonly used for AI chat streaming, live notifications, logs and observability, and other cases where the server pushes updates to the client.
    
    /// tip
    
    If you want to stream binary data, for example video or audio, check the advanced guide: [Stream Data](../advanced/stream-data.md).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  7. docs/en/docs/tutorial/stream-json-lines.md

    But normally you won't have to worry about it, it's done automatically, continue reading. 🤓
    
    ///
    
    ## Use Cases { #use-cases }
    
    You could use this to stream data from an **AI LLM** service, from **logs** or **telemetry**, or from other types of data that can be structured in **JSON** items.
    
    /// tip
    
    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)
  8. docs/tr/docs/tutorial/index.md

          <span style="background-color:#007166"><font color="#D3D7CF"> tip </font></span>  Running in development mode, for production use:
                 <b>fastapi run</b>
    
                 Logs:
    
         <span style="background-color:#007166"><font color="#D3D7CF"> INFO </font></span>  Will watch for changes in these directories:
                 <b>[</b><font color="#4E9A06">&apos;/home/user/code/awesomeapp&apos;</font><b>]</b>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  9. fastapi/sse.py

            Field(ge=0),
            Doc(
                """
                Optional reconnection time in **milliseconds**.
    
                Tells the browser how long to wait before reconnecting after the
                connection is lost. Must be a non-negative integer.
                """
            ),
        ] = None
        comment: Annotated[
            str | None,
            Doc(
                """
                Optional comment line(s).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 09:21:52 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  10. cmd/http-tracer_test.go

    	}
    	wg.Wait()
    
    	finalStats := stats.Load(false)
    	expected := numGoroutines * opsPerGoroutine
    	actual := finalStats["TestAPI"]
    	if actual != expected {
    		t.Errorf("Race condition detected: expected %d, got %d (lost %d increments)",
    			expected, actual, expected-actual)
    	}
    }
    
    // TestBucketHTTPStatsRaceCondition tests concurrent access to bucket-level HTTP stats.
    func TestRaulBucketHTTPStatsRaceCondition(t *testing.T) {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 5.3K bytes
    - Click Count (0)
Back to Top