Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 223 for Migration (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

     * from one role to another by marking usages which are present in the current role but not present in the eventual role
     * as deprecated.
     *
     * <p>The roles here are all meant to be temporary roles used for migration only, to be removed in Gradle 9.0.</p>
     *
     * <p>This is meant to only support <strong>narrowing migrations</strong>, that restrict usage that was previously
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			expVolumeFinalizers: []string{volume.PVDeletionProtectionFinalizer},
    			expModified:         true,
    		},
    		{
    			// csi-migration is not completely enabled as the specific plugin feature is not present. This is equivalent
    			// of disabled csi-migration.
    			name:                "13-8 migration is enabled but plugin migration feature is disabled, volume has the external PV deletion protection finalizer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. pkg/volume/csimigration/plugin_manager.go

    // to CSI Migration is valid. It will return whether the migration is complete
    // by looking up the pluginUnregister flag
    func CheckMigrationFeatureFlags(f featuregate.FeatureGate, pluginMigration,
    	pluginUnregister featuregate.Feature) (migrationComplete bool, err error) {
    	// This is for in-tree plugin that get migration finished
    	if f.Enabled(pluginMigration) && f.Enabled(pluginUnregister) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tests/integration/security/reachability_test.go

    				}).BuildOrFail(t)
    			}
    
    			// Add the migration app to the full list of services.
    			allServices := apps.Ns1.All.Append(migrationApp.Services())
    
    			// Create matchers for the migration app.
    			migration := match.ServiceName(migrationApp.NamespacedName())
    			notMigration := match.Not(migration)
    
    			// Call options to be used for tests using the migration app.
    			migrationOpts := []echo.CallOptions{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. pkg/volume/csimigration/plugin_manager_test.go

    		inTreePluginUnregisterEnabled bool
    		csiMigrationResult            bool
    		csiMigrationCompleteResult    bool
    	}{
    		{
    			name:                          "gce-pd migration flag enabled and migration-complete flag disabled with CSI migration flag",
    			pluginName:                    "kubernetes.io/gce-pd",
    			pluginFeatureEnabled:          true,
    			csiMigrationEnabled:           true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. maven-compat/src/site/apt/index.apt

     Plugins should avoid these classes and be updated to use only Maven3 dependencies (and require Maven3): see
     {{{https://cwiki.apache.org/confluence/display/MAVEN/Plugin+migration+to+Maven3+dependencies} Plugin migration to Maven3 dependencies}}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 24 22:50:10 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  7. releasenotes/notes/gogo-protobuf.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: extensibility
    issue:
    - 26751
    
    upgradeNotes:
    - title: gogo/protobuf library migration
      content: |
        The `istio.io/api` and `istio.io/client-go` libraries have switched from using the [gogo/protobuf](https://github.com/gogo/protobuf)
        to using the [golang/protobuf](https://github.com/golang/protobuf) library for API types.
        
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 25 00:08:22 UTC 2022
    - 775 bytes
    - Viewed (0)
  8. cluster/images/etcd/migrate/migrate.go

    		etcdServerArgs:    etcdServerArgs,
    	}
    	client, err := NewEtcdMigrateClient(cfg)
    	if err != nil {
    		klog.Fatalf("Migration failed: %v", err)
    	}
    	defer client.Close()
    
    	migrator := &Migrator{cfg, dataDir, client}
    
    	err = migrator.MigrateIfNeeded(target)
    	if err != nil {
    		klog.Fatalf("Migration failed: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  9. internal/config/notify/legacy.go

    package notify
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/event/target"
    )
    
    // SetNotifyKafka - helper for config migration from older config.
    func SetNotifyKafka(s config.Config, name string, cfg target.KafkaArgs) error {
    	if !cfg.Enable {
    		return nil
    	}
    
    	if err := cfg.Validate(); err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. internal/config/legacy.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package config
    
    // One time migration code section
    
    // SetRegion - One time migration code needed, for migrating from older config to new for server Region.
    func SetRegion(c Config, name string) {
    	if name == "" {
    		return
    	}
    	c[RegionSubSys][Default] = KVS{
    		KV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Dec 19 20:27:06 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top