Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for Po (0.02 sec)

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

    	// Check loop construction
    	if f.RegAlloc == nil && f.pass != nil { // non-nil pass allows better-targeted debug printing
    		ln := f.loopnest()
    		if !ln.hasIrreducible {
    			po := f.postorder() // use po to avoid unreachable blocks.
    			for _, b := range po {
    				for _, s := range b.Succs {
    					bb := s.Block()
    					if ln.b2l[b.ID] == nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/branchelim.go

    				loadAddr.add(v.Args[0].ID)
    			case OpMove:
    				loadAddr.add(v.Args[1].ID)
    			}
    		}
    	}
    	po := f.postorder()
    	for {
    		n := loadAddr.size()
    		for _, b := range po {
    			for i := len(b.Values) - 1; i >= 0; i-- {
    				v := b.Values[i]
    				if !loadAddr.contains(v.ID) {
    					continue
    				}
    				for _, a := range v.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/func.go

    func (f *Func) newPoset() *poset {
    	if len(f.Cache.scrPoset) > 0 {
    		po := f.Cache.scrPoset[len(f.Cache.scrPoset)-1]
    		f.Cache.scrPoset = f.Cache.scrPoset[:len(f.Cache.scrPoset)-1]
    		return po
    	}
    	return newPoset()
    }
    
    // retPoset returns a poset to the internal cache
    func (f *Func) retPoset(po *poset) {
    	f.Cache.scrPoset = append(f.Cache.scrPoset, po)
    }
    
    func (f *Func) localSlotAddr(slot LocalSlot) *LocalSlot {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/stackalloc.go

    	// Liveness information flows backward, so starting at the end
    	// increases the probability that we will stabilize quickly.
    	po := s.f.postorder()
    	for {
    		changed := false
    		for _, b := range po {
    			// Start with known live values at the end of the block
    			live.clear()
    			live.addAll(s.live[b.ID])
    
    			// Propagate backwards to the start of the block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. docs/pl/docs/help-fastapi.md

    ### Proponuj rozwiązania
    
    * Po zrozumieniu pytania możesz podać im możliwą **odpowiedź**.
    
    * W wielu przypadkach lepiej zrozumieć ich **podstawowy problem lub przypadek użycia**, ponieważ może istnieć lepszy sposób rozwiązania niż to, co próbują zrobić.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // We classify these operators by their type:
    //
    //	PO package->object	Package.Scope.Lookup
    //	OT  object->type 	Object.Type
    //	TT    type->type 	Type.{Elem,Key,Params,Results,Underlying} [EKPRU]
    //	TO   type->object	Type.{At,Field,Method,Obj} [AFMO]
    //
    // All valid paths start with a package and end at an object
    // and thus may be defined by the regular language:
    //
    //	objectpath = PO (OT TT* TO)*
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("パ", new String[] { "pa" });
            map.put("ピ", new String[] { "pi" });
            map.put("プ", new String[] { "pu" });
            map.put("ペ", new String[] { "pe" });
            map.put("ポ", new String[] { "po" });
    
            map.put("ヴァ", new String[] { "va" });
            map.put("ヴィ", new String[] { "vi" });
            map.put("ヴ", new String[] { "vu" });
            map.put("ヴェ", new String[] { "ve" });
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	}
    	result := int32(0)
    	for i := range pods {
    		po := pods[i]
    		if po.Status.Phase == v1.PodRunning || po.Status.Phase == v1.PodPending {
    			for j := range po.Status.InitContainerStatuses {
    				stat := po.Status.InitContainerStatuses[j]
    				result += stat.RestartCount
    			}
    			for j := range po.Status.ContainerStatuses {
    				stat := po.Status.ContainerStatuses[j]
    				result += stat.RestartCount
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. cmd/postpolicyform.go

    func parsePostPolicyForm(r io.Reader) (PostPolicyForm, error) {
    	reader, err := sanitizePolicy(r)
    	if err != nil {
    		return PostPolicyForm{}, err
    	}
    
    	d := json.NewDecoder(reader)
    
    	// Convert po into interfaces and
    	// perform strict type conversion using reflection.
    	var rawPolicy struct {
    		Expiration string        `json:"expiration"`
    		Conditions []interface{} `json:"conditions"`
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/storage/storage.go

    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"po"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top