Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Generating (0.19 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    )
    
    // startBlock sets the current block we're generating code in to b.
    func (s *state) startBlock(b *ssa.Block) {
    	if s.curBlock != nil {
    		s.Fatalf("starting block %v when block %v has not ended", b, s.curBlock)
    	}
    	s.curBlock = b
    	s.vars = map[ir.Node]*ssa.Value{}
    	for n := range s.fwdVars {
    		delete(s.fwdVars, n)
    	}
    }
    
    // endBlock marks the end of generating code for the current block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    ### Refactors
    
    * 🔥 Remove unused NoneType. PR [#10774](https://github.com/tiangolo/fastapi/pull/10774) by [@tiangolo](https://github.com/tiangolo).
    
    ### Docs
    
    * 📝 Tweak default suggested configs for generating clients. PR [#10736](https://github.com/tiangolo/fastapi/pull/10736) by [@tiangolo](https://github.com/tiangolo).
    
    ### Internal
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-61121`](https://youtrack.jetbrains.com/issue/KT-61121) [K/N] Kotlin Native compiler performance is slow when generating large frameworks
    - [`KT-57616`](https://youtrack.jetbrains.com/issue/KT-57616) K2: Consider optimizing reversed versions of persistent lists in FirTowerDataContext
    
    #### Fixes
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// which implies that the string must be a DNS_LABEL.
    	Name string
    
    	// ResourceClaimName is the name of the ResourceClaim that was
    	// generated for the Pod in the namespace of the Pod. If this is
    	// unset, then generating a ResourceClaim was not necessary. The
    	// pod.spec.resourceClaims entry can be ignored in this case.
    	ResourceClaimName *string
    }
    
    // OSName is the set of OS'es that can be used in OS.
    type OSName string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"resourceClaimName": "ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod. If this is unset, then generating a ResourceClaim was not necessary. The pod.spec.resourceClaims entry can be ignored in this case.",
    }
    
    func (PodResourceClaimStatus) SwaggerDoc() map[string]string {
    	return map_PodResourceClaimStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      optional string name = 1;
    
      // ResourceClaimName is the name of the ResourceClaim that was
      // generated for the Pod in the namespace of the Pod. If this is
      // unset, then generating a ResourceClaim was not necessary. The
      // pod.spec.resourceClaims entry can be ignored in this case.
      //
      // +optional
      optional string resourceClaimName = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	Name string `json:"name" protobuf:"bytes,1,name=name"`
    
    	// ResourceClaimName is the name of the ResourceClaim that was
    	// generated for the Pod in the namespace of the Pod. If this is
    	// unset, then generating a ResourceClaim was not necessary. The
    	// pod.spec.resourceClaims entry can be ignored in this case.
    	//
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top