Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for migrate (0.88 sec)

  1. buildscripts/verify-healing.sh

    function purge() {
    	rm -rf "$1"
    }
    
    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    	echo '{"version": "3", "credential": {"accessKey": "minio", "secretKey": "minio123"}, "region": "us-east-1"}' >"$MINIO_CONFIG_DIR/config.json"
    
    	if [ ! -f /tmp/mc ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storagemigration/v1alpha1/types.go

    type StorageVersionMigrationSpec struct {
    	// The resource that is being migrated. The migrator sends requests to
    	// the endpoint serving the resource.
    	// Immutable.
    	Resource GroupVersionResource `json:"resource" protobuf:"bytes,1,opt,name=resource"`
    	// The token used in the list options to get the next chunk of objects
    	// to migrate. When the .status.conditions indicates the migration is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/PreferJavaRuntimeVariant.java

     * of the published library.
     * The following disambiguation rule encodes this assumption for the case where a java library is published
     * with variants using Gradle module metadata. This will allow us to migrate to consuming the new module
     * metadata format by default without breaking a bunch of consumers that depend on this assumption,
     * declaring no preference for a particular variant.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

    import org.gradle.external.javadoc.StandardJavadocDocletOptions;
    
    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Generates Javadocs in a particular way.
     *
     * TODO: We should remove the workarounds here and migrate some of the changes here into the Javadoc task proper.
     */
    public abstract class GradleJavadocsPlugin implements Plugin<Project> {
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

         */
        @Nullable
        public String getContextualAdvice() {
            return contextualAdvice;
        }
    
        /**
         * Link to documentation, describing how to migrate from this deprecated usage.
         *
         * Example: https://docs.gradle.org/current/userguide/upgrading_version_5.html#plugin_validation_changes
         */
        @Nullable
        public DocLink getDocumentationUrl() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. cluster/images/etcd/migrate/data_dir_test.go

    		t.Fatal(err)
    	}
    	if isEmpty {
    		t.Errorf("Expected non-empty backup directory to exist after Backup()")
    	}
    }
    
    func newTestPath(t *testing.T) string {
    	path, err := os.MkdirTemp("", "etcd-migrate-test-")
    	if err != nil {
    		t.Fatalf("Failed to create tmp dir for test: %v", err)
    	}
    	err = os.Chmod(path, 0777)
    	if err != nil {
    		t.Fatalf("Failed to granting permission to tmp dir for test: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  7. buildscripts/verify-healing-empty-erasure-set.sh

    function purge() {
    	echo rm -rf "$1"
    }
    
    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    	echo '{"version": "3", "credential": {"accessKey": "minio", "secretKey": "minio123"}, "region": "us-east-1"}' >"$MINIO_CONFIG_DIR/config.json"
    
    	if [ ! -f /tmp/mc ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. docs/distributed/CONFIG.md

        passive-port-range: "30000-40000"
      sftp: # settings for MinIO to act as an sftp server
        address: ":8022"
        ssh-private-key: "/home/user/.ssh/id_rsa"
    ```
    
    If you are using the config `v1` YAML you should migrate your `pools:` field values to the following format
    
    `v1` format
    ```yaml
    pools: # Specify the nodes and drives with pools
      -
        - "https://server-example-pool1:9000/mnt/disk{1...4}/"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. manifests/charts/gateway/README.md

    These are replaced by this chart.
    While not required, it is recommended all new users use this chart, and existing users migrate when possible.
    
    This chart has the following benefits and differences:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. istioctl/pkg/tag/util.go

    // used rather than just deleting the webhook since we want to keep it around after changing the default so user can later
    // switch back to it. This is a hack but it is meant to cover a corner case where a user wants to migrate from a non-revisioned
    // old version and then later decides to switch back to the old revision again.
    func DeactivateIstioInjectionWebhook(ctx context.Context, client kubernetes.Interface) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top