Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 799 for upgrades (0.11 sec)

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

    // kinds of upgrades can be performed
    func GetAvailableUpgrades(versionGetterImpl VersionGetter, experimentalUpgradesAllowed, rcUpgradesAllowed bool, client clientset.Interface, printer output.Printer) ([]Upgrade, error) {
    	printer.Printf("[upgrade] Fetching available versions to upgrade to\n")
    
    	// Collect the upgrades kubeadm can do in this list
    	var upgrades []Upgrade
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java

     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility.rules;
    
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.BinaryCompatibility;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.ReplacedAccessor;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.AccessorKey;
    import me.champeau.gradle.japicmp.report.PostProcessViolationsRule;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_issue47979.txt

    #
    # An argument to 'go get' that results in an upgrade to a different existing
    # root should be allowed, and should not panic the 'go' command.
    
    cp go.mod go.mod.orig
    
    
    # Transitive upgrades from upgraded roots should not prevent
    # 'go get -u' from performing upgrades.
    
    cp go.mod.orig go.mod
    go get -u .
    cmp go.mod go.mod.want
    
    
    # 'go get' of a specific version should allow upgrades of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRuleSetup.java

     */
    
    package gradlebuild.binarycompatibility.rules;
    
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperties;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.ReplacedAccessor;
    import gradlebuild.binarycompatibility.upgrades.UpgradedProperty.AccessorKey;
    import me.champeau.gradle.japicmp.report.SetupRule;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

      echo "!!! EXPERIMENTAL !!!"
      echo "!!! This upgrade script is not meant to be run in production !!!"
      echo ""
      echo "${0} [-M | -N | -P] [-o] (-l | <version number or publication>)"
      echo "  Upgrades master and nodes by default"
      echo "  -M:  Upgrade master only"
      echo "  -N:  Upgrade nodes only"
      echo "  -P:  Node upgrade prerequisites only (create a new instance template)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/upgrade.go

    	fs.BoolVar(&flags.allowExperimentalUpgrades, "allow-experimental-upgrades", flags.allowExperimentalUpgrades, "Show unstable versions of Kubernetes as an upgrade alternative and allow upgrading to an alpha/beta/release candidate versions of Kubernetes.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:18:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. releasenotes/notes/revision-tag-command.yaml

        directly at a revision and selectively decide the granularity of their namespace labels. This makes it possible
        to perform upgrades with the ease of in-place upgrades while having the safety revision-based upgrades
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 16 06:17:37 UTC 2021
    - 532 bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

        /**
         * Automatically accept changes that are valid property upgrades of a getter or setter.
         *
         * Here we automatically accept the following cases:
         * - A setter `setX` of an upgraded property is removed
         * - A boolean `isX` of an upgraded property is removed
         * - A new getter `getX` is added, where the old getter is a boolean getter `isX` of an upgraded property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    2. We will use `bytecode upgrades` when we talk about Property or API upgrades.
    3. We will use `bytecode interception` when we talk about both bytecode instrumentation or bytecode upgrades.
    4. We will use `transformation` when we talk about applying some interception to to jars or classes or classpath.
    
    It is possible that in the code we use all these terms interchangeably, but we will try to be consistent in this document.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    	var tests = []struct {
    		name          string
    		upgrades      []upgrade.Upgrade
    		versionStates []outputapiv1alpha3.ComponentConfigVersionState
    		buf           *bytes.Buffer
    		expectedBytes []byte
    		externalEtcd  bool
    	}{
    		{
    			name: "Patch version available",
    			upgrades: []upgrade.Upgrade{
    				{
    					Description: "version in the v1.18 series",
    					Before: upgrade.ClusterState{
    						KubeVersion: "v1.18.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top