Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 199 for Migration (0.53 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    This may make migrating between the two seem intimidating, but migrations can be surprisingly easy because Gradle follows many of the same conventions as Maven -- such as the <<java_plugin#sec:java_project_layout,standard project structure>> -- and its dependency management works in a similar way.
    
    Here we lay out a series of steps for you to follow that will help facilitate the migration of any Maven build to Gradle:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. internal/config/identity/ldap/legacy.go

    	// Lookup bind LDAP service account
    	LookupBindDN       string `json:"lookupBindDN"`
    	LookupBindPassword string `json:"lookupBindPassword"`
    }
    
    // SetIdentityLDAP - One time migration code needed, for migrating from older config to new for LDAPConfig.
    func SetIdentityLDAP(s config.Config, ldapArgs LegacyConfig) {
    	if !ldapArgs.Enabled {
    		// ldap not enabled no need to preserve it in new settings.
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Oct 08 05:12:36 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. architecture/standards/0002-avoid-using-java-serialization.md

    * Existing usages of Java serialization should be migrated to use it.
    * It is ok for Serializer to be used as a replacement for Java serialization as a migration step.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/config/config.go

    	InformerFactory    informers.SharedInformerFactory
    	DynInformerFactory dynamicinformer.DynamicSharedInformerFactory
    
    	//nolint:staticcheck // SA1019 this deprecated field still needs to be used for now. It will be removed once the migration is done.
    	EventBroadcaster events.EventBroadcasterAdapter
    
    	// LeaderElection is optional.
    	LeaderElection *leaderelection.LeaderElectionConfig
    
    	// PodMaxInUnschedulablePodsDuration is the maximum time a pod can stay in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 09:38:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            // It would be better to separate these into different scopes, but many things still assume that daemon services are available in the global scope,
            // so keep them merged as a migration step
            buildProcessState = new BuildProcessState(!configuration.isSingleUse(), AgentStatus.of(configuration.isInstrumentationAgentAllowed()), additionalModuleClassPath, loggingServices, NativeServices.getInstance()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/multilock.go

    import (
    	"bytes"
    	"context"
    	"encoding/json"
    
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    )
    
    const (
    	UnknownLeader = "leaderelection.k8s.io/unknown"
    )
    
    // MultiLock is used for lock's migration
    type MultiLock struct {
    	Primary   Interface
    	Secondary Interface
    }
    
    // Get returns the older election record of the lock
    func (ml *MultiLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

                        lifecycleMap.put(lifecycle.getId(), lifecycle);
                    }
                } else {
                    /*
                     * NOTE: This is to provide a migration path for implementors of the legacy API which did not know about
                     * getLifecycles().
                     */
    
                    String[] lifecycleIds = {"default", "clean", "site"};
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:46:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	// PVCs for CSI migration
    	boundMigrationPVC     = makeTestPVC("pvc-migration-bound", "1G", "", pvcBound, "pv-migration-bound", "1", &waitClass)
    	provMigrationPVCBound = makeTestPVC("pvc-migration-provisioned", "1Gi", "", pvcBound, "pv-migration-bound", "1", &waitClassWithProvisioner)
    
    	// PVCs and PV for GenericEphemeralVolume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. migrator.go

    	tx := db.getInstance()
    
    	// apply scopes to migrator
    	for len(tx.Statement.scopes) > 0 {
    		tx = tx.executeScopes()
    	}
    
    	return tx.Dialector.Migrator(tx.Session(&Session{}))
    }
    
    // AutoMigrate run auto migration for given models
    func (db *DB) AutoMigrate(dst ...interface{}) error {
    	return db.Migrator().AutoMigrate(dst...)
    }
    
    // ViewOption view option
    type ViewOption struct {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/integration_test.go

    				}
    				migrator := &Migrator{server.cfg, dataDir, server.client}
    				err = migrator.MigrateIfNeeded(start)
    				if err != nil {
    					t.Fatalf("Migration failed: %v", err)
    				}
    				err = server.Start(start.version)
    				if err != nil {
    					t.Fatalf("Failed to start server: %v", err)
    				}
    			})
    
    			// Write a value to each server, read it back.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 11.4K bytes
    - Viewed (0)
Back to top