Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 2G (0.03 sec)

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

    			pvc:  getTestPVC("test-vol0", "2G", "2G", "2G", nil),
    			pv:   getTestPV("test-vol0", "2G"),
    
    			expectedResizeStatus: "",
    			resizeCallCount:      0,
    			expectedStatusSize:   resource.MustParse("2G"),
    		},
    		{
    			name:        "pv.spec.cap = pvc.status.cap, resizeStatus='', desiredSize > actualSize",
    			pvc:         getTestPVC("test-vol0", "2G", "2G", "2G", nil),
    			pv:          getTestPV("test-vol0", "2G"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    			expectRemainingBudget:    pointer.Int64(0),
    		},
    		{
    			name: "Extended library cost: quantity",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "quantity(\"200M\") == quantity(\"0.2G\") && quantity(\"0.2G\") == quantity(\"200M\")",
    				},
    			},
    			attributes:               newValidAttribute(nil, false),
    			hasParamKind:             false,
    			exceedBudget:             false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    			expectRuntimeCost:   3,
    		},
    		{
    			name:                "equality_symmetry",
    			expr:                `quantity("200M") == quantity("0.2G") && quantity("0.2G") == quantity("200M")`,
    			expectEstimatedCost: checker.CostEstimate{Min: 3, Max: 3689348814741910532},
    			expectRuntimeCost:   6,
    		},
    		{
    			name:                "equality_transitivity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/go/token/position.go

    		panic(fmt.Sprintf("invalid size %d (should be >= 0)", size))
    	}
    	// base >= s.base && size >= 0
    	base += size + 1 // +1 because EOF also has a position
    	if base < 0 {
    		panic("token.Pos offset overflow (> 2G of source code in file set)")
    	}
    	// add the file to the file set
    	s.base = base
    	s.files = append(s.files, f)
    	s.last.Store(f)
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top