Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for downgrades (0.26 sec)

  1. cluster/images/etcd/migrate/migrator.go

    type Migrator struct {
    	cfg           *EtcdMigrateCfg // TODO: don't wire this directly in
    	dataDirectory *DataDirectory
    	client        EtcdMigrateClient
    }
    
    // MigrateIfNeeded upgrades or downgrades the etcd data directory to the given target version.
    func (m *Migrator) MigrateIfNeeded(target *EtcdVersionPair) error {
    	klog.Infof("Starting migration to %s", target)
    	err := m.dataDirectory.Initialize(target)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/edit.go

    				// If this conflict was just one step in a longer chain of downgrades,
    				// then we would want to keep going past it until we find a version
    				// that doesn't have that problem. However, we only want to downgrade
    				// away from an *existing* requirement if we can confirm that it actually
    				// conflicts with mustSelect. (For example, we don't want
    				// 'go get -u ./...' to incidentally downgrade some dependency whose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/policy.go

    		}
    	}
    
    	// kubeadm doesn't support downgrades between two minor versions; e.g. a v1.9 -> v1.7 downgrade is not supported right away
    	if newK8sVersion.Minor() < clusterVersion.Minor()-MaximumAllowedMinorVersionDowngradeSkew {
    		tooLargeDowngradeSkewErr := errors.Errorf("Specified version to downgrade to %q is too low; kubeadm can downgrade only %d minor version at a time", newK8sVersionStr, MaximumAllowedMinorVersionDowngradeSkew)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. docs/debugging/inspect/export.go

    	// Current version being written.
    	xlVersionCurrent [4]byte
    )
    
    const (
    	// Breaking changes.
    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    	// if any change is made to the data stored, bumping this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 08 15:58:02 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

            "ReadWriteC -> ReadWriteA",
            "ReadWriteB -> ReadWriteC",
            "ReadWriteA -> ReadWriteB");
      }
    
      public void testWriteToReadLockDowngrading() {
        writeLockA.lock(); // writeLockA downgrades to readLockA
        readLockA.lock();
        writeLockA.unlock();
    
        lockB.lock(); // readLockA -> lockB
        readLockA.unlock();
    
        // lockB -> writeLockA should fail
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

            "ReadWriteC -> ReadWriteA",
            "ReadWriteB -> ReadWriteC",
            "ReadWriteA -> ReadWriteB");
      }
    
      public void testWriteToReadLockDowngrading() {
        writeLockA.lock(); // writeLockA downgrades to readLockA
        readLockA.lock();
        writeLockA.unlock();
    
        lockB.lock(); // readLockA -> lockB
        readLockA.unlock();
    
        // lockB -> writeLockA should fail
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. src/go/types/check.go

    				//
    				// Go 1.21 also introduced the feature of allowing //go:build lines
    				// to “downgrade” (cmp < 0) the Go version in a given file.
    				// That can't be done compatibly in general, since before the
    				// build lines were ignored and code got the module's Go version.
    				// To work around this, downgrades are only allowed when the
    				// module's Go version is Go 1.21 or later.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check.go

    				//
    				// Go 1.21 also introduced the feature of allowing //go:build lines
    				// to “downgrade” (cmp < 0) the Go version in a given file.
    				// That can't be done compatibly in general, since before the
    				// build lines were ignored and code got the module's Go version.
    				// To work around this, downgrades are only allowed when the
    				// module's Go version is Go 1.21 or later.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. docs/debugging/xl-meta/main.go

    	// Current version being written.
    	xlVersionCurrent [4]byte
    )
    
    const (
    	// Breaking changes.
    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    	// if any change is made to the data stored, bumping this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    				v := module.Version{Path: q.pattern}
    				// The user has explicitly requested to downgrade their own module to
    				// version "none". This is not an entirely unreasonable request: it
    				// could plausibly mean “downgrade away everything that depends on any
    				// explicit version of the main module”, or “downgrade away the
    				// package with the same path as the main module, found in a module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top