Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 672 for fopacity (0.25 sec)

  1. pkg/volume/util/operationexecutor/node_expander.go

    // This function returns true only if node expansion is allowed to proceed otherwise
    // it returns false.
    func (ne *NodeExpander) runPreCheck() bool {
    	ne.pvcStatusCap = ne.pvc.Status.Capacity[v1.ResourceStorage]
    	ne.pvCap = ne.pv.Spec.Capacity[v1.ResourceStorage]
    
    	allocatedResourceStatus := ne.pvc.Status.AllocatedResourceStatuses
    	if currentStatus, ok := allocatedResourceStatus[v1.ResourceStorage]; ok {
    		ne.resizeStatus = currentStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers.go

    			klogV.InfoS("Eviction manager:", "log", logPrefix, "signal", k, "resourceName", signalToResource[k], "available", v.available, "capacity", v.capacity, "time", v.time)
    		} else {
    			klogV.InfoS("Eviction manager:", "log", logPrefix, "signal", k, "resourceName", signalToResource[k], "available", v.available, "capacity", v.capacity)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	}
    }
    
    func TestCheckVolumeFSResize(t *testing.T) {
    	setCapacity := func(pv *v1.PersistentVolume, pvc *v1.PersistentVolumeClaim, capacity int) {
    		pv.Spec.Capacity = volumeCapacity(capacity)
    		pvc.Spec.Resources.Requests = volumeCapacity(capacity)
    	}
    
    	testcases := []struct {
    		resize      func(*testing.T, *v1.PersistentVolume, *v1.PersistentVolumeClaim, *desiredStateOfWorldPopulator)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue41239.go

    // the LICENSE file.
    
    package main
    
    import "fmt"
    
    func main() {
    	const N = 1024
    	var a [N]int
    	x := cap(append(a[:N-1:N], 9, 9))
    	y := cap(append(a[:N:N], 9))
    	if x != y {
    		panic(fmt.Sprintf("different capacity on append: %d vs %d", x, y))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 25 03:59:54 UTC 2020
    - 393 bytes
    - Viewed (0)
  5. src/internal/fuzz/mem.go

    // setValue copies the data in b into the shared memory buffer and sets
    // the length. len(b) must be less than or equal to the capacity of the buffer
    // (as returned by cap(m.value())).
    func (m *sharedMem) setValue(b []byte) {
    	v := m.valueRef()
    	if len(b) > cap(v) {
    		panic(fmt.Sprintf("value length %d larger than shared memory capacity %d", len(b), cap(v)))
    	}
    	m.header().valueLen = len(b)
    	copy(v[:cap(v)], b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    	var extent int
    	for _, f := range files {
    		extent += int(f.End() - f.Pos())
    	}
    	// This estimate is based on the net/http package.
    	capacity := extent * 33 / 100
    	if capacity > 1e6 {
    		capacity = 1e6 // impose some reasonable maximum
    	}
    	events := make([]event, 0, capacity)
    
    	var stack []event
    	stack = append(stack, event{}) // include an extra event so file nodes have a parent
    	for _, f := range files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/reflect/61308.md

    The [SliceAt(typ Type, p unsafe.Pointer, len int)] function
    returns a Value representing a slice whose underlying array starts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 170 bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

        color: #a0a0a0;
        text-align: center;
    }
    
    #tooltip {
        position: absolute;
        display: none;
        font-size: 10pt;
        background-color: #fee;
        border: solid 1px #fdd;
        opacity: 0.80;
        padding: 3px;
    }
    
    a.commit-link {
        text-decoration: none;
        color: #444;
        padding: 3px 5px;
    }
    
    a.compare-link {
        text-decoration: none;
        color: #a0a0a0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSIStorageCapacity.yaml

    apiVersion: storage.k8s.io/v1
    capacity: "0"
    kind: CSIStorageCapacity
    maximumVolumeSize: "0"
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/api/types.go

    }
    
    // GetThresholdQuantity returns the expected quantity value for a thresholdValue
    func GetThresholdQuantity(value ThresholdValue, capacity *resource.Quantity) *resource.Quantity {
    	if value.Quantity != nil {
    		res := value.Quantity.DeepCopy()
    		return &res
    	}
    	return resource.NewQuantity(int64(float64(capacity.Value())*float64(value.Percentage)), resource.BinarySI)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top