Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for 1234567M (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(10800, -4, DecimalSI), "1080m", ""},
    		{decQuantity(300, 6, DecimalSI), "300M", ""},
    		{decQuantity(1, 12, DecimalSI), "1T", ""},
    		{decQuantity(1234567, 6, DecimalSI), "1234567M", ""},
    		{decQuantity(1234567, -3, BinarySI), "1234567m", ""},
    		{decQuantity(3, 3, DecimalSI), "3k", ""},
    		{decQuantity(1025, 0, BinarySI), "1025", ""},
    		{decQuantity(0, 0, DecimalSI), "0", ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/literals.go

    	// decimals
    	assert(1_234 == 1234)
    	assert(1_234_567 == 1234567)
    
    	// hexadecimals
    	assert(0X_0 == 0)
    	assert(0X_1234 == 0x1234)
    	assert(0X_CAFE_f00d == 0xcafef00d)
    
    	// octals
    	assert(0o0 == 0)
    	assert(0o1234 == 01234)
    	assert(0o01234567 == 01234567)
    
    	assert(0O0 == 0)
    	assert(0O1234 == 01234)
    	assert(0O01234567 == 01234567)
    
    	assert(0o_0 == 0)
    	assert(0o_1234 == 01234)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    		{
    			"take two cpus from single socket with HT",
    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    			2,
    			"",
    			cpuset.New(0, 4),
    		},
    		{
    			"take all cpus from single socket with HT",
    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    			8,
    			"",
    			cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    		},
    		{
    			"take two cpus from single socket with HT, only one core totally free",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. src/cmd/internal/notsha256/sha256block_386.s

    	SHA256ROUND0(5, 0x59f111f1, 3, 4, 5, 6, 7, 0, 1, 2)
    	SHA256ROUND0(6, 0x923f82a4, 2, 3, 4, 5, 6, 7, 0, 1)
    	SHA256ROUND0(7, 0xab1c5ed5, 1, 2, 3, 4, 5, 6, 7, 0)
    	SHA256ROUND0(8, 0xd807aa98, 0, 1, 2, 3, 4, 5, 6, 7)
    	SHA256ROUND0(9, 0x12835b01, 7, 0, 1, 2, 3, 4, 5, 6)
    	SHA256ROUND0(10, 0x243185be, 6, 7, 0, 1, 2, 3, 4, 5)
    	SHA256ROUND0(11, 0x550c7dc3, 5, 6, 7, 0, 1, 2, 3, 4)
    	SHA256ROUND0(12, 0x72be5d74, 4, 5, 6, 7, 0, 1, 2, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256block_386.s

    	SHA256ROUND0(5, 0x59f111f1, 3, 4, 5, 6, 7, 0, 1, 2)
    	SHA256ROUND0(6, 0x923f82a4, 2, 3, 4, 5, 6, 7, 0, 1)
    	SHA256ROUND0(7, 0xab1c5ed5, 1, 2, 3, 4, 5, 6, 7, 0)
    	SHA256ROUND0(8, 0xd807aa98, 0, 1, 2, 3, 4, 5, 6, 7)
    	SHA256ROUND0(9, 0x12835b01, 7, 0, 1, 2, 3, 4, 5, 6)
    	SHA256ROUND0(10, 0x243185be, 6, 7, 0, 1, 2, 3, 4, 5)
    	SHA256ROUND0(11, 0x550c7dc3, 5, 6, 7, 0, 1, 2, 3, 4)
    	SHA256ROUND0(12, 0x72be5d74, 4, 5, 6, 7, 0, 1, 2, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/append_test.go

    	expect(t, a, []int{1})
    	a = appendThree_ssa(a, 2, 3, 4)
    	expect(t, a, []int{1, 2, 3, 4})
    	a = appendThree_ssa(a, 5, 6, 7)
    	expect(t, a, []int{1, 2, 3, 4, 5, 6, 7})
    	if &a[0] != &store[0] {
    		t.Errorf("unnecessary grow")
    	}
    	a = appendOne_ssa(a, 8)
    	expect(t, a, []int{1, 2, 3, 4, 5, 6, 7, 8})
    	if &a[0] == &store[0] {
    		t.Errorf("didn't grow")
    	}
    }
    
    func TestAppend(t *testing.T) {
    	testAppend(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	PNOP                                    // 0700000000000000
    	PSTB R1, $1, 12345678(R2)               // 061000bc9822614e
    	PSTD R1, $1, 12345678(R2)               // 041000bcf422614e
    	PSTFD F1, $1, 12345678(R2)              // 061000bcd822614e
    	PSTFS F1, $1, 123456789(R7)             // 0610075bd027cd15
    	PSTH R1, $1, 12345678(R2)               // 061000bcb022614e
    	PSTQ R2, $1, 12345678(R2)               // 041000bcf042614e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashCodeTest.groovy

            expect:
            HashCode.fromString("12345678").toZeroPaddedString(8) == "12345678"
            HashCode.fromString("12345678").toZeroPaddedString(7) == "12345678"
            HashCode.fromString("12345678").toZeroPaddedString(0) == "12345678"
            HashCode.fromString("12345678").toZeroPaddedString(9) == "012345678"
            HashCode.fromString("12345678").toZeroPaddedString(16) == "0000000012345678"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  9. src/go/constant/value_test.go

    	// decimals
    	`1_234 = 1234`,
    	`1_234_567 = 1234567`,
    
    	// hexadecimals
    	`0X_0 = 0`,
    	`0X_1234 = 0x1234`,
    	`0X_CAFE_f00d = 0xcafef00d`,
    
    	// octals
    	`0o0 = 0`,
    	`0o1234 = 01234`,
    	`0o01234567 = 01234567`,
    
    	`0O0 = 0`,
    	`0O1234 = 01234`,
    	`0O01234567 = 01234567`,
    
    	`0o_0 = 0`,
    	`0o_1234 = 01234`,
    	`0o0123_4567 = 01234567`,
    
    	`0O_0 = 0`,
    	`0O_1234 = 01234`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/qos_container_manager_linux_test.go

    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func activeTestPods() []*v1.Pod {
    	return []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:       "12345678",
    				Name:      "guaranteed-pod",
    				Namespace: "test",
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Name:  "foo",
    						Image: "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top