Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 328 for scav (0.05 sec)

  1. src/runtime/mpagecache.go

    	if c.cache == 0 {
    		return 0, 0
    	}
    	if npages == 1 {
    		i := uintptr(sys.TrailingZeros64(c.cache))
    		scav := (c.scav >> i) & 1
    		c.cache &^= 1 << i // set bit to mark in-use
    		c.scav &^= 1 << i  // clear bit to mark unscavenged
    		return c.base + i*pageSize, uintptr(scav) * pageSize
    	}
    	return c.allocN(npages)
    }
    
    // allocN is a helper which attempts to allocate npages worth of pages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_32bit.go

    	logPallocChunkPages + 3*summaryLevelBits,
    	logPallocChunkPages + 2*summaryLevelBits,
    	logPallocChunkPages + 1*summaryLevelBits,
    	logPallocChunkPages,
    }
    
    // scavengeIndexArray is the backing store for p.scav.index.chunks.
    // On 32-bit platforms, it's small enough to just be a global.
    var scavengeIndexArray [(1 << heapAddrBits) / pallocChunkBytes]atomicScavChunkData
    
    // See mpagealloc_64bit.go for details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/runtime/mpagealloc_64bit.go

    		sysUsed(unsafe.Pointer(need.base.addr()), need.size(), need.size())
    		p.summaryMappedReady += need.size()
    	}
    
    	// Update the scavenge index.
    	p.summaryMappedReady += p.scav.index.sysGrow(base, limit, p.sysStat)
    }
    
    // sysGrow increases the index's backing store in response to a heap growth.
    //
    // Returns the amount of memory added to sysStat.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/build-cache/previous-next-scan.svg

    previous-next-scan.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/scan.go

    cui fliter <******@****.***> 1711121504 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/anames.go

    	"TLBWI",
    	"TLBWR",
    	"TNE",
    	"WORD",
    	"WSBH",
    	"XOR",
    	"MOVV",
    	"MOVVL",
    	"MOVVR",
    	"SLLV",
    	"SRAV",
    	"SRLV",
    	"DIVV",
    	"DIVVU",
    	"REMV",
    	"REMVU",
    	"MULV",
    	"MULVU",
    	"ADDV",
    	"ADDVU",
    	"SUBV",
    	"SUBVU",
    	"DSBH",
    	"DSHD",
    	"TRUNCFV",
    	"TRUNCDV",
    	"TRUNCFW",
    	"TRUNCDW",
    	"MOVWU",
    	"MOVFV",
    	"MOVDV",
    	"MOVVF",
    	"MOVVD",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/anames.go

    	"OR",
    	"REM",
    	"REMU",
    	"RFE",
    	"SC",
    	"SCV",
    	"SGT",
    	"SGTU",
    	"SLL",
    	"SQRTD",
    	"SQRTF",
    	"SRA",
    	"SRL",
    	"ROTR",
    	"SUB",
    	"SUBD",
    	"SUBF",
    	"SUBU",
    	"SUBW",
    	"DBAR",
    	"SYSCALL",
    	"TEQ",
    	"TNE",
    	"WORD",
    	"XOR",
    	"MASKEQZ",
    	"MASKNEZ",
    	"MOVV",
    	"MOVVL",
    	"MOVVR",
    	"SLLV",
    	"SRAV",
    	"SRLV",
    	"ROTRV",
    	"DIVV",
    	"DIVVU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanConfigIntegrationTest.groovy

        }
    
        def "warns if scan requested but no scan plugin applied"() {
            given:
            scanPlugin.collectConfig = false
    
            when:
            succeeds "t", "--scan"
    
            then:
            scanPlugin.issuedNoPluginWarning(output)
        }
    
        def "does not warns if scan requested but no scan plugin unsupported"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/config/BuildScanConfig.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scan.config;
    
    import org.gradle.StartParameter;
    
    /**
     * Represents the aspects of build scan configuration that Gradle contributes.
     * Does not include configuration aspects that the scan plugin manages (e.g. server address).
     * Currently, this is effectively the --scan and --no-scan invocation options.
     *
     * @since 4.0
     */
    public interface BuildScanConfig {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_load_err.txt

    [cgo] go list -e -f '{{range .GoFiles}}{{.}},{{end}}' ./cgoflag
    [cgo] stdout '^cgoflag.go,$'
    
    -- go.mod --
    module m
    
    go 1.14
    
    -- want/want.go --
    package want
    
    -- scan/scan.go --
    // scan error
    ʕ◔ϖ◔ʔ
    
    -- scan/good.go --
    package scan
    
    import _ "m/want"
    
    -- multi/a.go --
    package a
    
    -- multi/b.go --
    package b
    
    import _ "m/want"
    
    -- constraint/constraint.go --
    // +build !!nope
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top