Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for podstore (0.19 sec)

  1. pkg/controller/controller_utils.go

    	// ControllerExpectationsInterface.
    	uidStore cache.Store
    }
    
    // GetUIDs is a convenience method to avoid exposing the set of expected uids.
    // The returned set is not thread safe, all modifications must be made holding
    // the uidStoreLock.
    func (u *UIDTrackingControllerExpectations) GetUIDs(controllerKey string) sets.String {
    	if uid, exists, err := u.uidStore.GetByKey(controllerKey); err == nil && exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun cacheControl() {
        val cacheControl: CacheControl = CacheControl.Builder().build()
        val noCache: Boolean = cacheControl.noCache
        val noStore: Boolean = cacheControl.noStore
        val maxAgeSeconds: Int = cacheControl.maxAgeSeconds
        val sMaxAgeSeconds: Int = cacheControl.sMaxAgeSeconds
        val mustRevalidate: Boolean = cacheControl.mustRevalidate
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    		ctnScopeManager.scope.(*containerScope).hintProviders = tc.hp
    
    		podScopeManager := manager{}
    		podScopeManager.scope = NewPodScope(tc.policy)
    		podScopeManager.scope.(*podScope).hintProviders = tc.hp
    
    		pod := &v1.Pod{
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Resources: v1.ResourceRequirements{},
    					},
    				},
    			},
    			Status: v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/storage/storage_test.go

    	storage, _, statusStorage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	ctx := genericapirequest.NewDefaultContext()
    
    	key, _ := storage.KeyFunc(ctx, "foo")
    	podStart := api.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: api.PodSpec{
    			NodeName: "machine",
    			Containers: []api.Container{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (MOVFstore [off1] {sym} (SUBconst [off2] ptr) val mem) => (MOVFstore [off1-off2] {sym} ptr val mem)
    (MOVDstore [off1] {sym} (ADDconst [off2] ptr) val mem) => (MOVDstore [off1+off2] {sym} ptr val mem)
    (MOVDstore [off1] {sym} (SUBconst [off2] ptr) val mem) => (MOVDstore [off1-off2] {sym} ptr val mem)
    
    (MOVBload [off1] {sym1} (MOVWaddr [off2] {sym2} ptr) mem) && canMergeSym(sym1,sym2) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/expand_calls.go

    			switch v.Op {
    			case OpInitMem:
    				m0 = v
    
    			case OpClosureLECall, OpInterLECall, OpStaticLECall, OpTailLECall:
    				calls = append(calls, v)
    
    			case OpArg:
    				args = append(args, v)
    
    			case OpStore:
    				if a := v.Args[1]; a.Op == OpSelectN && !CanSSA(a.Type) {
    					if a.Uses > 1 {
    						panic(fmt.Errorf("Saw double use of wide SelectN %s operand of Store %s",
    							a.LongString(), v.LongString()))
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM64.go

    	return false
    }
    func rewriteValueARM64_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: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck_test.go

    		Bloc("secondCheck",
    			Valu("bool2", OpIsNonNil, c.config.Types.Bool, 0, nil, "ptr1"),
    			If("bool2", "extra", "exit")),
    		Bloc("extra",
    			// prevent fuse from eliminating this block
    			Valu("store", OpStore, types.TypeMem, 0, ptrType, "ptr1", "nilptr", "mem"),
    			Goto("exit")),
    		Bloc("exit",
    			Valu("phi", OpPhi, types.TypeMem, 0, nil, "mem", "store"),
    			Exit("phi")))
    
    	CheckFunc(fun.f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/check.go

    						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() {
    					f.Fatalf("bad %s type: want mem, have %s",
    						v.Op, v.Type.String())
    				}
    				if !v.Args[2].Type.IsMemory() {
    					f.Fatalf("bad arg 2 type to %s: want mem, have %s",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. 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)
Back to top