Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for updateDir (0.2 sec)

  1. pkg/controller/disruption/disruption_test.go

    		coreClient,
    		testrestmapper.TestOnlyStaticRESTMapper(scheme),
    		fakeScaleClient,
    		fakeDiscovery,
    		fakeClock,
    		stalePodDisruptionTimeout,
    	)
    	dc.getUpdater = func() updater { return ps.Set }
    	dc.podListerSynced = alwaysReady
    	dc.pdbListerSynced = alwaysReady
    	dc.rcListerSynced = alwaysReady
    	dc.rsListerSynced = alwaysReady
    	dc.dListerSynced = alwaysReady
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

            return redirect(getClass());
        }
    
        private void upgradeFrom13_0() {
            UpgradeUtil.addData(searchEngineClient, ".fess_config.scheduled_job", "label_updater",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    				_, updateErr := ctrl.storeVolumeUpdate(logger, newVol)
    				if updateErr != nil {
    					// We will get an "volume added" event soon, this is not a big error
    					logger.V(4).Info("provisionClaimOperation: cannot update internal cache", "volumeName", volume.Name, "err", updateErr)
    				}
    			}
    			break
    		}
    		// Save failed, try again after a while.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    	cases := map[string]struct {
    		updateErr    error
    		wantRequeued bool
    	}{
    		"no error": {
    			wantRequeued: false,
    		},
    		"generic error": {
    			updateErr:    fmt.Errorf("update error"),
    			wantRequeued: true,
    		},
    		"conflict error": {
    			updateErr:    apierrors.NewConflict(schema.GroupResource{}, "", nil),
    			wantRequeued: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    			beforeIP := tc.before.Spec.ClusterIP
    			updateIP := update.Spec.ClusterIP
    			if tc.expectSameClusterIPs || tc.expectReducedClusterIPs {
    				if beforeIP != updateIP {
    					t.Errorf("expected clusterIP to be patched: %q != %q", beforeIP, updateIP)
    				}
    			} else if beforeIP == updateIP {
    				t.Errorf("expected clusterIP to not be patched: %q == %q", beforeIP, updateIP)
    			}
    
    			beforeIPs := tc.before.Spec.ClusterIPs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    }
    
    type ambientTestServer struct {
    	*index
    	clusterID cluster.ID
    	network   network.ID
    	fx        *xdsfake.Updater
    	pc        clienttest.TestClient[*corev1.Pod]
    	sc        clienttest.TestClient[*corev1.Service]
    	ns        clienttest.TestWriter[*corev1.Namespace]
    	grc       clienttest.TestWriter[*k8sbeta.Gateway]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Node status updater should SetNodeStatusUpdateNeeded if it fails to update status ([#34368](https://github.com/kubernetes/kubernetes/pull/34368), [@jingxu97](https://github.com/jingxu97))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * Kubelet flag '--mounter-path' renamed to '--experimental-mounter-path' ([#35646](https://github.com/kubernetes/kubernetes/pull/35646), [@vishh](https://github.com/vishh))
    * Node status updater should SetNodeStatusUpdateNeeded if it fails to update status ([#34368](https://github.com/kubernetes/kubernetes/pull/34368), [@jingxu97](https://github.com/jingxu97))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top