Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for inState (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeLifecycleController.java

            this.startParameter = startParameter;
            this.buildModelParameters = buildModelParameters;
        }
    
        @Override
        public void beforeBuild(Consumer<? super GradleInternal> action) {
            state.inState(State.NotStarted, () -> action.accept(buildLifecycleController.getGradle()));
        }
    
        @Override
        public void scheduleAndRunTasks() {
            scheduleAndRunTasks(null);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/index.md

    Usá-lo em seu editor é o que realmente te mostra os benefícios do FastAPI, ver quão pouco código você tem que escrever, todas as conferências de tipo, auto completações etc.
    
    ---
    
    ## Instale o FastAPI
    
    O primeiro passo é instalar o FastAPI.
    
    Para o tutorial, você deve querer instalá-lo com todas as dependências e recursos opicionais.
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/request-forms-and-files.md

    # Formulários e Arquivos da Requisição
    
    Você pode definir arquivos e campos de formulário ao mesmo tempo usando `File` e `Form`.
    
    !!! info "Informação"
        Para receber arquivos carregados e/ou dados de formulário, primeiro instale <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        Por exemplo: `pip install python-multipart`.
    
    
    ## Importe `File` e `Form`
    
    ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/request-forms.md

    # Dados do formulário
    
    Quando você precisar receber campos de formulário ao invés de JSON, você pode usar `Form`.
    
    !!! info "Informação"
        Para usar formulários, primeiro instale <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        Ex: `pip install python-multipart`.
    
    ## Importe `Form`
    
    Importe `Form` de `fastapi`:
    
    ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/runtime/debugcall.go

    			"debugCall1024",
    			"debugCall2048",
    			"debugCall4096",
    			"debugCall8192",
    			"debugCall16384",
    			"debugCall32768",
    			"debugCall65536":
    			// These functions are allowed so that the debugger can initiate multiple function calls.
    			// See: https://golang.org/cl/161137/
    			return
    		}
    
    		// Disallow calls from the runtime. We could
    		// potentially make this condition tighter (e.g., not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/authorizer/reload.go

    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/node"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac"
    )
    
    type reloadableAuthorizerResolver struct {
    	// initialConfig holds the ReloadFile used to initiate background reloading,
    	// and information used to construct webhooks that isn't exposed in the authorization
    	// configuration file (dial function, backoff settings, etc)
    	initialConfig Config
    
    	apiServerID string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/security/first-steps.md

    ## Crie um `main.py`
    Copie o exemplo em um arquivo `main.py`:
    
    ```Python
    {!../../../docs_src/security/tutorial001.py!}
    ```
    
    ## Execute-o
    
    !!! info "informação"
    	Primeiro, instale <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    	Ex: `pip install python-multipart`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top