Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for entities (0.84 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	// preempt asynchronously.
    	obj.MarkUnsafePoints(c.ctxt, c.cursym.Func().Text, c.newprog, c.isUnsafePoint, c.isRestartable)
    
    	// Now that we know byte offsets, we can generate jump table entries.
    	for _, jt := range cursym.Func().JumpTables {
    		for i, p := range jt.Targets {
    			// The ith jumptable entry points to the p.Pc'th
    			// byte in the function symbol s.
    			// TODO: try using relative PCs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.data", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.edata", 0), sect)
    	dataGcEnd := state.datsize - int64(sect.Vaddr)
    
    	// On AIX, TOC entries must be the last of .data
    	// These aren't part of gc as they won't change during the runtime.
    	state.assignToSection(sect, sym.SXCOFFTOC, sym.SDATA)
    	state.checkdatsize(sym.SDATA)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. src/cmd/go/internal/load/pkg.go

    	// Dependency information
    	Imports   []string          `json:",omitempty"` // import paths used by this package
    	ImportMap map[string]string `json:",omitempty"` // map from source import to ImportPath (identity entries omitted)
    	Deps      []string          `json:",omitempty"` // all (recursively) imported dependencies
    
    	// Error information
    	// Incomplete is above, packed into the other bools
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			if err != nil {
    				t.Fatalf("Test %d: %s: Failed to look for copied object part: <ERROR> %s", i+1, instanceType, err)
    			}
    			if len(results.Parts) != 1 {
    				t.Fatalf("Test %d: %s: Expected only one entry returned %d entries", i+1, instanceType, len(results.Parts))
    			}
    		}
    	}
    
    	// HTTP request for testing when `ObjectLayer` is set to `nil`.
    	// There is no need to use an existing bucket and valid input for creating the request
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    func allGsSnapshot() []*g {
    	assertWorldStoppedOrLockHeld(&allglock)
    
    	// Because the world is stopped or allglock is held, allgadd
    	// cannot happen concurrently with this. allgs grows
    	// monotonically and existing entries never change, so we can
    	// simply return a copy of the slice header. For added safety,
    	// we trim everything past len because that can still change.
    	return allgs[:len(allgs):len(allgs)]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	// the threshold to 10, to not make it overly brittle if something changes in the initial allocation of the
    	// map, but to still catch a regression where we keep re-allocating in the hashmap as new entries are added.
    }
    
    func TestChanAlloc(t *testing.T) {
    	// Note: for a chan int, the return Value must be allocated, so we
    	// use a chan *int instead.
    	c := ValueOf(make(chan *int, 1))
    	v := ValueOf(new(int))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top