Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for loadOps (0.13 sec)

  1. src/runtime/mbitmap.go

    	var sl notInHeapSlice
    	sl = notInHeapSlice{(*notInHeap)(unsafe.Pointer(spanBase + spanSize - bitmapSize)), elems, elems}
    	return *(*[]uintptr)(unsafe.Pointer(&sl))
    }
    
    // heapBitsSmallForAddr loads the heap bits for the object stored at addr from span.heapBits.
    //
    // addr must be the base pointer of an object in the span. heapBitsInSpan(span.elemsize)
    // must be true.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    	// into a deterministic-but-arbitrary order.
    	sort.Slice(upgrades, func(i, j int) bool {
    		return upgrades[i].path < upgrades[j].path
    	})
    	return upgrades
    }
    
    // loadPackages loads the packages matching the given patterns, invoking the
    // findPackage function for each package that may require a change to the
    // build list.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Following the configuration phase, Gradle writes a snapshot of the task graph to a new configuration cache entry, for later Gradle invocations.
    Gradle then loads the task graph from the configuration cache, so that it can apply optimizations to the tasks, and then runs the execution phase as normal.
    Configuration time will still be spent the first time you run a particular set of tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    func newMarkBits(nelems uintptr) *gcBits {
    	blocksNeeded := (nelems + 63) / 64
    	bytesNeeded := blocksNeeded * 8
    
    	// Try directly allocating from the current head arena.
    	head := (*gcBitsArena)(atomic.Loadp(unsafe.Pointer(&gcBitsArenas.next)))
    	if p := head.tryAlloc(bytesNeeded); p != nil {
    		return p
    	}
    
    	// There's not enough room in the head arena. We may need to
    	// allocate a new arena.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    When a task input is annotated with `@Input` and is not a type Gradle understand directly (like `String`), then Gradle uses the serialized form of the input for up-to-date checks and the build cache key.
    Historically, Gradle also loads the serialized value from the last execution and then uses `equals()` to compare it to the current value for up-to-date checks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    				ins2 := &instruction{as: ASRLI, rd: ins.rd, rs1: ins.rd, imm: ins.imm}
    				inss = append(inss, ins2)
    			}
    		}
    
    	case p.From.Type == obj.TYPE_MEM && p.To.Type == obj.TYPE_REG:
    		// Memory to register loads.
    		switch p.From.Name {
    		case obj.NAME_AUTO, obj.NAME_PARAM, obj.NAME_NONE:
    			// MOV c(Rs), Rd -> L $c, Rs, Rd
    			inss = instructionsForLoad(p, movToLoad(p.As), addrToReg(p.From))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    // dtype when used as the type of a variable or a struct field.
    func (c *typeConv) Type(dtype dwarf.Type, pos token.Pos) *Type {
    	return c.loadType(dtype, pos, "")
    }
    
    // loadType recursively loads the requested dtype and its dependency graph.
    func (c *typeConv) loadType(dtype dwarf.Type, pos token.Pos, parent string) *Type {
    	// Always recompute bad pointer typedefs, as the set of such
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top