Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 1000000000 (0.14 sec)

  1. pkg/apis/core/types.go

    type RangeAllocation struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    	// A string representing a unique label for a range of resources, such as a CIDR "10.0.0.0/8" or
    	// port range "10000-30000". Range is not strongly schema'd here. The Range is expected to define
    	// a start and end unless there is an implicit end.
    	Range string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    		expect: true,
    	}, {
    		name: "ClusterIPs_wrong",
    		input: svcTestCase{
    			svc:              svctest.MakeService("foo", svctest.SetTypeClusterIP, svctest.SetClusterIPs("10.0.0.0", "2000:0")),
    			expectClusterIPs: true,
    		},
    		output: svctest.MakeService("foo", svctest.SetTypeClusterIP, svctest.SetClusterIPs("10.0.0.1", "2000:1")),
    		expect: false,
    	}, {
    		name: "ClusterIPs_partial",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	// difference in the resulting rounding. Therefore, we
    	// preserve it, and OR (not ADD) it back in. The case
    	// that matters is when the eleven discarded bits are
    	// equal to 10000000001; that rounds up, and the 1 cannot
    	// be lost else it would round down if the LSB of the
    	// candidate mantissa is 0.
    	cmp := s.newValue2(cvttab.leq, types.Types[types.TBOOL], s.zeroVal(ft), x)
    	b := s.endBlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    1024                int16       1024 is in the set of 16-bit integers
    42.0                byte        42 is in the set of unsigned 8-bit integers
    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top