- Sort Score
- Num 10 results
- Language All
Results 221 - 230 of 1,299 for likes (0.02 seconds)
-
src/cmd/asm/internal/asm/endtoend_test.go
data, err := os.ReadFile(input) if err != nil { t.Error(err) return } lineno := 0 seq := 0 hexByLine := map[string]string{} lines := strings.SplitAfter(string(data), "\n") Diff: for _, line := range lines { lineno++ // Ignore include of textflag.h. if strings.HasPrefix(line, "#include ") { continue } // Ignore GLOBL.
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Mar 20 17:02:17 GMT 2026 - 12.6K bytes - Click Count (0) -
docs/en/docs/deployment/versions.md
``` that would mean that you would use the versions `0.112.0` or above, but less than `0.113.0`, for example, a version `0.112.2` would still be accepted. If you use any other tool to manage your installations, like `uv`, Poetry, Pipenv, or others, they all have a way that you can use to define specific versions for your packages. ## Available versions { #available-versions }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 3.4K bytes - Click Count (0) -
docs/es/docs/advanced/stream-data.md
# Transmitir datos { #stream-data } Si quieres transmitir datos que se puedan estructurar como JSON, deberías [Transmitir JSON Lines](../tutorial/stream-json-lines.md). Pero si quieres transmitir datos binarios puros o strings, aquí tienes cómo hacerlo. /// info | Información Añadido en FastAPI 0.134.0. /// ## Casos de uso { #use-cases }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:12:26 GMT 2026 - 5.7K bytes - Click Count (0) -
dbflute_fess/_readme.txt
which generates classes corresponding your tables, for example, entities, condition-beans to specified directories by DBFlute properties on "dfprop" directory. Generated structures (directories and classes) are like this: /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - allcommon : classes bridging to DBFlute Runtime bsbhv : base behaviors bsentity : base entities cbean : condition-beans (both base and extended)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 04 22:46:31 GMT 2015 - 2.5K bytes - Click Count (0) -
docs/es/docs/tutorial/server-sent-events.md
# Server-Sent Events (SSE) { #server-sent-events-sse } Puedes enviar datos en streaming al cliente usando **Server-Sent Events** (SSE). 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. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:12:26 GMT 2026 - 5K bytes - Click Count (0) -
docs/tr/docs/advanced/stream-data.md
# Veri Akışı { #stream-data } Veriyi JSON olarak yapılandırabiliyorsanız, [JSON Lines Akışı](../tutorial/stream-json-lines.md) kullanın. Ancak saf ikili (binary) veri ya da string akıtmak istiyorsanız, bunu şöyle yapabilirsiniz. /// info | Bilgi FastAPI 0.134.0 ile eklendi. /// ## Kullanım Senaryoları { #use-cases } Doğrudan bir AI LLM (Büyük Dil Modeli) servisinin çıktısından saf string'leri akıtmak istediğinizde kullanabilirsiniz.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:51:35 GMT 2026 - 5.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
} } private String getPackageName(File file) throws IOException { try (Stream<String> lines = Files.lines(file.toPath())) { String packageLine = lines.filter(line -> line.startsWith("package")) .findFirst() .orElseThrow(() -> new IOException("Can't find package definition in file " + file));Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sun Mar 01 05:52:34 GMT 2026 - 11.6K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ForwardingFluentFuture.java
* * <h3>Extension</h3> * * This class is package-private. If you want a class like {@code FluentFuture} but with extra * methods, we recommend declaring your own subclass of {@link ListenableFuture}, complete with a * method like {@link #from} to adapt an existing {@code ListenableFuture}, implemented atop a
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 14:39:00 GMT 2026 - 3.1K bytes - Click Count (0) -
docs/en/docs/fastapi-cli.md
You can configure where your app is located in a `pyproject.toml` file like: ```toml [tool.fastapi] entrypoint = "main:app" ``` That `entrypoint` will tell the `fastapi` command that it should import the app like: ```python from main import app ``` If your code was structured like: ``` . ├── backend │ ├── main.py │ ├── __init__.py ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 5.8K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallHandshakeTest.kt
val handshake = makeRequest(client) assertThat(handshake.cipherSuite).isIn(*expectedModernTls12CipherSuites.toTypedArray()) // Probably something like // TLS_AES_128_GCM_SHA256 // TLS_AES_256_GCM_SHA384 // TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 // TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 // TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Sep 16 07:21:43 GMT 2025 - 11.4K bytes - Click Count (0)