Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 191 for Collins (0.23 sec)

  1. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			fmt.Println("[upgrade/etcd] Rolling back etcd data")
    			if err := rollbackEtcdData(cfg, pathMgr); err != nil {
    				// Even copying back datastore failed, no options for recovery left, bailing out
    				return true, errors.Errorf("fatal error rolling back local etcd cluster datadir: %v, the backup of etcd database is stored here:(%s)", err, backupEtcdDir)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/migrator.go

    			current, err = m.minorVersionUpgrade(current, stepVersion)
    		case current.version.Major == 3 && target.version.Major == 3 && current.version.Minor > target.version.Minor:
    			klog.Infof("rolling etcd back from %s to %s", current, target)
    			current, err = m.rollbackEtcd3MinorVersion(current, target)
    		}
    		if err != nil {
    			return err
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/CommandLineIntegrationSpec.groovy

                Socket probe
                try {
                    probe = new Socket(InetAddress.getLocalHost(), 5005)
                    // something is listening, keep polling
                    free = false
                } catch (Exception e) {
                    // nothing listening - exit the polling loop
                } finally {
                    probe?.close()
                }
            }
            free
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 05:05:14 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta1/types.go

    	RecreateDeploymentStrategyType DeploymentStrategyType = "Recreate"
    
    	// Replace the old ReplicaSets by new one using rolling update i.e gradually scale down the old ReplicaSets and scale up the new one.
    	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
    )
    
    // Spec to control the desired behavior of rolling update.
    type RollingUpdateDeployment struct {
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. src/runtime/netpoll_solaris.go

    		// To effect edge-triggered events, we need to be sure to
    		// update our association with whatever events were not
    		// set with the event. For example if we are registered
    		// for POLLIN|POLLOUT, and we get POLLIN, besides waking
    		// the goroutine interested in POLLIN we have to not forget
    		// about the one interested in POLLOUT.
    		if clear != 0 {
    			lock(&pd.lock)
    			netpollupdate(pd, 0, uint32(clear))
    			unlock(&pd.lock)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. releasenotes/notes/gateway-api118.yaml

        to trigger a re-injection.
    
        In Istio 1.18, this has changed to create a fully rendered Deployment and no longer rely on injection.
        As a result, *Gateways will be updated, via a rolling restart, when their revision changes*.
    
        Additionally, users using this feature must update their control plane to Istio 1.16.5+ or 1.17.3+ before adopting Istio 1.18.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"paused":                  "paused indicates that the deployment is paused.",
    	"rollbackTo":              "DEPRECATED. rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      optional int32 revisionHistoryLimit = 6;
    
      // paused indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
      optional RollbackConfig rollbackTo = 8;
    
      // progressDeadlineSeconds is the maximum time in seconds for a deployment to make progress before it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/DefaultGarbageCollectionMonitor.java

    import java.util.concurrent.TimeUnit;
    
    public class DefaultGarbageCollectionMonitor implements GarbageCollectionMonitor {
        public static final String DISABLE_POLLING_SYSTEM_PROPERTY = "org.gradle.daemon.gc.polling.disabled";
    
        private static final int POLL_INTERVAL_SECONDS = 1;
        private static final int POLL_DELAY_SECONDS = 1;
        private static final int EVENT_WINDOW = 20;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      optional int32 revisionHistoryLimit = 6;
    
      // paused indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // DEPRECATED.
      // rollbackTo is the config this deployment is rolling back to. Will be cleared after rollback is done.
      // +optional
      optional RollbackConfig rollbackTo = 8;
    
      // progressDeadlineSeconds is the maximum time in seconds for a deployment to make progress before it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top