Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for inittasks (0.97 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

        var allTags = $('#filter-popover .form-check-input').toArray().map(checkbox => checkbox.value);
        refreshCards(allTags)
    }
    
    function initTabs() {
        if (window.location.hash.length > 0) {
            allScenarioButtonClicked()
        } else if ($('#failed-scenarios').length > 0) {
            failedScenarioButtonClicked()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	return enum.pos
    }
    
    func gcd(a, b uint32) uint32 {
    	for b != 0 {
    		a, b = b, a%b
    	}
    	return a
    }
    
    // An initTask represents the set of initializations that need to be done for a package.
    // Keep in sync with ../../test/noinit.go:initTask
    type initTask struct {
    	state uint32 // 0 = uninitialized, 1 = in progress, 2 = done
    	nfns  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    	// the executable file is mapped in memory.
    	R_PEIMAGEOFF
    
    	// R_INITORDER specifies an ordering edge between two inittask records.
    	// (From one p..inittask record to another one.)
    	// This relocation does not apply any changes to the actual data, it is
    	// just used in the linker to order the inittask records appropriately.
    	R_INITORDER
    
    	// R_WEAK marks the relocation as a weak reference.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/policy_static_test.go

    	topologyHint                 *topologymanager.TopologyHint
    	expectedTopologyHints        map[string][]topologymanager.TopologyHint
    	initContainersReusableMemory reusableMemory
    }
    
    func initTests(t *testing.T, testCase *testStaticPolicy, hint *topologymanager.TopologyHint, initContainersReusableMemory reusableMemory) (Policy, state.State, error) {
    	manager := topologymanager.NewFakeManager()
    	if hint != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/gcimporter_test.go

    			checked := checkFile(t, filename, src)
    
    			seen := make(map[string]bool)
    			for _, name := range imported.Scope().Names() {
    				if !token.IsExported(name) {
    					continue // ignore synthetic names like .inittask and .dict.*
    				}
    				seen[name] = true
    
    				importedObj := imported.Scope().Lookup(name)
    				got := types.ObjectString(importedObj, types.RelativeTo(imported))
    				got = sanitizeObjectString(got)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    			// these symbols are undefined and that's OK.
    			if target.IsShared() || target.IsPlugin() {
    				if ldr.SymName(rs) == "main.main" || (!target.IsPlugin() && ldr.SymName(rs) == "main..inittask") {
    					sb := ldr.MakeSymbolUpdater(rs)
    					sb.SetType(sym.SDYNIMPORT)
    				} else if strings.HasPrefix(ldr.SymName(rs), "go:info.") {
    					// Skip go.info symbols. They are only needed to communicate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top