Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for updateIPs (0.16 sec)

  1. pkg/apis/certificates/validation/validation_test.go

    		}},
    		oldCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMetaWithFinalizers, Spec: validSpec},
    		errs: []string{
    			`status.conditions: Forbidden: updates may not add a condition of type "Approved"`,
    		},
    	}, {
    		name:   "remove Approved condition",
    		newCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMeta, Spec: validSpec},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        "tf.ResourceScatterAdd"(%resource, %indices, %updates) : (tensor<*x!tf_type.resource<tensor<*xi32>>>, tensor<?xi32>, tensor<?x?x?xi32>) -> ()
    
        tf_device.return
      }) : () -> ()
      func.return
    }
    
    // Test that tf.ResourceScatterAdd operation is decomposed to
    // tf.TensorScatterAdd. Updates is scalar.
    // CHECK-LABEL: @decompose_ResourceScatterAdd_op_with_scalar_updates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    		batchPeriod      time.Duration
    		podsCount        int
    		updates          []podUpdate
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three updates with no batching",
    			batchPeriod: 0 * time.Second,
    			podsCount:   10,
    			updates: []podUpdate{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay:   200 * time.Millisecond,
    					podName: "pod0",
    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/controller/endpoint/endpoints_controller_test.go

    		batchPeriod      time.Duration
    		podsCount        int
    		updates          []podUpdate
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three updates with no batching",
    			batchPeriod: 0 * time.Second,
    			podsCount:   10,
    			updates: []podUpdate{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay:   200 * time.Millisecond,
    					podName: "pod0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2_test.go

    	jm.enqueueController(cjCopy)
    	jm.processNextWorkItem(ctx)
    
    	if len(cronJobControl.Updates) != 1 {
    		t.Fatalf("Unexpected updates to cronjob, got: %d, expected 1", len(cronJobControl.Updates))
    	}
    	if len(cronJobControl.Updates[0].Status.Active) != 1 {
    		t.Errorf("Unexpected active jobs count, got: %d, expected 1", len(cronJobControl.Updates[0].Status.Active))
    	}
    
    	expectedActiveRef, err := getRef(job)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    	if len(processed) != 1 {
    		t.Fatalf("Not all pods processed: %v", processed)
    	}
    	updates := processed["1"]
    	if len(updates) != 1 {
    		t.Fatalf("unexpected updates: %v", updates)
    	}
    	if updates[0].runningPod == nil || updates[0].updateType != kubetypes.SyncPodKill || updates[0].name != "1" {
    		t.Fatalf("unexpected update: %v", updates)
    	}
    }
    
    func TestUpdatePodForTerminatedRuntimePod(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    	return mp.UpdatedAt, nil
    }
    
    // PolicyNotificationHandler - loads given policy from storage. If not present,
    // deletes from cache. This notification only reads from storage, and updates
    // cache. When the notification is for a policy deletion, it updates the
    // user-policy and group-policy maps as well.
    func (store *IAMStoreSys) PolicyNotificationHandler(ctx context.Context, policy string) error {
    	if policy == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context_test.go

    					}
    					creates[ConfigKey{Name: cfg.Name, Namespace: cfg.Namespace, Kind: kind.EnvoyFilter}] = cfg
    				}
    				updates := map[ConfigKey]config.Config{}
    				for _, cfg := range tt.updates {
    					if _, err := store.Update(cfg); err != nil {
    						t.Errorf("Error updating config %s/%s", cfg.Namespace, cfg.Name)
    					}
    					updates[ConfigKey{Name: cfg.Name, Namespace: cfg.Namespace, Kind: kind.EnvoyFilter}] = cfg
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    func update(t *testing.T, objects []metav1.Object, updates change) []metav1.Object {
    	var updated []metav1.Object
    
    	for _, obj := range objects {
    		switch in := obj.(type) {
    		case *resourcev1alpha2.ResourceClaim:
    			if updates.claim != nil {
    				obj = updates.claim(in)
    			}
    		case *resourcev1alpha2.PodSchedulingContext:
    			if updates.scheduling != nil {
    				obj = updates.scheduling(in)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	// which means that all working pods have been started via UpdatePod().
    	podsSynced bool
    
    	// Tracks all running per-pod goroutines - per-pod goroutine will be
    	// processing updates received through its corresponding channel. Sending
    	// a message on this channel will signal the corresponding goroutine to
    	// consume podSyncStatuses[uid].pendingUpdate if set.
    	podUpdates map[types.UID]chan struct{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top