Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for otherBytes (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InPlaceClasspathBuilderTest.groovy

            builder.directory(dir) {
                it.put("file.txt", "bytes".bytes)
                it.put("dir/other.txt", "otherBytes".bytes)
            }
    
            then:
            dir.assertHasDescendants("file.txt", "dir/other.txt")
            dir.file("file.txt").text == "bytes"
            dir.file("dir", "other.txt").text == "otherBytes"
        }
    
        def "clears existing directory before building"() {
            def dir = tmpDir.createDir("things")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/runtime/metrics/description.go

    		Description: "Memory that is occupied by runtime mspan structures that are currently being used.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/memory/classes/metadata/other:bytes",
    		Description: "Memory that is reserved for or used to hold runtime metadata.",
    		Kind:        KindUint64,
    	},
    	{
    		Name: "/memory/classes/os-stacks:bytes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. src/runtime/metrics.go

    			deps: makeStatDepSet(sysStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = in.sysStats.mSpanInUse
    			},
    		},
    		"/memory/classes/metadata/other:bytes": {
    			deps: makeStatDepSet(heapStatsDep, sysStatsDep),
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/runtime/metrics/doc.go

    		in-use.
    
    	/memory/classes/metadata/mspan/inuse:bytes
    		Memory that is occupied by runtime mspan structures that are
    		currently being used.
    
    	/memory/classes/metadata/other:bytes
    		Memory that is reserved for or used to hold runtime metadata.
    
    	/memory/classes/os-stacks:bytes
    		Stack memory allocated by the underlying operating system.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/runtime/metrics_test.go

    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.MSpanInuse)
    		case "/memory/classes/metadata/other:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.GCSys)
    		case "/memory/classes/os-stacks:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.StackSys-mstats.StackInuse)
    		case "/memory/classes/other:bytes":
    			checkUint64(t, name, samples[i].Value.Uint64(), mstats.OtherSys)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top