Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 860 for nDests (0.24 sec)

  1. tools/docker-builder/crane.go

    	// so we can pull them in the background
    	builds := []builder.BuildSpec{}
    	bases := sets.New[string]()
    	for _, v := range a.Variants {
    		for _, t := range a.Targets {
    			b := builder.BuildSpec{
    				Name:  t,
    				Dests: extractTags(a, t, v, hasDoubleDefault),
    			}
    			for _, arch := range a.Architectures {
    				p := a.PlanFor(arch).Find(t)
    				if p == nil {
    					continue
    				}
    				df := p.Dockerfile
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle-integ-tests.gradle.kts

    plugins {
        id("gradlebuild.integration-tests")
    }
    
    tasks.withType<IntegrationTest>().configureEach {
        // See AbstractKotlinIntegrationTest
        "kotlinDslTestsExtraRepo".let {
            systemProperty(it, System.getProperty(it))
        }
    }
    
    dependencies {
        integTestRuntimeOnly(project(":kotlin-dsl-plugins")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 720 bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/body-nested-models.md

    Isso seria útil se você deseja receber chaves que ainda não conhece.
    
    ---
    
    Outro caso útil é quando você deseja ter chaves de outro tipo, por exemplo, `int`.
    
    É isso que vamos ver aqui.
    
    Neste caso, você aceitaria qualquer `dict`, desde que tenha chaves` int` com valores `float`:
    
    ```Python hl_lines="9"
    {!../../../docs_src/body_nested_models/tutorial009.py!}
    ```
    
    !!! tip "Dica"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

            when:
            contendedAction.accept(signal)
    
            then:
            1 * lock.close()
            1 * signal.trigger()
            0 * _
        }
    
        def "lock is acquired once when a thread nests actions"() {
            def action1 = Mock(Supplier)
            def action2 = Mock(Supplier)
            def lock = Mock(FileLock)
            def signal = Mock(FileLockReleasedSignal)
            Consumer contendedAction
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. 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
    
    Com o **FastAPI**, usando as declarações de tipo do Python, você obtém:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            helper.updateSystemProperties();
            assertNull(System.getProperty("fess." + now));
            assertNull(System.getProperty("test." + now));
            appValue.set("=abc\nfess." + now + "=test1\ntest." + now + "=test2");
            helper.updateSystemProperties();
            assertEquals("test1", System.getProperty("fess." + now));
            assertEquals("test2", System.getProperty("test." + now));
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. docs/ja/docs/alternatives.md

    !!! check "**FastAPI**へ与えたインスピレーション"
        シリアライゼーションとバリデーションを定義したコードから、OpenAPIスキーマを自動的に生成する点。
    
    ### <a href="https://nestjs.com/" class="external-link" target="_blank">NestJS</a> (と<a href="https://angular.io/" class="external-link" target="_blank">Angular</a>)
    
    NestJSはAngularにインスパイアされたJavaScript (TypeScript) NodeJSフレームワークで、Pythonですらありません。
    
    Flask-apispecでできることと多少似たようなことを実現しています。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/first-steps.md

    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Esta é uma função Python.
    
    Ela será chamada pelo **FastAPI** sempre que receber uma requisição para a URL "`/ `" usando uma operação `GET`.
    
    Neste caso, é uma função `assíncrona`.
    
    ---
    
    Você também pode defini-la como uma função normal em vez de `async def`:
    
    ```Python hl_lines="7"
    {!../../../docs_src/first_steps/tutorial003.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/security/first-steps.md

    ## **FastAPI**'s `OAuth2PasswordBearer`
    
    **FastAPI** fornece várias ferramentas, em diferentes níveis de abstração, para implementar esses recursos de segurança.
    
    Neste exemplo, nós vamos usar o **OAuth2** com o fluxo de **Senha**, usando um token **Bearer**. Fazemos isso usando a classe `OAuth2PasswordBearer`.
    
    !!! info "informação"
    	Um token "bearer" não é a única opção.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. docs/fr/docs/async.md

    Le fast-food a 8 processeurs (serveurs/cuisiniers) 👨‍🍳👨‍🍳👨‍🍳👨‍🍳👨‍🍳👨‍🍳👨‍🍳👨‍🍳. Alors que le fast-food de burgers concurrents en avait 2 (un serveur et un cuisinier).
    
    Et pourtant l'expérience finale n'est pas meilleure 😞.
    
    ---
    
    C'est donc l'histoire équivalente parallèle pour les burgers 🍔.
    
    Pour un exemple plus courant dans la "vie réelle", imaginez une banque.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top