Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for avoidance (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    [[task_configuration_avoidance]]
    = Avoiding Unnecessary Task Configuration
    
    As of Gradle 5.1, we recommend that the configuration avoidance APIs be used whenever tasks are created.
    
    image::writing-tasks-4.png[]
    
    [[sec:how_does_it_work_config_api]]
    == Task configuration avoidance API
    The configuration avoidance API avoids configuring tasks if they will not be used for a build, which can significantly impact total configuration time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    --
    
    [[configuration-avoidance]]
    == Configuration avoidance
    
    Gradle 4.9 introduced a new API for creating and configuring tasks in build scripts and plugins. The intent is for this new API to eventually replace the existing API.
    
    [quote]
    ____
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Increased compile avoidance - Reducing the number of transitive dependencies leaked from a project also reduces the likelihood that an ABI change will trigger recompilation of consumers. Gradle will also spend less time indexing the dependencies for its up-to-date checks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"collisionCount":         "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
    	"conditions":             "Represents the latest available observations of a DaemonSet's current state.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Upgrade to a Gradle version above 3.4 to benefit from compile avoidance.
    
    NOTE: If you use annotation processors, you need to explicitly declare them in order for compilation avoidance to work.
    To learn more, check out the <<java_plugin.adoc#sec:java_compile_avoidance,compile avoidance documentation>>.
    
    == Optimize Android projects
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apps/v1/generated.proto

      // (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberUnavailable = 8;
    
      // Count of hash collisions for the DaemonSet. The DaemonSet controller
      // uses this field as a collision avoidance mechanism when it needs to
      // create the name for the newest ControllerRevision.
      // +optional
      optional int32 collisionCount = 9;
    
      // Represents the latest available observations of a DaemonSet's current state.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/generated.proto

      // (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberUnavailable = 8;
    
      // Count of hash collisions for the DaemonSet. The DaemonSet controller
      // uses this field as a collision avoidance mechanism when it needs to
      // create the name for the newest ControllerRevision.
      // +optional
      optional int32 collisionCount = 9;
    
      // Represents the latest available observations of a DaemonSet's current state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // +patchStrategy=merge
      repeated DeploymentCondition conditions = 6;
    
      // collisionCount is the count of hash collisions for the Deployment. The Deployment controller uses this
      // field as a collision avoidance mechanism when it needs to create the name for the
      // newest ReplicaSet.
      // +optional
      optional int32 collisionCount = 8;
    }
    
    // DeploymentStrategy describes how to replace existing pods with new ones.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

        }
    
        private void warnIfCompileAvoidanceEnabled() {
            if (experimentalCompilationAvoidanceEnabled()) {
                IncubationLogger.incubatingFeatureUsed("Groovy compilation avoidance");
            }
        }
    
        private Compiler<GroovyJavaJointCompileSpec> createCompiler(GroovyJavaJointCompileSpec spec, InputChanges inputChanges) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberUnavailable = 8;
    
      // Count of hash collisions for the DaemonSet. The DaemonSet controller
      // uses this field as a collision avoidance mechanism when it needs to
      // create the name for the newest ControllerRevision.
      // +optional
      optional int32 collisionCount = 9;
    
      // Represents the latest available observations of a DaemonSet's current state.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top