Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 184 for Migration (0.17 sec)

  1. pkg/controller/storageversionmigrator/resourceversion.go

    )
    
    // ResourceVersionController adds the resource version obtained from a randomly nonexistent namespace
    // to the SVM status before the migration is initiated. This resource version is utilized for checking
    // freshness of GC cache before the migration is initiated.
    type ResourceVersionController struct {
    	discoveryClient *discovery.DiscoveryClient
    	metadataClient  metadata.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager.go

    	// leaderMigrator will be non-nil if and only if Leader Migration is enabled.
    	var leaderMigrator *leadermigration.LeaderMigrator = nil
    
    	// If leader migration is enabled, create the LeaderMigrator and prepare for migration
    	if leadermigration.Enabled(&c.ComponentConfig.Generic) {
    		logger.Info("starting leader migration")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    [[sec:task_configuration_avoidance_general]]
    === Migration guidelines
    1. [[task_configuration_avoidance_guideline_use_help_task]] **Use `help` task as a benchmark during the migration.** +
    The `help` task is the perfect candidate to benchmark your migration process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/BuildScanIntegrationTest.kt

                    "Run with '-Ddevelocity.deprecation.captureOrigin=true' to see where the deprecated functionality is being used. " +
                    "For assistance with migration, see https://gradle.com/help/gradle-plugin-develocity-migration.")
            executer.expectDeprecationWarning("""- The deprecated "gradleEnterprise.buildScan.termsOfServiceUrl" API has been replaced by "develocity.buildScan.termsOfUseUrl"""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/utils.go

    )
    
    // isCSIMigrationOn returns a boolean value indicating whether
    // the CSI migration has been enabled for a particular storage plugin.
    func isCSIMigrationOn(csiNode *storagev1.CSINode, pluginName string) bool {
    	if csiNode == nil || len(pluginName) == 0 {
    		return false
    	}
    
    	// In-tree storage to CSI driver migration feature should be enabled,
    	// along with the plugin-specific one
    	switch pluginName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib_test.py

    """Tests for py_function_lib."""
    from tensorflow.python.platform import test
    
    
    class PyFunctionLibTest(test.TestCase):
      # Functions in PyFunctionLib is in the process of migration to c++
      # implementations.
      pass
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 09 08:45:44 UTC 2023
    - 948 bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller_base.go

    		if err != nil {
    			logger.Error(err, "Could not update volume migration annotations. Migration enabled for plugin but could not find corresponding driver name", "plugin", provisioner)
    			return false
    		}
    		if migratedToDriver != csiDriverName {
    			ann[storagehelpers.AnnMigratedTo] = csiDriverName
    			return true
    		}
    	} else {
    		if migratedToDriver != "" {
    			// Migration annotation exists but the driver isn't migrated currently
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    			driverNames:  []string{ebsCSIDriverName, gceCSIDriverName},
    			test:         "don't count pvcs with different type towards volume limit",
    			limitSource:  "node",
    		},
    		// Tests for in-tree volume migration
    		{
    			newPod:           inTreeOneVolPod,
    			existingPods:     []*v1.Pod{inTreeTwoVolPod},
    			filterName:       "csi",
    			maxVols:          2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    			// retrieved.
    			pvcName = ephemeral.VolumeClaimName(pod, &vol)
    			isEphemeral = true
    		default:
    			// Inline Volume does not have PVC.
    			// Need to check if CSI migration is enabled for this inline volume.
    			// - If the volume is migratable and CSI migration is enabled, need to count it
    			// as well.
    			// - If the volume is not migratable, it will be count in non_csi filter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

         */
        fun finalizeCacheEntry()
    
        // This is a temporary property to allow migration from a root build scoped cache to a build tree scoped cache
        val isLoaded: Boolean
    
        // This is a temporary method to allow migration from a root build scoped cache to a build tree scoped cache
        fun attachRootBuild(host: DefaultConfigurationCache.Host)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top