Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for pvcs (0.05 sec)

  1. src/cmd/pprof/pprof.go

    		if entry.Tag == dwarf.TagSubprogram {
    			ranges, err := f.dwarf.Ranges(entry)
    			if err != nil {
    				return nil
    			}
    			for _, pcs := range ranges {
    				if pcs[0] <= addr && addr < pcs[1] {
    					var ok bool
    					// TODO: AT_linkage_name, AT_MIPS_linkage_name.
    					name, ok = entry.Val(dwarf.AttrName).(string)
    					if ok {
    						break FindName
    					}
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/runtime/symtabinl_test.go

    		"tiuInlined2:7 tiuTest:11":               0,
    		"tiuTest:12":                             0,
    	}
    	wantStart := map[string]int{
    		"tiuInlined1": 2,
    		"tiuInlined2": 5,
    		"tiuTest":     9,
    	}
    
    	// Iterate over the PCs in tiuTest and walk the inline stack for each.
    	prevStack := "x"
    	for pc := pc1; pc < pc1+1024 && findfunc(pc) == f; pc += sys.PCQuantum {
    		stack := ""
    		u, uf := newInlineUnwinder(f, pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1/defaults_test.go

    						RollingUpdate: &appsv1.RollingUpdateStatefulSetStrategy{
    							Partition: &notTheDefaultPartition,
    						},
    					},
    					RevisionHistoryLimit: ptr.To[int32](10),
    				},
    			},
    		},
    		{
    			name: "PVC delete policy enabled, no policy specified",
    			original: &appsv1.StatefulSet{
    				Spec: appsv1.StatefulSetSpec{
    					Template: defaultTemplate,
    				},
    			},
    			expected: &appsv1.StatefulSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/runtime/pprof/protomem.go

    	values := []int64{0, 0, 0, 0}
    	var locs []uint64
    	for _, r := range p {
    		hideRuntime := true
    		for tries := 0; tries < 2; tries++ {
    			stk := r.Stack
    			// For heap profiles, all stack
    			// addresses are return PCs, which is
    			// what appendLocsForStack expects.
    			if hideRuntime {
    				for i, addr := range stk {
    					if f := runtime.FuncForPC(addr); f != nil && strings.HasPrefix(f.Name(), "runtime.") {
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    	}
    	proxyConfig := model.GetProxyConfigs(store, mesh.DefaultMeshConfig())
    	tests := []struct {
    		name                     string
    		gw                       k8sbeta.Gateway
    		objects                  []runtime.Object
    		pcs                      *model.ProxyConfigs
    		values                   string
    		discoveryNamespaceFilter kubetypes.DynamicObjectFilter
    		ignore                   bool
    	}{
    		{
    			name: "simple",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/collectors/volume_stats.go

    	for _, podStat := range podStats {
    		if podStat.VolumeStats == nil {
    			continue
    		}
    		for _, volumeStat := range podStat.VolumeStats {
    			pvcRef := volumeStat.PVCRef
    			if pvcRef == nil {
    				// ignore if no PVC reference
    				continue
    			}
    			pvcUniqStr := pvcRef.Namespace + "/" + pvcRef.Name
    			if allPVCs.Has(pvcUniqStr) {
    				// ignore if already collected
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/log/slog/value.go

    	return AnyValue(err)
    }
    
    func stack(skip, nFrames int) string {
    	pcs := make([]uintptr, nFrames+1)
    	n := runtime.Callers(skip+1, pcs)
    	if n == 0 {
    		return "(no stack)"
    	}
    	frames := runtime.CallersFrames(pcs[:n])
    	var b strings.Builder
    	i := 0
    	for {
    		frame, more := frames.Next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/defaults_test.go

    		},
    	}
    
    	for _, test := range tests {
    		pvc := &v1.PersistentVolumeClaim{
    			Spec: v1.PersistentVolumeClaimSpec{
    				VolumeMode: test.volumeMode,
    			},
    		}
    		obj1 := roundTrip(t, runtime.Object(pvc))
    		pvc1 := obj1.(*v1.PersistentVolumeClaim)
    		if pvc1.Status.Phase != v1.ClaimPending {
    			t.Errorf("Expected claim phase %v, got %v", v1.ClaimPending, pvc1.Status.Phase)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_executor.go

    	// the node's volumesToReportAsAttached list)
    	AddVolumeToReportAsAttached(logger klog.Logger, volumeName v1.UniqueVolumeName, nodeName types.NodeName)
    
    	// InitializeClaimSize sets pvc claim size by reading pvc.Status.Capacity
    	InitializeClaimSize(logger klog.Logger, volumeName v1.UniqueVolumeName, claimSize *resource.Quantity)
    
    	GetClaimSize(volumeName v1.UniqueVolumeName) *resource.Quantity
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	//		NodeResizeFailed.
    	// For example: if expanding a PVC for more capacity - this field can be one of the following states:
    	// 	- pvc.status.allocatedResourceStatus['storage'] = "ControllerResizeInProgress"
    	//      - pvc.status.allocatedResourceStatus['storage'] = "ControllerResizeFailed"
    	//      - pvc.status.allocatedResourceStatus['storage'] = "NodeResizePending"
    	//      - pvc.status.allocatedResourceStatus['storage'] = "NodeResizeInProgress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top