Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for Rolling (0.21 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    ### kubectl rolling-update: < v1.4.0 client vs >=v1.4.0 cluster
    
    Old version kubectl's rolling-update command is compatible with Kubernetes 1.4 and higher only if you specify a new replication controller name. You will need to update to kubectl 1.4 or higher to use the rolling update command against a 1.4 cluster if you want to keep the original name, or you'll have to do two rolling updates.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "rollingUpdate": {
              "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment",
              "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
            },
            "type": {
              "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	}
    	return ok
    }
    
    func (rs *Rows) nextLocked() (doClose, ok bool) {
    	if rs.closed {
    		return false, false
    	}
    
    	// Lock the driver connection before calling the driver interface
    	// rowsi to prevent a Tx from rolling back the connection at the same time.
    	rs.dc.Lock()
    	defer rs.dc.Unlock()
    
    	if rs.lastcols == nil {
    		rs.lastcols = make([]driver.Value, len(rs.rowsi.Columns()))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    		t.Errorf("opens = %d; want >= 9", opens)
    	}
    	if closes < 9 {
    		t.Errorf("closes = %d; want >= 9", closes)
    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    // context cancel while simultaneously calling Tx.Rollback. Rolling back from a
    // context happens concurrently so tx.rollback and tx.Commit must guard against
    // double entry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

      - [stable] `kubectl apply` is now able to delete resources you no longer need with `--prune` ([kubernetes/features#128](https://github.com/kubernetes/enhancements/issues/128))
      - [beta] Deployments that cannot make progress in rolling out the newest version will now indicate via the API they are blocked ([docs](http://kubernetes.io/docs/user-guide/deployments/#failed-deployment)) ([kubernetes/features#122](https://github.com/kubernetes/enhancements/issues/122))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    			tweakReplicas(3),
    			tweakUpdateStrategyType(""),
    		),
    		errs: field.ErrorList{
    			field.Required(field.NewPath("spec", "updateStrategy"), ""),
    		},
    	}, {
    		name: "invalid rolling update",
    		set: mkStatefulSet(&validPodTemplate,
    			tweakReplicas(3),
    			tweakUpdateStrategyType(apps.OnDeleteStatefulSetStrategyType),
    			tweakRollingUpdatePartition(1),
    		),
    		errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

    #
    # Args:
    # $1 master env (kube-env of master; result of calling get-master-env)
    # $2 env key to use
    function get-env-val() {
      local match
      match=$( (echo "${1}" | grep -E "^${2}:") || echo '')
      if [[ -z "${match}" ]]; then
        echo ""
      fi
      echo "${match}" | cut -d : -f 2 | cut -d \' -f 2
    }
    
    # Load the master env by calling get-master-env, and extract important values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        this.future = task;
      }
    
      /**
       * Returns a future that finishes when this step does. Calling {@code get()} on the returned
       * future returns {@code null} if the step is successful or throws the same exception that would
       * be thrown by calling {@code finishToFuture().get()} if this were the last step. Calling {@code
       * cancel()} on the returned future has no effect on the {@code ClosingFuture} pipeline.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ClosingFuture.java

        this.future = task;
      }
    
      /**
       * Returns a future that finishes when this step does. Calling {@code get()} on the returned
       * future returns {@code null} if the step is successful or throws the same exception that would
       * be thrown by calling {@code finishToFuture().get()} if this were the last step. Calling {@code
       * cancel()} on the returned future has no effect on the {@code ClosingFuture} pipeline.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	gp.lockedm.set(gp.m)
    }
    
    // LockOSThread wires the calling goroutine to its current operating system thread.
    // The calling goroutine will always execute in that thread,
    // and no other goroutine will execute in it,
    // until the calling goroutine has made as many calls to
    // [UnlockOSThread] as to LockOSThread.
    // If the calling goroutine exits without unlocking the thread,
    // the thread will be terminated.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top