Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 672 for fopacity (0.16 sec)

  1. src/internal/saferio/io_test.go

    	t.Run("small", func(t *testing.T) {
    		c := SliceCap[int](10)
    		if c != 10 {
    			t.Errorf("got capacity %d, want %d", c, 10)
    		}
    	})
    
    	t.Run("large", func(t *testing.T) {
    		c := SliceCap[byte](1 << 30)
    		if c < 0 {
    			t.Error("SliceCap failed unexpectedly")
    		} else if c == 1<<30 {
    			t.Errorf("got capacity %d which is too high", c)
    		}
    	})
    
    	t.Run("maxint", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 00:34:05 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    			requestedPod: st.MakePod().Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Node("node1").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/expand/expand_controller_test.go

    			pvcKey:             "default/good-pvc",
    			expansionCalled:    false,
    			expectedAnnotation: map[string]string{volumetypes.VolumeResizerKey: csitranslationplugins.AWSEBSDriverName},
    		},
    		{
    			name: "if pv has pre-resize capacity annotation, generate expand operation should not be called",
    			pv: func() *v1.PersistentVolume {
    				pv := getFakePersistentVolume("vol-4", csitranslationplugins.AWSEBSInTreePluginName, "2Gi", "good-pvc-vol-4")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue4085a.go

    	_ = make(T, 1.0)   // ok
    	_ = make(T, 1<<63) // ERROR "len argument too large|overflows int"
    	_ = make(T, 0, -1) // ERROR "negative cap|must not be negative"
    	_ = make(T, 10, 0) // ERROR "len larger than cap|length and capacity swapped"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 604 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSIStorageCapacity.json

          {
            "key": "keyValue",
            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json

          {
            "key": "keyValue",
            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.CSIStorageCapacity.json

          {
            "key": "keyValue",
            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.CSIStorageCapacity.json

          {
            "key": "keyValue",
            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. pkg/api/testing/node_example.json

            "resourceVersion": "379",
            "creationTimestamp": "2015-04-22T11:49:39Z"
        },
        "spec": {
            "externalID": "15488322946290398375"
        },
        "status": {
            "capacity": {
                "cpu": "1",
                "memory": "1745152Ki"
            },
            "conditions": [
                {
                    "type": "Ready",
                    "status": "True",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 00:36:50 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. pkg/scheduler/eventhandlers_test.go

    		},
    		{
    			name: "only node allocatable changed",
    			newNode: st.MakeNode().Capacity(map[v1.ResourceName]string{
    				v1.ResourceCPU:                     "1000m",
    				v1.ResourceMemory:                  "100m",
    				v1.ResourceName("example.com/foo"): "1"},
    			).Obj(),
    			oldNode: st.MakeNode().Capacity(map[v1.ResourceName]string{
    				v1.ResourceCPU:                     "1000m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top