Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,272 for updateSV (0.12 sec)

  1. pkg/registry/core/replicationcontroller/storage/storage_test.go

    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		// continuously submits a patch that updates a label and verifies the label update was effective
    		labelName := "timestamp"
    		for i := 0; ; i++ {
    			select {
    			case <-stopCh:
    				return
    			default:
    				expectedLabelValue := fmt.Sprint(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    		apiVersion string
    		validation bool
    	}{
    		"policy/v1beta1 should not do update validation": {
    			apiVersion: "v1beta1",
    			validation: false,
    		},
    		"policy/v1 should do update validation": {
    			apiVersion: "v1",
    			validation: true,
    		},
    		"policy/some-version should do update validation": {
    			apiVersion: "some-version",
    			validation: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. hack/update-mocks.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script generates mock files using mockgen.
    # Usage: `hack/update-mocks.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    echo 'installing mockgen'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. hack/update-yamlfmt.sh

    Tim Hockin <******@****.***> 1705102026 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. pkg/controller/util/node/controller_utils.go

    	}
    	return updatedPod, nil
    }
    
    // MarkPodsNotReady updates ready status of given pods running on
    // given node from master return true if success
    func MarkPodsNotReady(ctx context.Context, kubeClient clientset.Interface, recorder record.EventRecorder, pods []*v1.Pod, nodeName string) error {
    	logger := klog.FromContext(ctx)
    	logger.V(2).Info("Update ready status of pods on node", "node", klog.KRef("", nodeName))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/hack/update-codegen.sh

    Tim Hockin <******@****.***> 1703807906 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_status_updater_test.go

    	fakeClient := &fake.Clientset{}
    	updater := NewRealStatefulSetStatusUpdater(fakeClient, nil)
    	fakeClient.AddReactor("update", "statefulsets", func(action core.Action) (bool, runtime.Object, error) {
    		update := action.(core.UpdateAction)
    		return true, update.GetObject(), nil
    	})
    	if err := updater.UpdateStatefulSetStatus(context.TODO(), set, &status); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 15:37:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    }
    
    // totalsByAction includes total numbers for added and removed.
    type totalsByAction struct {
    	added, updated, removed int
    }
    
    // add adds totals from another totalsByAction struct.
    func (t *totalsByAction) add(totals totalsByAction) {
    	t.added += totals.added
    	t.updated += totals.updated
    	t.removed += totals.removed
    }
    
    // newDesiredCalc initializes and returns a new desiredCalc.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/alias/fess.update.json

    Shinsuke Sugaya <******@****.***> 1472095477 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 25 03:25:32 UTC 2016
    - 2 bytes
    - Viewed (0)
  10. update-credits.sh

    Harshavardhana <******@****.***> 1691730518 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Aug 11 05:08:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top