Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for loadOps (0.14 sec)

  1. src/runtime/asm_amd64.s

    	MOVQ X7, 128(R12)
    	MOVQ X8, 136(R12)
    	MOVQ X9, 144(R12)
    	MOVQ X10, 152(R12)
    	MOVQ X11, 160(R12)
    	MOVQ X12, 168(R12)
    	MOVQ X13, 176(R12)
    	MOVQ X14, 184(R12)
    	RET
    
    // unspillArgs loads args into registers from a *internal/abi.RegArgs in R12.
    TEXT ·unspillArgs(SB),NOSPLIT,$0-0
    	MOVQ 0(R12), AX
    	MOVQ 8(R12), BX
    	MOVQ 16(R12), CX
    	MOVQ 24(R12), DI
    	MOVQ 32(R12), SI
    	MOVQ 40(R12), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    		ehdr.Shentsize = ELF32SHDRSIZE /* Must be ELF32SHDRSIZE */
    	}
    }
    
    // Make sure PT_LOAD is aligned properly and
    // that there is no gap,
    // correct ELF loaders will do this implicitly,
    // but buggy ELF loaders like the one in some
    // versions of QEMU and UPX won't.
    func fixElfPhdr(e *ElfPhdr) {
    	frag := int(e.Vaddr & (e.Align - 1))
    
    	e.Off -= uint64(frag)
    	e.Vaddr -= uint64(frag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    limitations under the License.
    */
    
    // The Controller sets tainted annotations on nodes.
    // Tainted nodes should not be used for new work loads and
    // some effort should be given to getting existing work
    // loads off of tainted nodes.
    
    package nodelifecycle
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	coordv1 "k8s.io/api/coordination/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	// AllowPackage may be invoked concurrently by multiple goroutines,
    	// and may be invoked multiple times for a given package path.
    	AllowPackage func(ctx context.Context, path string, mod module.Version) error
    
    	// LoadTests loads the test dependencies of each package matching a requested
    	// pattern. If ResolveMissingImports is also true, test dependencies will be
    	// resolved if missing.
    	LoadTests bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    // itself have data, but gives a name to a subrange of the data in its
    // container symbol. The container itself may or may not have a name.
    // This method is intended primarily for use in the host object
    // loaders, to capture the semantics of symbols and sections in an
    // object file. When reading a host object file, we'll typically
    // encounter a static section symbol (ex: ".text") containing content
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// atomic loads.
    		// load from arg0. arg1=mem. auxint must be zero.
    		// returns <value,memory> so they can be properly ordered with other loads.
    		{name: "LDAR", argLength: 2, reg: gpload, asm: "LDAR", faultOnNilArg0: true},
    		{name: "LDARB", argLength: 2, reg: gpload, asm: "LDARB", faultOnNilArg0: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Addr {sym} base) => (MOVWaddr {sym} base)
    (LocalAddr <t> {sym} base mem) && t.Elem().HasPointers() => (MOVWaddr {sym} (SPanchored base mem))
    (LocalAddr <t> {sym} base _)  && !t.Elem().HasPointers() => (MOVWaddr {sym} base)
    
    // loads
    (Load <t> ptr mem) && t.IsBoolean() => (MOVBUload ptr mem)
    (Load <t> ptr mem) && (is8BitInt(t)  &&  t.IsSigned()) => (MOVBload ptr mem)
    (Load <t> ptr mem) && (is8BitInt(t)  && !t.IsSigned()) => (MOVBUload ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  8. go.sum

    github.com/go-openapi/jsonreference v0.21.0/go.mod h1:LmZmgsrTkVg9LG4EaHeY8cBDslNPMo06cago5JNLkm4=
    github.com/go-openapi/loads v0.22.0 h1:ECPGd4jX1U6NApCGG1We+uEozOAvXvJSF4nnwHZ8Aco=
    github.com/go-openapi/loads v0.22.0/go.mod h1:yLsaTCS92mnSAZX5WWoxszLj0u+Ojl+Zs5Stn1oF+rs=
    github.com/go-openapi/runtime v0.28.0 h1:gpPPmWSNGo214l6n8hzdXYhPuJcGtziTOgUpvsFWGIQ=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  9. src/reflect/type.go

    // FuncOf does not share the common lookupCache since cacheKey is not
    // sufficient to represent functions unambiguously.
    var funcLookupCache struct {
    	sync.Mutex // Guards stores (but not loads) on m.
    
    	// m is a map[uint32][]*rtype keyed by the hash calculated in FuncOf.
    	// Elements of m are append-only and thus safe for concurrent reading.
    	m sync.Map
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    			cache.iamUserPolicyMap.Store(name, mp)
    		}
    	} else {
    		cache.iamGroupPolicyMap.Store(name, mp)
    	}
    	cache.updatedAt = time.Now()
    	return mp.UpdatedAt, nil
    }
    
    // PolicyNotificationHandler - loads given policy from storage. If not present,
    // deletes from cache. This notification only reads from storage, and updates
    // cache. When the notification is for a policy deletion, it updates the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top