Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 223 for Migration (0.2 sec)

  1. pkg/controller/volume/attachdetach/util/util.go

    	}
    
    	if csiMigratedPluginManager.IsMigrationCompleteForPlugin(pluginName) {
    		// All nodes are expected to have migrated CSI plugin installed and
    		// configured when CSI Migration Complete flag is enabled for a plugin.
    		// CSI migration is supported even if there is version skew between
    		// managers and node.
    		return true, nil
    	}
    
    	if len(nodeName) == 0 {
    		return false, errors.New("nodeName is empty")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalFileDependencyMetadata.java

    import org.gradle.api.internal.file.FileCollectionInternal;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents a local file dependency. Should be modelled as a regular dependency, but is treated separately as a migration step.
     */
    public interface LocalFileDependencyMetadata {
        /**
         * Returns the id of the component that the file dependency references, if known. If not known an arbitrary identifier will be assigned.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. README.md

    ## Migration from another search provider
    
    Please see [MIGRATION.md](MIGRATION.md).
    
    ## Data Store
    
    Currently, Fess supports crawling the following [storage locations and APIs](https://fess.codelibs.org/14.12/admin/dataconfig-guide.html):
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         * Intended only for use with roles defined in {@link ConfigurationRolesForMigration}.
         *
         * @throws org.gradle.api.InvalidUserDataException If a non-migration role is used.
         */
        Configuration migratingUnlocked(String name, ConfigurationRole role);
    
        /**
         * Creates a new configuration, which can change roles, with initial role {@code role},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    The main downside is the extra work required to perform the migration, particularly if the existing build is complex and has many inter-project dependencies.
    However, these builds often benefit the most from a switch to idiomatic Gradle.
    In addition, Gradle provides many features that can ease the migration, such as the ability to <<ant#sec:using_ant_tasks,use core and custom Ant tasks>> directly from a Gradle build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. cluster/log-dump/README.md

    Currently, `log-dump.sh` file is added to every newly released `kubekins-e2e` image.
    In order to leverage that script, add `USE_TEST_INFRA_LOG_DUMPING` environment variable
    to your test job and set its value to `true`.
    
    ## Migration steps
    
    For the time being, only GCE and GKE providers are supported by the log-dump mechanism.
    To make the mechanism support your Kubernetes provider in tests using `kubekins-e2e`, modify
    the `logDumpPath` function in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 15 08:58:09 UTC 2020
    - 1009 bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyArtifactSelector.java

     */
    package org.gradle.api.artifacts;
    
    import javax.annotation.Nullable;
    
    /**
     * Details about an artifact selection in the context of a dependency substitution.
     *
     * Artifact selections are handy as a migration path from the Maven or Ivy ecosystem,
     * where different "variants" are actually represented as different artifacts, with
     * specific (type, extension, classifier) sub-coordinates, in addition to the GAV
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalConfigurationGraphResolveMetadata.java

        /**
         * Returns the files attached to this configuration, if any. These should be represented as dependencies, but are currently represented as files as a migration step.
         */
        Set<LocalFileDependencyMetadata> getFiles();
    
        /**
         * Calculates the set of artifacts for this configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VisitedFileDependencyResults.java

    import java.util.Map;
    
    /**
     * Collects the file dependencies visited during graph traversal. These should be treated as dependencies, but are currently treated separately as a migration step.
     */
    public interface VisitedFileDependencyResults {
        /**
         * Returns the direct dependencies of the root node. The map is from dependency to the id of the associated artifact set.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. internal/config/policy/opa/legacy.go

    import (
    	"github.com/minio/minio/internal/config"
    )
    
    // Legacy OPA envs
    const (
    	EnvIamOpaURL       = "MINIO_IAM_OPA_URL"
    	EnvIamOpaAuthToken = "MINIO_IAM_OPA_AUTHTOKEN"
    )
    
    // SetPolicyOPAConfig - One time migration code needed, for migrating from older config to new for PolicyOPAConfig.
    func SetPolicyOPAConfig(s config.Config, opaArgs Args) {
    	if opaArgs.URL == nil || opaArgs.URL.String() == "" {
    		// Do not enable if opaArgs was empty.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top