Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for loadsys (0.16 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    	// has more than one use.
    	if load.Uses != 1 {
    		return false
    	}
    
    	mem := load.MemoryArg()
    
    	// We need the load's memory arg to still be alive at target. That
    	// can't be the case if one of target's args depends on a memory
    	// state that is a successor of load's memory arg.
    	//
    	// For example, it would be invalid to merge load into target in
    	// the following situation because newmem has killed oldmem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Indexed ops generate indexed load or store instructions for all GOPPC64 values.
    // Non-indexed ops generate DS-form loads and stores when the offset fits in 16 bits,
    // and on power8 and power9, a multiple of 4 is required for MOVW and MOVD ops.
    // On power10, prefixed loads and stores can be used for offsets > 16 bits and <= 32 bits.
    // and support for PC relative addressing must be available if relocation is needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    		}
    	}
    	return FuncInfo{}
    }
    
    // Preload a package: adds autolib.
    // Does not add defined package or non-packaged symbols to the symbol table.
    // These are done in LoadSyms.
    // Does not read symbol data.
    // Returns the fingerprint of the object.
    func (l *Loader) Preload(localSymVersion int, f *bio.Reader, lib *sym.Library, unit *sym.CompilationUnit, length int64) goobj.FingerprintType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. tensorflow/BUILD

        }),
    )
    # copybara:comment_end
    
    # A shared object which includes registration mechanisms for ops and
    # kernels. Does not include the implementations of any ops or kernels. Instead,
    # the library which loads libtensorflow_framework.so
    # (e.g. _pywrap_tensorflow_internal.so for Python, libtensorflow.so for the C
    # API) is responsible for registering ops with libtensorflow_framework.so. In
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ppc64/ssa.go

    			// alignment with small iteration
    			// counts.
    			if ctr > 3 {
    				p = s.Prog(obj.APCALIGN)
    				p.From.Type = obj.TYPE_CONST
    				p.From.Offset = 16
    			}
    
    			// Generate 16 byte loads and stores.
    			// Use temp register for index (16)
    			// on the second one.
    
    			p = s.Prog(ppc64.ALXVD2X)
    			p.From.Type = obj.TYPE_MEM
    			p.From.Reg = srcReg
    			p.From.Index = ppc64.REGZERO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    				lib := ctxt.Library[i]
    				if lib.Shlib == "" {
    					loadobjfile(ctxt, lib)
    				}
    			}
    		}
    	}
    
    	// Add non-package symbols and references of externally defined symbols.
    	ctxt.loader.LoadSyms(ctxt.Arch)
    
    	// Load symbols from shared libraries, after all Go object symbols are loaded.
    	for _, lib := range ctxt.Library {
    		if lib.Shlib != "" {
    			if ctxt.Debugvlog > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. cmd/iam.go

    }
    
    // IAMUserType represents a user type inside MinIO server
    type IAMUserType int
    
    const (
    	unknownIAMUserType IAMUserType = iota - 1
    	regUser
    	stsUser
    	svcUser
    )
    
    // LoadGroup - loads a specific group from storage, and updates the
    // memberships cache. If the specified group does not exist in
    // storage, it is removed from in-memory maps as well - this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    		pruning modPruning
    	}
    	var (
    		loadQueue = par.NewQueue(runtime.GOMAXPROCS(0))
    		loading   sync.Map // dedupKey → nil; the set of modules that have been or are being loaded
    	)
    
    	// loadOne synchronously loads the explicit requirements for module m.
    	// It does not load the transitive requirements of m even if the go version in
    	// m's go.mod file indicates that it supports graph pruning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top