Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,261 for Updatef (0.28 sec)

  1. pkg/proxy/config/config_test.go

    	state   map[types.NamespacedName]*v1.Service
    	synced  bool
    	updated chan []*v1.Service
    	process func([]*v1.Service)
    }
    
    func NewServiceHandlerMock() *ServiceHandlerMock {
    	shm := &ServiceHandlerMock{
    		state:   make(map[types.NamespacedName]*v1.Service),
    		updated: make(chan []*v1.Service, 5),
    	}
    	shm.process = func(services []*v1.Service) {
    		shm.updated <- services
    	}
    	return shm
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/workload_test.go

    		// Add service: we should not get any new resources, but updates to existing ones
    		// Note: we are not subscribed to svc1 explicitly, but it impacts pods we are subscribed to
    		createService(s, "svc1", "default", map[string]string{"app": "sa"})
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod2")
    		// Creating a pod in the service should send an update as usual
    		createPod(s, "pod", "sa", "127.0.0.1", "node")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

      // Note: We can't modify the graph while navigating through it, as erasing
      // invalidate pointers.
      // So instead we capture all the updates in the below map, and then
      // process them after.
    
      // Container to hold all update actions on ops.
      // Key: Operation to update.
      // Value: optional list of argument indices to delete from this op.
      // Note that we use MapVector because we want to iterate on the same order
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. hack/update-gofmt.sh

    Tim Hockin <******@****.***> 1704583211 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

        /**
         * Invalidate the given locations as they are about to be updated.
         */
        void invalidate(Iterable<String> locations);
    
        /**
         * Runs an action which potentially writes to the given locations.
         */
        void write(Iterable<String> locations, IoRunnable action) throws IOException;
    
        /**
         * Updates the cached state at the location with the snapshot.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Striped64.java

      /**
       * Computes the function of current and new value. Subclasses should open-code this update
       * function for most uses, but the virtualized form is needed within retryUpdate.
       *
       * @param currentValue the current value (of either base or a cell)
       * @param newValue the argument from a user update call
       * @return result of the update function
       */
      abstract long fn(long currentValue, long newValue);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1/generated.proto

      // for updates. During a rolling update, all pods from ordinal Replicas-1 to
      // Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
      // This is helpful in being able to do a canary based deployment. The default value is 0.
      // +optional
      optional int32 partition = 1;
    
      // The maximum number of pods that can be unavailable during the update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/generated.proto

      // for updates. During a rolling update, all pods from ordinal Replicas-1 to
      // Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
      // This is helpful in being able to do a canary based deployment. The default value is 0.
      // +optional
      optional int32 partition = 1;
    
      // The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// if not full push needed, at least one service unchanged
    	if !fullPush {
    		s.edsUpdate(serviceInstances)
    		return
    	}
    
    	// When doing a full push, the non DNS added, updated, unchanged services trigger an eds update
    	// so that endpoint shards are updated.
    	allServices := make([]*model.Service, 0, len(addedSvcs)+len(updatedSvcs)+len(unchangedSvcs))
    	allServices = append(allServices, addedSvcs...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // for updates. During a rolling update, all pods from ordinal Replicas-1 to
      // Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
      // This is helpful in being able to do a canary based deployment. The default value is 0.
      optional int32 partition = 1;
    
      // maxUnavailable is the maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top