Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 238 for opload (0.19 sec)

  1. src/sync/map_test.go

    )
    
    var mapOps = [...]mapOp{
    	opLoad,
    	opStore,
    	opLoadOrStore,
    	opLoadAndDelete,
    	opDelete,
    	opSwap,
    	opCompareAndSwap,
    	opCompareAndDelete,
    	opClear,
    }
    
    // mapCall is a quick.Generator for calls on mapInterface.
    type mapCall struct {
    	op   mapOp
    	k, v any
    }
    
    func (c mapCall) apply(m mapInterface) (any, bool) {
    	switch c.op {
    	case opLoad:
    		return m.Load(c.k)
    	case opStore:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 15:34:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/memcombine.go

    			}
    		}
    		if v.Op != extOp {
    			return false
    		}
    		load := v.Args[0]
    		if load.Op != OpLoad {
    			return false
    		}
    		if load.Uses != 1 {
    			return false
    		}
    		if load.Args[1] != mem {
    			return false
    		}
    		p, off := splitPtr(load.Args[0])
    		if p != base {
    			return false
    		}
    		r[i] = LoadRecord{load: load, offset: off, shift: shift}
    	}
    
    	// Sort in memory address order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    				if eh > 1 {
    					c.ctxt.Diag("illegal EH field\n%v", p)
    				}
    				o1 = AOP_RRRI(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg), uint32(eh))
    			} else {
    				o1 = AOP_RRR(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg))
    			}
    		default:
    			o1 = AOP_RRR(c.oploadx(p.As), uint32(p.To.Reg), uint32(p.From.Index), uint32(p.From.Reg))
    		}
    	case 46: /* plain op */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/check.go

    						v.Op, v.Type.String())
    				}
    			case OpStringLen:
    				if v.Type != c.Types.Int {
    					f.Fatalf("bad %s type: want int, have %s",
    						v.Op, v.Type.String())
    				}
    			case OpLoad:
    				if !v.Args[1].Type.IsMemory() {
    					f.Fatalf("bad arg 1 type to %s: want mem, have %s",
    						v.Op, v.Args[1].Type.String())
    				}
    			case OpStore:
    				if !v.Type.IsMemory() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			b.AddEdgeTo(cacheMiss)
    			b.AddEdgeTo(loopHead)
    
    			// On a hit, load the data fields of the cache entry.
    			//   Case = e.Case
    			//   Itab = e.Itab
    			s.startBlock(cacheHit)
    			eCase := s.newValue2(ssa.OpLoad, typs.Int, s.newValue1I(ssa.OpOffPtr, typs.IntPtr, s.config.PtrSize, e), s.mem())
    			eItab := s.newValue2(ssa.OpLoad, typs.BytePtr, s.newValue1I(ssa.OpOffPtr, typs.BytePtrPtr, 2*s.config.PtrSize, e), s.mem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(t.IsStruct() && t.NumFields() == 4 && CanSSA(t)) {
    			break
    		}
    		v.reset(OpStructMake4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. ci/official/upload.sh

    DOWNLOADS="$(mktemp -d)"
    mkdir -p "$DOWNLOADS"
    gsutil -m rsync -r "$TFCI_ARTIFACT_STAGING_GCS_URI" "$DOWNLOADS"
    ls "$DOWNLOADS"
    
    # Upload all build artifacts to e.g. gs://tensorflow/versions/2.16.0-rc1 (releases) or
    # gs://tensorflow/nightly/2.16.0-dev20240105 (nightly), overwriting previous values.
    if [[ "$TFCI_ARTIFACT_FINAL_GCS_ENABLE" == 1 ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    // license that can be found in the LICENSE file.
    
    package upload
    
    import (
    	"bytes"
    	"net/http"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    	"time"
    )
    
    var (
    	dateRE     = regexp.MustCompile(`(\d\d\d\d-\d\d-\d\d)[.]json$`)
    	dateFormat = "2006-01-02"
    	// TODO(rfindley): use dateFormat throughout.
    )
    
    // uploadReportDate returns the date component of the upload file name, or "" if the
    // date was unmatched.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/tasks/Upload.java

     *
     * @deprecated This class is scheduled for removal in a future version. To upload artifacts, use the `maven-publish` or `ivy-publish` plugins instead.
     */
    @Deprecated // TODO:Finalize Upload Removal - Issue #21439
    @DisableCachingByDefault(because = "Produces no cacheable output")
    public abstract class Upload extends ConventionTask {
        /**
         * Do not use this method, it is for internal use only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVWloadidx", argLength: 3, reg: gp2load, asm: "MOVW", typ: "Int32"},     // load 32-bit word from arg0 + arg1, sign-extended to 64-bit, arg2=mem.
    		{name: "MOVWUloadidx", argLength: 3, reg: gp2load, asm: "MOVWU", typ: "UInt32"},  // load 32-bit word from arg0 + arg1, zero-extended to 64-bit, arg2=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top