Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for Po (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    	}{
    		{
    			name: "Basic Test",
    			resources: []metav1.APIResource{
    				{
    
    					Name:       "pods",
    					Namespaced: true,
    					Kind:       "Pod",
    					ShortNames: []string{"po"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    			},
    			wantAPIResourceDiscovery: []apidiscoveryv2.APIResourceDiscovery{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/loopreschedchecks.go

    		return
    	}
    
    	lastMems := findLastMems(f)
    
    	idom := f.Idom()
    	po := f.postorder()
    	// The ordering in the dominator tree matters; it's important that
    	// the walk of the dominator tree also be a preorder (i.e., a node is
    	// visited only after all its non-backedge predecessors have been visited).
    	sdom := newSparseOrderedTree(f, idom, po)
    
    	if f.pass.debug > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  3. src/image/jpeg/reader.go

    	for y := bounds.Min.Y; y < bounds.Max.Y; y++ {
    		po := img.PixOffset(bounds.Min.X, y)
    		yo := d.img3.YOffset(bounds.Min.X, y)
    		co := d.img3.COffset(bounds.Min.X, y)
    		for i, iMax := 0, bounds.Max.X-bounds.Min.X; i < iMax; i++ {
    			img.Pix[po+4*i+0] = d.img3.Y[yo+i]
    			img.Pix[po+4*i+1] = d.img3.Cb[co+i/cScale]
    			img.Pix[po+4*i+2] = d.img3.Cr[co+i/cScale]
    			img.Pix[po+4*i+3] = 255
    		}
    	}
    	return img, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. istioctl/pkg/checkinject/checkinject_test.go

    				{
    					Name:     "istio-sidecar-injector-deactivated",
    					Revision: "default",
    					Reason:   "The injection webhook is deactivated, and will never match labels.",
    				},
    			},
    		},
    		{
    			name: "rev po label injection",
    			pod:  podTestObject("test1", "test1", "", "1-16"),
    			ns:   nsTestObject("test1", "", ""),
    			expectedMessages: []webhookAnalysis{
    				{
    					Name:     "istio-sidecar-injector",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. docs/pl/docs/index.md

    Komenda `uvicorn main:app` odnosi się do:
    
    * `main`: plik `main.py` ("moduł" w Pythonie).
    * `app`: obiekt stworzony w `main.py` w lini `app = FastAPI()`.
    * `--reload`: spraw by serwer resetował się po każdej zmianie w kodzie. Używaj tego tylko w środowisku deweloperskim.
    
    </details>
    
    ### Wypróbuj
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. api/discovery/api__v1.json

            "update"
          ]
        },
        {
          "categories": [
            "all"
          ],
          "kind": "Pod",
          "name": "pods",
          "namespaced": true,
          "shortNames": [
            "po"
          ],
          "singularName": "pod",
          "storageVersionHash": "xPOwRZ+Yhw8=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top