Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 2P (0.92 sec)

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

    		{"7M", decQuantity(7, 6, DecimalSI)},
    		{"6G", decQuantity(6, 9, DecimalSI)},
    		{"5T", decQuantity(5, 12, DecimalSI)},
    		{"40T", decQuantity(4, 13, DecimalSI)},
    		{"300T", decQuantity(3, 14, DecimalSI)},
    		{"2P", decQuantity(2, 15, DecimalSI)},
    		{"1E", decQuantity(1, 18, DecimalSI)},
    
    		// Decimal exponents
    		{"1E-3", decQuantity(1, -3, DecimalExponent)},
    		{"1e3", decQuantity(1, 3, DecimalExponent)},
    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/fmt/fmt_test.go

    	// %p with pointers
    	{"%p", (*int)(nil), "0x0"},
    	{"%#p", (*int)(nil), "0"},
    	{"%p", &intVar, "0xPTR"},
    	{"%#p", &intVar, "PTR"},
    	{"%p", &array, "0xPTR"},
    	{"%p", &slice, "0xPTR"},
    	{"%8.2p", (*int)(nil), "    0x00"},
    	{"%-20.16p", &intVar, "0xPTR  "},
    	// %p on non-pointers
    	{"%p", make(chan int), "0xPTR"},
    	{"%p", make(map[int]int), "0xPTR"},
    	{"%p", func() {}, "0xPTR"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top