Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 799 for upgrades (0.25 sec)

  1. src/cmd/go/testdata/script/mod_get_moved.txt

    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    go list -m all
    stdout 'example.com/split/subpkg v1.1.0'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    #
    # On the first iteration, it adds x.1 as a root, which upgrades z and w,
    # dropping w.1's requirement on y. w.1 was initially a root, so the upgraded
    # w.2-pre is retained as a root.
    #
    # On the second iteration, it adds y.1 as a root, which upgrades w and x,
    # dropping x.1's requirement on z. x.1 was added as a root in the previous step,
    # so the upgraded x.2-pre is retained as a root.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. build-logic/packaging/src/test/kotlin/gradlebuild/instrumentation/InstrumentationMetadataPluginTest.kt

                        }
                        file("build/classes/java/main/META-INF/upgrades").mkdirs()
                        def upgradedPropertiesFile = file("build/classes/java/main/META-INF/upgrades/upgraded-properties.json")
                        if (!upgradedPropertiesFile.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:55:53 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/policy.go

    		return nil
    	}
    
    	return errors.Errorf("Specified version to upgrade to %q is an unstable version and such upgrades weren't allowed via setting the --allow-*-upgrades flags", newK8sVersionStr)
    }
    
    // detectTooOldKubelets errors out if the kubelet versions are so old that an unsupported skew would happen if the cluster was upgraded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/instrumentation-declarations/src/main/java/org/gradle/internal/instrumentation/property/upgrades/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Contains registry for classes with property upgrades.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:55:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/plan.go

    		if strings.HasPrefix(newK8sVersion.PreRelease(), "rc") {
    			unstableVersionFlag = " --allow-release-candidate-upgrades"
    		} else {
    			unstableVersionFlag = " --allow-experimental-upgrades"
    		}
    	}
    
    	_, _ = printer.Fprintln(writer, "Components that must be upgraded manually after you have upgraded the control plane with 'kubeadm upgrade apply':")
    	tabw := tabwriter.NewWriter(writer, 10, 4, 3, ' ', 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. operator/cmd/mesh/upgrade.go

    type upgradeArgs struct {
    	*InstallArgs
    }
    
    // UpgradeCmd upgrades Istio control plane in-place with eligibility checks.
    func UpgradeCmd(ctx cli.Context) *cobra.Command {
    	rootArgs := &RootArgs{}
    	upgradeArgs := &upgradeArgs{
    		InstallArgs: &InstallArgs{},
    	}
    	cmd := &cobra.Command{
    		Use:   "upgrade",
    		Short: "Upgrade Istio control plane in-place",
    		Long:  "The upgrade command is an alias for the install command",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/options/constant.go

    	ForceReset = "force"
    
    	// CertificateRenewal flag instructs kubeadm to execute certificate renewal during upgrades
    	CertificateRenewal = "certificate-renewal"
    
    	// EtcdUpgrade flag instructs kubeadm to execute etcd upgrade during upgrades
    	EtcdUpgrade = "etcd-upgrade"
    
    	// Patches flag sets the folder where kubeadm component patches are stored
    	Patches = "patches"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/policy_test.go

    	}{
    		{
    			name: "minor upgrade",
    			vg: &fakeVersionGetter{
    				clusterVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeletVersion: minimumControlPlaneVersion.WithPatch(3).String(),
    				kubeadmVersion: minimumControlPlaneVersion.WithPatch(5).String(),
    			},
    			newK8sVersion: minimumControlPlaneVersion.WithPatch(5).String(),
    		},
    		{
    			name: "major upgrade",
    			vg: &fakeVersionGetter{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_downup_artifact.txt

    # This test illustrates a case where an upgrade–downgrade–upgrade cycle can
    # result in upgrades of otherwise-irrelevant dependencies.
    #
    # This case has no corresponding test in the mvs package, because it is an
    # artifact that results from the composition of *multiple* MVS operations.
    
    # The initial package import graph used in the test looks like:
    #
    # m ---- a
    # |      |
    # +----- b
    # |      |
    # +----- c
    # |
    # +----- d
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top