Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 224 for store1 (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Lowering stores
    (Store {t} ptr val mem) && t.Size() == 8 &&  t.IsFloat() => (FMOVDstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 4 &&  t.IsFloat() => (FMOVSstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 8 && !t.IsFloat() => (MOVDstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 4 && !t.IsFloat() => (MOVWstore ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 2 => (MOVHstore ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FMOVDstore", argLength: 3, reg: fpstore, aux: "SymOff", asm: "FMOVD", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 8 bytes of arg1 to arg0 + auxInt + aux.  arg2=mem.
    
    		// register indexed store
    		{name: "MOVBstoreidx", argLength: 4, reg: gpstore2, asm: "MOVB", typ: "Mem"},   // store 1 byte of arg2 to arg0 + arg1, arg3 = 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)
  3. pkg/controller/disruption/disruption_test.go

    	}
    
    	return ss, ssName
    }
    
    func update(t *testing.T, store cache.Store, obj interface{}) {
    	if err := store.Update(obj); err != nil {
    		t.Fatalf("Could not add %+v to %+v: %v", obj, store, err)
    	}
    }
    
    func add(t *testing.T, store cache.Store, obj interface{}) {
    	if err := store.Add(obj); err != nil {
    		t.Fatalf("Could not add %+v to %+v: %v", obj, store, err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    			st = ppc64.AMOVW
    		}
    		arg0 := v.Args[0].Reg()
    		arg1 := v.Args[1].Reg()
    		// If AuxInt == 0, LWSYNC (Store-Release), else SYNC
    		// SYNC
    		syncOp := ppc64.ASYNC
    		if v.AuxInt == 0 {
    			syncOp = ppc64.ALWSYNC
    		}
    		psync := s.Prog(syncOp)
    		psync.To.Type = obj.TYPE_NONE
    		// Store
    		p := s.Prog(st)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Reg = arg0
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    	})
    
    	t.Run("External only: workLoadEntry port and serviceEntry target port is not set, use serviceEntry port.number", func(t *testing.T) {
    		store, _, fx := setupTest(t)
    		makeIstioObject(t, store, serviceEntry)
    		makeIstioObject(t, store, workloadEntry)
    
    		instances := []EndpointResponse{{
    			Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address,
    			Port:    80,
    		}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    	dynimplib   map[Sym]string      // stores Dynimplib symbol attribute
    	dynimpvers  map[Sym]string      // stores Dynimpvers symbol attribute
    	localentry  map[Sym]uint8       // stores Localentry symbol attribute
    	extname     map[Sym]string      // stores Extname symbol attribute
    	elfType     map[Sym]elf.SymType // stores elf type symbol property
    	elfSym      map[Sym]int32       // stores elf sym symbol property
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    const mProfCycleWrap = uint32(len(memRecord{}.future)) * (2 << 24)
    
    // mProfCycleHolder holds the global heap profile cycle number (wrapped at
    // mProfCycleWrap, stored starting at bit 1), and a flag (stored at bit 0) to
    // indicate whether future[cycle] in all buckets has been queued to flush into
    // the active profile.
    type mProfCycleHolder struct {
    	value atomic.Uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    )
    
    func RunTestWatch(ctx context.Context, t *testing.T, store storage.Interface) {
    	testWatch(ctx, t, store, false)
    	testWatch(ctx, t, store, true)
    }
    
    // It tests that
    // - first occurrence of objects should notify Add event
    // - update should trigger Modified event
    // - update that gets filtered should trigger Deleted event
    func testWatch(ctx context.Context, t *testing.T, store storage.Interface, recursive bool) {
    	basePod := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func createConfigs(configs []*config.Config, store model.ConfigStore, t testing.TB) {
    	t.Helper()
    	for _, cfg := range configs {
    		_, err := store.Create(*cfg)
    		if err != nil && strings.Contains(err.Error(), "item already exists") {
    			_, err := store.Update(*cfg)
    			if err != nil {
    				t.Fatalf("error occurred updating ServiceEntry config: %v", err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    // must be stopped.
    func (c *gcControllerState) startCycle(markStartTime int64, procs int, trigger gcTrigger) {
    	c.heapScanWork.Store(0)
    	c.stackScanWork.Store(0)
    	c.globalsScanWork.Store(0)
    	c.bgScanCredit.Store(0)
    	c.assistTime.Store(0)
    	c.dedicatedMarkTime.Store(0)
    	c.fractionalMarkTime.Store(0)
    	c.idleMarkTime.Store(0)
    	c.markStartTime = markStartTime
    	c.triggered = c.heapLive.Load()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top