Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,019 for mayn (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. docs/em/docs/deployment/server-workers.md

    ```
    
    </div>
    
    ➑️ πŸ‘€ βš«οΈβ” πŸ”  πŸ‘ˆ πŸŽ› β›“:
    
    * `main:app`: πŸ‘‰ 🎏 ❕ βš™οΈ Uvicorn, `main` β›“ 🐍 πŸ•Ή πŸ“› "`main`",, πŸ“ `main.py`. &amp; `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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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 &amp; πŸ’¬ ⚫️ πŸ—„ `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)
  10. 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)
Back to top