- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 5,019 for mayn (0.03 sec)
-
okcurl/build.gradle.kts
} val copyResourcesTemplates = tasks.register<Copy>("copyResourcesTemplates") { from("src/main/resources-templates") into("$buildDir/generated/resources-templates") expand("projectVersion" to "${project.version}") filteringCharset = Charsets.UTF_8.toString() } kotlin { sourceSets { val main by getting { resources.srcDir(copyResourcesTemplates.get().outputs) } } } dependencies {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 1.8K bytes - Viewed (0) -
api/maven-api-plugin/pom.xml
distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Oct 19 18:11:20 UTC 2024 - 4.5K bytes - Viewed (0) -
tests/test_tutorial/test_settings/test_app02.py
from pytest import MonkeyPatch from ...utils import needs_pydanticv2 @needs_pydanticv2 def test_settings(monkeypatch: MonkeyPatch): from docs_src.settings.app02 import main monkeypatch.setenv("ADMIN_EMAIL", "******@****.***") settings = main.get_settings() assert settings.app_name == "Awesome API" assert settings.items_per_user == 50 @needs_pydanticv2 def test_override_settings():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 488 bytes - Viewed (0) -
docs/em/docs/deployment/server-workers.md
``` </div> β‘οΈ π β«οΈβ π π π β: * `main:app`: π π β βοΈ Uvicorn, `main` β π πΉ π "`main`",, π `main.py`. & `app` π π’ π **FastAPI** πΈ. * π πͺ π π `main:app` π π `import` π π: ```Python from main import app ``` * , β€ `main:app` π π π `import` π `from main import app`. * `--workers`: π’ π¨βπ π οΈ βοΈ, π π π Uvicorn π¨βπ, π πΌ, 4οΈβ£ π¨βπ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8.2K bytes - Viewed (0) -
okcurl/src/test/kotlin/okhttp3/curl/OkcurlTest.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3.curl import kotlin.test.Test class OkcurlTest { @Test fun simple() { Main().main(listOf("--help")) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 732 bytes - Viewed (0) -
docs/pt/docs/environment-variables.md
<div class="termy"> ```console // Aqui ainda nΓ£o definimos a variΓ‘vel de ambiente $ python main.py // Como nΓ£o definimos a variΓ‘vel de ambiente, obtemos o valor padrΓ£o Hello World from Python // Mas se criarmos uma variΓ‘vel de ambiente primeiro $ export MY_NAME="Wade Wilson" // E entΓ£o chamar o programa novamente $ python main.py // Agora ele pode ler a variΓ‘vel de ambiente Hello Wade Wilson from Python ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 10 10:36:42 UTC 2024 - 8.4K bytes - Viewed (0) -
docs/pt/docs/advanced/websockets.md
{*../../docs_src/websockets/tutorial001.py hl[48:52]*} VocΓͺ pode receber e enviar dados binΓ‘rios, de texto e JSON. ## Tente vocΓͺ mesmo Se seu arquivo for nomeado `main.py`, execute sua aplicação com: <div class="termy"> ```console $ fastapi dev main.py <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 31 12:20:59 UTC 2024 - 5.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/PairedStatsTest.java
assertThat(TWO_VALUES_PAIRED_STATS.populationCovariance()) .isWithin(ALLOWED_ERROR) .of(TWO_VALUES_SUM_OF_PRODUCTS_OF_DELTAS / 2); // For datasets of many double values, we test many combinations of finite and non-finite // x-values: for (ManyValues values : ALL_MANY_VALUES) { PairedStats stats = createPairedStatsOf(values.asIterable(), OTHER_MANY_VALUES);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 03 21:17:33 UTC 2024 - 14K bytes - Viewed (0) -
docs/em/docs/deployment/docker.md
# (1) COPY ./main.py /code/ # (2) CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"] ``` 1οΈβ£. π `main.py` π `/code` π π (π΅ π `./app` π). 2οΈβ£. π Uvicorn & π¬ β«οΈ π `app` π βͺοΈβ‘οΈ `main` (β©οΈ π βͺοΈβ‘οΈ `app.main`). β€΄οΈ π Uvicorn π βοΈ π πΉ `main` β©οΈ `app.main` π FastAPI π `app`. ## π οΈ π§
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 27.9K bytes - Viewed (0) -
src/main/resources/fess_env_crawler.properties
# ------ # Does it send mock mail? (true: no send actually, logging only) mail.send.mock = false # SMTP server settings for main: host:port mail.smtp.server.main.host.and.port = localhost:25 # The prefix of subject to show test environment or not mail.subject.test.prefix = # The common return path of all mail mail.return.path = root@localhost
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0)