Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for Migration (0.11 sec)

  1. pkg/controller/volume/expand/expand_controller_test.go

    			pvc:             getFakePersistentVolumeClaim("good-pvc", "vol-4", "2Gi", "2Gi", "good-pvc-vol-4"),
    			pvcKey:          "default/good-pvc",
    			expansionCalled: false,
    		},
    		{
    			name:            "for csi plugin without migration path",
    			pv:              getFakePersistentVolume("vol-5", "com.csi.ceph", "1Gi", "ceph-csi-pvc-vol-6"),
    			pvc:             getFakePersistentVolumeClaim("ceph-csi-pvc", "vol-5", "1Gi", "2Gi", "ceph-csi-pvc-vol-6"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. .github/CODEOWNERS

    platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc                                 @gradle/bt-devrel-education @gradle/bt-kotlin-dsl-maintainers
    platforms/documentation/docs/src/docs/userguide/migration/migrating_from_groovy_to_kotlin_dsl.adoc  @gradle/bt-devrel-education @gradle/bt-kotlin-dsl-maintainers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    Two approaches to migrations stand out:
    
     * Migrating the existing syntax of your build to Kotlin, bit by bit, while retaining the structure — what we call a _mechanical migration_
     * Restructuring your build logic towards Gradle best practices and switching to Kotlin DSL as part of that effort
    
    Both approaches are viable.
    A mechanical migration will be enough for simple builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// storedVersions lists all versions of CustomResources that were ever persisted. Tracking these
    	// versions allows a migration path for stored versions in etcd. The field is mutable
    	// so a migration controller can finish a migration to another version (ensuring
    	// no old objects are left in storage), and then remove the rest of the
    	// versions from this list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            // It would be better to separate these into different scopes, but many things still assume that connection services are available in the global scope,
            // so keep them merged as a migration step
            // It would also be better to create the build process services only if they are needed, ie when the tooling API is used in embedded mode
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// storedVersions lists all versions of CustomResources that were ever persisted. Tracking these
    	// versions allows a migration path for stored versions in etcd. The field is mutable
    	// so a migration controller can finish a migration to another version (ensuring
    	// no old objects are left in storage), and then remove the rest of the
    	// versions from this list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

            "description": "Spec of the storage version migration.",
            "properties": {
              "continueToken": {
                "description": "The token used in the list options to get the next chunk of objects to migrate. When the .status.conditions indicates the migration is \"Running\", users can use this token to check the progress of the migration.",
                "type": "string"
              },
              "resource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  8. cmd/format-erasure.go

    	if err := json.Unmarshal(b, format); err != nil {
    		return "", err
    	}
    	return format.Erasure.Version, nil
    }
    
    // Migrates all previous versions to latest version of `format.json`,
    // this code calls migration in sequence, such as V1 is migrated to V2
    // first before it V2 migrates to V3.n
    func formatErasureMigrate(export string) ([]byte, fs.FileInfo, error) {
    	formatPath := pathJoin(export, minioMetaBucket, formatConfigFile)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator_test.go

    		name              string
    		pluginName        string
    		pvSpec            v1.PersistentVolumeSpec
    		probVolumePlugins []volume.VolumePlugin
    	}
    
    	testcases := []testcase{
    		{
    			name:       "gce pd plugin: csi migration disabled",
    			pluginName: "fake-plugin",
    			pvSpec: v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{},
    				}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. cmd/format-erasure_test.go

    		t.Fatalf("expected value false, got %t", ok)
    	}
    
    	formats[2].Erasure.This = ""
    	if ok := formatErasureV3ThisEmpty(formats); !ok {
    		t.Fatalf("expected value true, got %t", ok)
    	}
    }
    
    // Tests xl format migration.
    func TestFormatErasureMigrate(t *testing.T) {
    	// Get test root.
    	rootPath := t.TempDir()
    
    	m := &formatErasureV1{}
    	m.Format = formatBackendErasure
    	m.Version = formatMetaVersionV1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 08:25:46 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top