Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pvcs (0.22 sec)

  1. pkg/scheduler/schedule_one_test.go

    			informerFactory := informers.NewSharedInformerFactory(cs, 0)
    			for _, pvc := range test.pvcs {
    				metav1.SetMetaDataAnnotation(&pvc.ObjectMeta, volume.AnnBindCompleted, "true")
    				cs.CoreV1().PersistentVolumeClaims(pvc.Namespace).Create(ctx, &pvc, metav1.CreateOptions{})
    				if pvName := pvc.Spec.VolumeName; pvName != "" {
    					pv := v1.PersistentVolume{ObjectMeta: metav1.ObjectMeta{Name: pvName}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    			resizeResponse.err = msg
    			return resizeResponse
    		}
    		resizeResponse.pvc = pvc
    		successMsg := fmt.Sprintf("ExpandVolume succeeded for volume %s", util.GetPersistentVolumeClaimQualifiedName(pvc))
    		og.recorder.Eventf(pvc, v1.EventTypeNormal, kevents.VolumeResizeSuccess, successMsg)
    	} else {
    		pvc, err = og.markForPendingNodeExpansion(pvc, pv)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    	om.podsIndexer.Update(pods[0])
    	if _, err := ssc.UpdateStatefulSet(context.TODO(), set, pods); err != nil {
    		t.Errorf("Error updating StatefulSet %s", err)
    	}
    	// invariants check if there any missing PVCs for the Pods
    	if err := invariants(set, om); err != nil {
    		t.Error(err)
    	}
    	_, err = om.podsLister.Pods(set.Namespace).List(selector)
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    photo
    
    // photography : 2013-09-20 Binky Moon, LLC
    photography
    
    // photos : 2013-10-17 Binky Moon, LLC
    photos
    
    // physio : 2014-05-01 PhysBiz Pty Ltd
    physio
    
    // pics : 2013-11-14 XYZ.COM LLC
    pics
    
    // pictet : 2014-06-26 Pictet Europe S.A.
    pictet
    
    // pictures : 2014-03-06 Binky Moon, LLC
    pictures
    
    // pid : 2015-01-08 Top Level Spectrum, Inc.
    pid
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		n = debug.tracebackancestors
    	}
    	ancestors := make([]ancestorInfo, n)
    	copy(ancestors[1:], callerAncestors)
    
    	var pcs [tracebackInnerFrames]uintptr
    	npcs := gcallers(callergp, 0, pcs[:])
    	ipcs := make([]uintptr, npcs)
    	copy(ipcs, pcs[:])
    	ancestors[0] = ancestorInfo{
    		pcs:  ipcs,
    		goid: callergp.goid,
    		gopc: callergp.gopc,
    	}
    
    	ancestorsp := new([]ancestorInfo)
    	*ancestorsp = ancestors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	for _, jt := range cursym.Func().JumpTables {
    		for i, p := range jt.Targets {
    			// The ith jumptable entry points to the p.Pc'th
    			// byte in the function symbol s.
    			// TODO: try using relative PCs.
    			jt.Sym.WriteAddr(ctxt, int64(i)*8, 8, cursym, p.Pc)
    		}
    	}
    }
    
    // isUnsafePoint returns whether p is an unsafe point.
    func (c *ctxt7) isUnsafePoint(p *obj.Prog) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top