- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 291 for indico (0.09 sec)
-
docs/pt/docs/tutorial/request_files.md
* `read(size)`: Lê um número de bytes/caracteres de acordo com a quantidade `size` (`int`). * `seek(offset)`: Navega para o byte na posição `offset` (`int`) do arquivo. * E.g., `await myfile.seek(0)` navegaria para o ínicio do arquivo. * Isso é especialmente útil se você executar `await myfile.read()` uma vez e depois precisar ler os conteúdos do arquivo de novo. * `close()`: Fecha o arquivo.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.maintenance_title_configuration=Maintenance labels.number_of_shards_for_doc=The number of shards labels.auto_expand_replicas_for_doc=Auto expand replicas labels.clear_crawler_index=Crawler Indices labels.clear_crawler_index_button=Clear Crawler Indices labels.diagnostic_logs=Diagnostic labels.download_diagnostic_logs_button=Download Logs labels.reload_doc_index=Reload Doc Index labels.reload_doc_index_button=Reload
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/body.md
{!../../docs_src/body/tutorial004.py!} ``` Os parâmetros da função serão reconhecidos conforme abaixo: * Se o parâmetro também é declarado na **rota**, será utilizado como um parâmetro de rota. * Se o parâmetro é de um **tipo único** (como `int`, `float`, `str`, `bool`, etc) será interpretado como um parâmetro de **consulta**. * Se o parâmetro é declarado como um **modelo Pydantic**, será interpretado como o **corpo** da requisição. /// note | "Observação"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.1K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params.md
```Python hl_lines="6" {!../../docs_src/path_params/tutorial004.py!} ``` /// tip | "Dica" /// Você poderia precisar que o parâmetro contivesse `/home/johndoe/myfile.txt`, com uma barra no inicio (`/`). Neste caso, a URL deveria ser: `/files//home/johndoe/myfile.txt`, com barra dupla (`//`) entre `files` e `home`. ## Recapitulando
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.8K bytes - Viewed (0) -
docs/en/data/external_links.yml
Cognito - author: Ankush Thakur author_link: https://geekflare.com/author/ankush/ link: https://geekflare.com/python-asynchronous-web-frameworks/ title: Top 5 Asynchronous Web Frameworks for Python - author: Nico Axtmann author_link: https://www.linkedin.com/in/nico-axtmann link: https://medium.com/@nico.axtmann95/deploying-a-scikit-learn-model-with-onnx-und-fastapi-1af398268915 title: Deploying a scikit-learn model with ONNX and FastAPI - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin...
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 24 18:39:34 UTC 2024 - 22.8K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/ConnectionReuseTest.kt
.build() server.useHttps(handshakeCertificates.sslSocketFactory()) server.protocols = client.protocols } private fun assertConnectionReused(vararg requests: Request?) { for (i in requests.indices) { val response = client.newCall(requests[i]!!).execute() response.body.string() // Discard the response body. assertThat(server.takeRequest().sequenceNumber).isEqualTo(i) } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 12.3K bytes - Viewed (0) -
docs/pt/docs/tutorial/extra-models.md
```Python hl_lines="6" {!> ../../docs_src/extra_models/tutorial005_py39.py!} ``` //// ## Em resumo Use vários modelos Pydantic e herde livremente para cada caso.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java
AtomicDoubleArray aa = new AtomicDoubleArray(0); assertEquals(0, aa.length()); assertThrows(IndexOutOfBoundsException.class, () -> aa.get(0)); } /** get and set for out of bound indices throw IndexOutOfBoundsException */ public void testIndexing() { AtomicDoubleArray aa = new AtomicDoubleArray(SIZE); for (int index : new int[] {-1, SIZE}) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 14.6K bytes - Viewed (0) -
src/main/resources/esclient.xml
<!-- "node.name":"search_engine", "discovery.seed_hosts":"search_engine", "cluster.initial_cluster_manager_nodes":"search_engine", "node.roles":"cluster_manager,data,ingest,ml", --> "indices.breaker.total.limit":"100%", "action.auto_create_index":"-*"} </property> <!-- Dictionaries --> <postConstruct name="addConfigFile"> <arg>"fess"</arg> <arg>"mapping.txt"</arg> </postConstruct>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Oct 21 12:20:52 UTC 2024 - 16K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt
} override fun encode( writer: DerWriter, value: T, ) { val list = decompose(value) writer.withTypeHint { for (i in list.indices) { val adapter = members[i] as DerAdapter<Any?> adapter.toDer(writer, list[i]) } } } } return BasicDerAdapter( name = name,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 15K bytes - Viewed (0)