Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 673 for Updatef (0.55 sec)

  1. pkg/registry/apps/statefulset/strategy_test.go

    			t.Errorf("expected PersistentVolumeClaimRetentionPolicy to be updated: %v", errs)
    		}
    	})
    	t.Run("when StatefulSetAutoDeletePVC feature gate is disabled, PersistentVolumeClaimRetentionPolicy should not be updated", func(t *testing.T) {
    		featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.StatefulSetAutoDeletePVC, true)
    		// Test creation
    		ps := &apps.StatefulSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/controller/tainteviction/taint_eviction.go

    	// the number of workers up making it a parameter of Run() function.
    
    	// NodeUpdateChannelSize defines the size of channel for node update events.
    	NodeUpdateChannelSize = 10
    	// UpdateWorkerSize defines the size of workers for node update or/and pod update.
    	UpdateWorkerSize     = 8
    	podUpdateChannelSize = 1
    	retries              = 5
    )
    
    type nodeUpdateItem struct {
    	nodeName string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/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)
  10. guava/src/com/google/common/cache/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)
Back to top