Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for migrate (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    Your build script may contain statements like: `"ant clean compile".execute()`.footnote:[In Groovy you can execute Strings.]
    
    Gradle's Ant integration allows you to migrate your build from Ant to Gradle smoothly:
    
    1. Begin by importing your existing Ant build.
    2. Then, transition your dependency declarations from the Ant script to your build file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    // limitations under the License.
    
    [[upgrading_version_5]]
    = Upgrading your build from Gradle 5.x to 6.0
    
    This chapter provides the information you need to migrate your Gradle 5.x builds to Gradle 6.0.
    For migrating from Gradle 4.x, complete the <<upgrading_version_4.adoc#upgrading_version_4, 4.x to 5.0 guide>> first.
    
    We recommend the following steps for all users:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Collections2.java

     * addressed by the new {@link java.util.stream.Stream} library. Read the method documentation below
     * for comparisons. These methods are not being deprecated, but we gently encourage you to migrate
     * to streams.
     *
     * @author Chris Povirk
     * @author Mike Bostock
     * @author Jared Levy
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Collections2 {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    // to IsFullyQualifiedDomainName but requires a minimum of 3 segments instead of
    // 2 and does not accept a trailing . as valid.
    // TODO: This function is deprecated and preserved until all callers migrate to
    // IsFullyQualifiedDomainName; please don't add new callers.
    func IsFullyQualifiedName(fldPath *field.Path, name string) field.ErrorList {
    	var allErrors field.ErrorList
    	if len(name) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    So to track these inputs we had to find a way to track when they are accessed by intercepting API calls reading them. 
    And that is why we started instrumenting bytecode.
    
    Later, with a requirement to migrate Gradle core APIs to lazy properties, we were looking at how we could make old plugins compatible with new Gradle core APIs. 
    We decided that upgrading old compiled bytecode would work well. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    		pods                             []*v1.Pod
    	}
    	tests := []struct {
    		name string
    		args args
    		want []podShutdownGroup
    	}{
    		{
    			name: "migrate config",
    			args: args{
    				shutdownGracePeriodByPodPriority: migrateConfig(300*time.Second /* shutdownGracePeriodRequested */, 120*time.Second /* shutdownGracePeriodCriticalPods */),
    				pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Collections2.java

     * addressed by the new {@link java.util.stream.Stream} library. Read the method documentation below
     * for comparisons. These methods are not being deprecated, but we gently encourage you to migrate
     * to streams.
     *
     * @author Chris Povirk
     * @author Mike Bostock
     * @author Jared Levy
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Collections2 {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/preemption/preemption.go

    	extenders := ev.Handler.Extenders()
    	nodeLister := ev.Handler.SnapshotSharedLister().NodeInfos()
    	if len(extenders) == 0 {
    		return candidates, nil
    	}
    
    	// Migrate candidate slice to victimsMap to adapt to the Extender interface.
    	// It's only applicable for candidate slice that have unique nominated node name.
    	victimsMap := ev.CandidatesToVictimsMap(candidates)
    	if len(victimsMap) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

        qparams_op.getScale().replaceAllUsesWith(scale_cast.getOut());
        qparams_op.getZp().replaceAllUsesWith(zp_cast.getOut());
        return success();
      }
    };
    
    // TODO(b/193731721): Migrate tfr_ builtin canonicalizations to LowerTFROpPass
    class RemoveScaleFactorOp : public OpRewritePattern<TFRQuantScaleFactorOp> {
      using OpRewritePattern<TFRQuantScaleFactorOp>::OpRewritePattern;
    
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    NOTE: The `compile` and `runtime` configurations have been removed with Gradle 7.0.
    Please refer to the <<upgrading_version_6.adoc#sec:configuration_removal, upgrade guide>> how to migrate to `implementation` and `api` configurations`.
    
    If your build consumes a published module with POM metadata, the Java and Java Library plugins both honor api and implementation separation through the scopes used in the POM.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top