Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    			ic.deleteService(mcsService)
    			return nil
    		}
    
    		// The service already existed. Treat it as an update.
    		event = model.EventUpdate
    		mcsService = mcsService.DeepCopy()
    		if ic.updateIPs(mcsService, ips) {
    			needsFullPush = true
    		}
    	}
    
    	// Always force a rebuild of the endpoint cache in case this import caused
    	// a change to the discoverability policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set.go

    	if manageReplicasErr == nil && updatedRS.Spec.MinReadySeconds > 0 &&
    		updatedRS.Status.ReadyReplicas == *(updatedRS.Spec.Replicas) &&
    		updatedRS.Status.AvailableReplicas != *(updatedRS.Spec.Replicas) {
    		rsc.queue.AddAfter(key, time.Duration(updatedRS.Spec.MinReadySeconds)*time.Second)
    	}
    	return manageReplicasErr
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    namespace mlir {
    namespace odml {
    
    // Convert updates into canonical form as expected by tf.scatter ops.
    //
    // tf.scatter expects `update_window_dims` to be the trailing dimensions.
    //
    // To support scatter ops generated by numpy-like slice updates:
    //   nd_array[:, [i,j]] = [i_values, j_values]
    //
    // `updates` must be transposed when the update_window_dims are the leading
    // dimensions of `updates`.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config.go

    			s.updates <- *reconciles
    		}
    
    	case PodConfigNotificationSnapshotAndUpdates:
    		if len(removes.Pods) > 0 || len(adds.Pods) > 0 || firstSet {
    			s.updates <- kubetypes.PodUpdate{Pods: s.mergedState().([]*v1.Pod), Op: kubetypes.SET, Source: source}
    		}
    		if len(updates.Pods) > 0 {
    			s.updates <- *updates
    		}
    		if len(deletes.Pods) > 0 {
    			s.updates <- *deletes
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/kubernetesservice/controller_test.go

    			}
    			updates := []core.UpdateAction{}
    			for _, action := range fakeClient.Actions() {
    				if action.GetVerb() == "update" {
    					updates = append(updates, action.(core.UpdateAction))
    				}
    			}
    			if test.expectUpdate != nil {
    				if len(updates) != 1 {
    					t.Errorf("case %q: unexpected updates: %v", test.testName, updates)
    				} else {
    					obj := updates[0].GetObject()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 10:41:06 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

           $indices, $updates)>;
    
    
    def LowerScatterNdOpIgnoreBadIndices :
      Pat<(TF_ScatterNdOp $indices,
           TensorOf<[AnyInteger, AnyFloat, AnyComplex]>:$updates, $shape, ConstantStrAttr<StrAttr, "IGNORE">),
          (TF_TensorScatterAddOp
           (TF_FillOp $shape, (TF_ConstOp (GetScalarOfType<0> $updates))),
           $indices, $updates)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/types.go

    type Int32 struct {
    	noCopy noCopy
    	value  int32
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (i *Int32) Load() int32 {
    	return Loadint32(&i.value)
    }
    
    // Store updates the value atomically.
    //
    //go:nosplit
    func (i *Int32) Store(value int32) {
    	Storeint32(&i.value, value)
    }
    
    // CompareAndSwap atomically compares i's value with old,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/events_test.go

    				ReportingInstance:   "node-xyz",
    				Action:              "Do",
    				Reason:              "Yeees",
    				Type:                "Normal",
    			},
    			valid: false,
    			msg:   "forbidden updates to involvedObject",
    		},
    		{
    			newEvent: &core.Event{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test",
    					Namespace:       metav1.NamespaceSystem,
    					ResourceVersion: "1",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 01 19:47:37 UTC 2022
    - 37.2K bytes
    - Viewed (0)
  9. pkg/adsc/adsc.go

    		}
    	}
    }
    
    // Wait for an updates for all the specified types
    // If updates is empty, this will wait for any update
    func (a *ADSC) Wait(to time.Duration, updates ...string) ([]string, error) {
    	t := time.NewTimer(to)
    	want := sets.New[string](updates...)
    	got := make([]string, 0, len(updates))
    	for {
    		select {
    		case toDelete := <-a.Updates:
    			if toDelete == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/array_grad_test.cc

    }
    
    TEST_F(ArrayGradTest, ScatterNdGrad_SimpleIndexing) {
      TensorShape updates_shape({4});
      auto updates =
          Placeholder(scope_, DT_FLOAT, Placeholder::Shape(updates_shape));
      auto indices = Const(scope_, {{4}, {3}, {1}, {7}});
      TensorShape y_shape({8});
      auto y = ScatterNd(scope_, indices, updates, {8});
      RunTest(updates, updates_shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, ScatterNdGrad_SliceIndexing) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top