Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 8G (0.02 sec)

  1. pkg/controller/volume/persistentvolume/index_test.go

    		},
    		"pvc nil and pv filesystem": {
    			isExpectedMismatch: false,
    			vol:                createVolumeModeFilesystemTestVolume(),
    			pvc:                makeVolumeModePVC("8G", nil, nil),
    		},
    		"pvc nil and pv nil": {
    			isExpectedMismatch: false,
    			vol:                createVolumeModeNilTestVolume(),
    			pvc:                makeVolumeModePVC("8G", nil, nil),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MaximumHeapHelperTest.groovy

            MemoryAmount.of('512g') | 64      | true   | MemoryAmount.of('32g')
            MemoryAmount.of('8g')   | 64      | true   | MemoryAmount.of('2g')
            MemoryAmount.of('512g') | 64      | false  | MemoryAmount.of('1g')
            MemoryAmount.of('2g')   | 64      | false  | MemoryAmount.of('512m')
            MemoryAmount.of('8g')   | 32      | false  | MemoryAmount.of('1g')
            MemoryAmount.of('2g')   | 32      | false  | MemoryAmount.of('512m')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/DefaultMemoryManagerTest.groovy

        def osMemoryInfo = new TestOsMemoryInfo()
        def jvmMemoryInfo = new DefaultJvmMemoryInfo()
        OsMemoryStatusListener osMemoryStatusListener
    
        def setup() {
            osMemoryInfo.totalMemory = MemoryAmount.of('8g').bytes
        }
    
        /**
         * Creates a new MemoryManager suitable for testing.
         * Disable auto free memory request to prevent flakiness.
         * Registers an OS memory status update to initialize the values.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. test/fixedbugs/issue9355.go

    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	f.Close()
    
    	out := run("go", "tool", "compile", "-p=p", "-o", f.Name(), "-S", "a.go")
    	os.Remove(f.Name())
    
    	// 6g/8g print the offset as dec, but 5g/9g print the offset as hex.
    	patterns := []string{
    		`rel 0\+\d t=R_ADDR p\.x\+8\r?\n`,       // y = &x.b
    		`rel 0\+\d t=R_ADDR p\.x\+(28|1c)\r?\n`, // z = &x.d.q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"% 8E", complex(posInf, posInf), "(     Inf    +Infi)"},
    	{"% 8X", complex(posInf, posInf), "(     Inf    +Infi)"},
    	{"%+8f", complex(negInf, negInf), "(    -Inf    -Infi)"},
    	{"% +8g", complex(negInf, negInf), "(    -Inf    -Infi)"},
    	{"% -8G", complex(NaN, NaN), "( NaN    +NaN    i)"},
    	{"%+-8b", complex(NaN, NaN), "(+NaN    +NaN    i)"},
    	// Zero padding does not apply to infinities and NaN.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    }
    
    /*
     * Initial tree setup.
     */
    
    // The old tools that no longer live in $GOBIN or $GOROOT/bin.
    var oldtool = []string{
    	"5a", "5c", "5g", "5l",
    	"6a", "6c", "6g", "6l",
    	"8a", "8c", "8g", "8l",
    	"9a", "9c", "9g", "9l",
    	"6cov",
    	"6nm",
    	"6prof",
    	"cgo",
    	"ebnflint",
    	"goapi",
    	"gofix",
    	"goinstall",
    	"gomake",
    	"gopack",
    	"gopprof",
    	"gotest",
    	"gotype",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top