Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,119 for state2 (0.09 sec)

  1. docs/pt/docs/tutorial/static-files.md

    Você pode ler mais sobre isso no **Guia Avançado do Usuário**.
    
    ## Detalhes
    
    O primeiro `"/static"` refere-se à subrota em que este "subaplicativo" será "montado". Portanto, qualquer caminho que comece com `"/static"` será tratado por ele.
    
    O `directory="static"` refere-se ao nome do diretório que contém seus arquivos estáticos.
    
    O `name="static"` dá a ela um nome que pode ser usado internamente pelo FastAPI.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Feb 07 13:09:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. docs/zh/docs/tutorial/static-files.md

    你可以在**高级用户指南**中了解更多。
    
    ## 细节
    
    这个 "子应用" 会被 "挂载" 到第一个 `"/static"` 指向的子路径。因此,任何以`"/static"`开头的路径都会被它处理。
    
     `directory="static"` 指向包含你的静态文件的目录名字。
    
    `name="static"` 提供了一个能被**FastAPI**内部使用的名字。
    
    所有这些参数可以不同于"`static`",根据你应用的需要和具体细节调整它们。
    
    ## 更多信息
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 03 12:49:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/html/template/html.go

    		if c.delim == delimNone {
    			st := c.state
    			// Use RCDATA instead of parsing into JS or CSS styles.
    			if c.element != elementNone && !isInTag(st) {
    				st = stateRCDATA
    			}
    			d, nread := transitionFunc[st](c, s[i:])
    			i1 := i + nread
    			if c.state == stateText || c.state == stateRCDATA {
    				// Emit text up to the start of the tag or comment.
    				j := i1
    				if d.state != c.state {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/config/types.go

    	// Reconciler runs a periodic loop to reconcile the desired state of the with
    	// the actual state of the world by triggering attach detach operations.
    	// This flag enables or disables reconcile.  Is false by default, and thus enabled.
    	DisableAttachDetachReconcilerSync bool
    	// ReconcilerSyncLoopPeriod is the amount of time the reconciler sync states loop
    	// wait between successive executions. Is set to 60 sec by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/runtime/sigqueue.go

    	// Notify receiver that queue has new bit.
    Send:
    	for {
    		switch sig.state.Load() {
    		default:
    			throw("sigsend: inconsistent state")
    		case sigIdle:
    			if sig.state.CompareAndSwap(sigIdle, sigSending) {
    				break Send
    			}
    		case sigSending:
    			// notification already pending
    			break Send
    		case sigReceiving:
    			if sig.state.CompareAndSwap(sigReceiving, sigIdle) {
    				if GOOS == "darwin" || GOOS == "ios" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

            GraphClosed(false);
    
            public final boolean mutable;
    
            State(boolean mutable) {
                this.mutable = mutable;
            }
    
            public State previous() {
                return ModelNode.State.values()[ordinal() - 1];
            }
    
            public boolean isAtLeast(State state) {
                return this.ordinal() >= state.ordinal();
            }
        }
    
        ModelPath getPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    	r.lock.RLock()
    	defer r.lock.RUnlock()
    	return r.generation, r.state == Ready
    }
    
    // set the state to Pending (false) or Ready (true), it does not have effect if the state is Stopped.
    func (r *ready) set(ok bool) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    	if r.state == Stopped {
    		return
    	}
    	if ok && r.state == Pending {
    		r.state = Ready
    		r.generation++
    		select {
    		case <-r.waitCh:
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    	// More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
    	Type CarpConditionType `json:"type" protobuf:"bytes,1,opt,name=type,casttype=CarpConditionType"`
    	// Status is the status of the condition.
    	// Can be True, False, Unknown.
    	// More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
    	Status ConditionStatus `json:"status" protobuf:"bytes,2,opt,name=status,casttype=ConditionStatus"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

    // CarpStatus represents information about the status of a carp. Status may trail the actual
    // state of a system.
    message CarpStatus {
      // Current condition of the carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-phase
      // +optional
      optional string phase = 1;
    
      // Current service state of carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/static-files.md

    `'directory="static"`은 정적 파일이 들어 있는 디렉토리의 이름을 나타냅니다.
    
    `name="static"`은 **FastAPI**에서 내부적으로 사용할 수 있는 이름을 제공합니다.
    
    이 모든 매개변수는 "`static`"과 다를 수 있으며, 사용자 응용 프로그램의 요구 사항 및 구체적인 세부 정보에 따라 매개변수를 조정할 수 있습니다.
    
    
    ## 추가 정보
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:37 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top