Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ptrstore (0.13 sec)

  1. pkg/controller/disruption/disruption_test.go

    	}
    	add(t, dc.pdbStore, pdb)
    
    	pod1, _ := newPod(t, "p1")
    	pod1.DeletionTimestamp = &metav1.Time{Time: dc.clock.Now()}
    	pod2, _ := newPod(t, "p2")
    	pod3, _ := newPod(t, "p3")
    
    	add(t, dc.podStore, pod1)
    	add(t, dc.podStore, pod2)
    	add(t, dc.podStore, pod3)
    
    	dc.sync(ctx, pdbName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    		addPods(manager.podStore, "node-0", simpleDaemonSetLabel, ds, 1)
    		addPods(manager.podStore, "node-1", simpleDaemonSetLabel, ds, 3)
    		addPods(manager.podStore, "node-1", simpleDaemonSetLabel2, ds, 2)
    		addPods(manager.podStore, "node-2", simpleDaemonSetLabel, ds, 4)
    		addPods(manager.podStore, "node-6", simpleDaemonSetLabel, ds, 13)
    		addPods(manager.podStore, "node-7", simpleDaemonSetLabel2, ds, 4)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    	ns := metav1.NamespaceDefault
    
    	pod1 := newPod(1, ns, true, 0, false)
    	esController.podStore.Add(pod1)
    
    	// ensure this pod will not match the selector
    	pod2 := newPod(2, ns, true, 0, false)
    	pod2.Labels["foo"] = "boo"
    	esController.podStore.Add(pod2)
    
    	standardSyncService(t, esController, ns, "testing-1")
    	expectActions(t, client.Actions(), 1, "create", "endpointslices")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. pkg/registry/core/serviceaccount/storage/storage_test.go

    		StorageConfig:           etcdStorage,
    		Decorator:               generic.UndecoratedStorage,
    		DeleteCollectionWorkers: 1,
    		ResourcePrefix:          "serviceaccounts",
    	}
    	// set issuer, podStore and secretStore to allow the token endpoint to be initialised
    	rest, err := NewREST(restOptions, fakeTokenGenerator{"fake"}, nil, 0, panicGetter{}, panicGetter{}, nil, false)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	finalizerExpectations *uidTrackingExpectations
    
    	// A store of jobs
    	jobLister batchv1listers.JobLister
    
    	// A store of pods, populated by the podController
    	podStore corelisters.PodLister
    
    	// Jobs that need to be updated
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Orphan deleted pods that still have a Job tracking finalizer to be removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. pkg/controller/controller_utils_test.go

    	fakeClock := testingclock.NewFakeClock(fakeTime)
    	ttlPolicy := &cache.TTLPolicy{TTL: ttl, Clock: fakeClock}
    	ttlStore := cache.NewFakeExpirationStore(
    		ExpKeyFunc, nil, ttlPolicy, fakeClock)
    	return &ControllerExpectations{ttlStore}, fakeClock
    }
    
    func newReplicationController(replicas int) *v1.ReplicationController {
    	rc := &v1.ReplicationController{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    		t.Run(tt.Name, func(t *testing.T) {
    			ptrstr := fmt.Sprintf("%v", tt.ptr)
    			err := Unmarshal([]byte(tt.in), tt.ptr) // tt.ptr edited here
    			if err != nil {
    				t.Errorf("%s: Unmarshal error: %v", tt.Where, err)
    			}
    			if !reflect.DeepEqual(tt.ptr, tt.out) {
    				t.Errorf("%s: Unmarshal(%#q, %T):\n\tgot:  %v\n\twant: %v", tt.Where, tt.in, ptrstr, tt.ptr, tt.out)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (BRD x:(MOVDloadidx ptr idx      mem)) && x.Uses == 1 => @x.Block (MOVDBRloadidx ptr idx mem)
    
    // Fold bit reversal into stores.
    (MOV(D|W|H)store [off] {sym} ptr r:(BR(D|W|H) val) mem) && r.Uses == 1 => (MOV(D|W|H)BRstore (MOVDaddr <ptr.Type> [off] {sym} ptr) val mem)
    (MOV(D|W|H)storeidx ptr idx      r:(BR(D|W|H) val) mem) && r.Uses == 1 => (MOV(D|W|H)BRstoreidx ptr idx val mem)
    
    // GOPPC64<10 rules.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    	case AFMOVD:
    		return AOP_PFX_10_MLS(r, 0), AOP_IRR(50<<26, uint32(reg), uint32(base), 0)
    	}
    	log.Fatalf("Error no pfxload for %v\n", a)
    	return 0, 0
    }
    
    func pfxstore(a obj.As, reg int16, base int16, r uint32) (uint32, uint32) {
    	switch a {
    	case AMOVD:
    		return AOP_PFX_00_8LS(r, 0), AOP_IRR(61<<26, uint32(reg), uint32(base), 0)
    	case AMOVBZ, AMOVB:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    	pod, err = clientset.CoreV1().Pods(pod.GetNamespace()).Create(ctx, pod, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Creating pod: %v", err)
    	}
    
    	// Await for the Pod to appear in the podStore to ensure that the pod exists when cleaning up the Job.
    	// In a production environment, there wouldn't be these guarantees, but the Pod would be cleaned up
    	// by the orphan pod worker, when the Pod finishes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top