Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for podstore (0.15 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    		default:
    			t.Fatalf("Unknown IPFamily: %v", fam)
    		}
    	}
    
    	portAlloc := makePortAllocator(*(machineryutilnet.ParsePortRangeOrDie("30000-32767")))
    
    	// Not all tests will specify pods and endpoints.
    	podStorage, err := podstore.NewStorage(generic.RESTOptions{
    		StorageConfig:           etcdStorage,
    		Decorator:               generic.UndecoratedStorage,
    		DeleteCollectionWorkers: 3,
    		ResourcePrefix:          "pods",
    	}, nil, nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v2.AddArg2(src, mem)
    		v1.AddArg3(dst, v2, mem)
    		v.AddArg3(dst, v0, v1)
    		return true
    	}
    	// match: (Move [24] dst src mem)
    	// result: (MOVDstore [16] dst (MOVDload [16] src mem) (MOVDstore [8] dst (MOVDload [8] src mem) (MOVDstore dst (MOVDload src mem) mem)))
    	for {
    		if auxIntToInt64(v.AuxInt) != 24 {
    			break
    		}
    		dst := v_0
    		src := v_1
    		mem := v_2
    		v.reset(OpS390XMOVDstore)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    	return false
    }
    func rewriteValuePPC64_OpSelectN(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	config := b.Func.Config
    	// match: (SelectN [0] call:(CALLstatic {sym} s1:(MOVDstore _ (MOVDconst [sz]) s2:(MOVDstore _ src s3:(MOVDstore {t} _ dst mem)))))
    	// cond: sz >= 0 && isSameCall(sym, "runtime.memmove") && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, sz, config) && clobber(s1, s2, s3, call)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM.go

    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpARMMOVDstore(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MOVDstore [off1] {sym} (ADDconst [off2] ptr) val mem)
    	// result: (MOVDstore [off1+off2] {sym} ptr val mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpARMADDconst {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) rawLoad(t *types.Type, src *ssa.Value) *ssa.Value {
    	return s.newValue2(ssa.OpLoad, t, src, s.mem())
    }
    
    func (s *state) store(t *types.Type, dst, val *ssa.Value) {
    	s.vars[memVar] = s.newValue3A(ssa.OpStore, types.TypeMem, t, dst, val, s.mem())
    }
    
    func (s *state) zero(t *types.Type, dst *ssa.Value) {
    	s.instrument(t, dst, instrumentWrite)
    	store := s.newValue2I(ssa.OpZero, types.TypeMem, t.Size(), dst, 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. CHANGELOG/CHANGELOG-1.20.md

    ### Security Improvements for CSI Drivers (Alpha)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top