Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 377 for incremented (0.22 sec)

  1. pilot/pkg/xds/delta.go

    	}
    
    	if !s.ProxyNeedsPush(con.proxy, pushRequest) {
    		deltaLog.Debugf("Skipping push to %v, no updates required", con.ID())
    		if pushRequest.Full {
    			// Only report for full versions, incremental pushes do not have a new version
    			reportAllEventsForProxyNoPush(con, s.StatusReporter, pushRequest.Push.LedgerVersion)
    		}
    		return nil
    	}
    
    	// Send pushes to all generators
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

    import org.gradle.api.internal.tasks.compile.JavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.DependentsSet;
    import org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource;
    import org.gradle.api.internal.tasks.compile.incremental.transaction.CompileTransaction;
    import org.gradle.api.tasks.util.PatternSet;
    import org.gradle.internal.file.Deleter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.java.compile.incremental
    
    import org.gradle.api.JavaVersion
    import org.gradle.api.internal.cache.StringInterner
    import org.gradle.api.internal.tasks.compile.incremental.recomp.PreviousCompilationAccess
    import org.gradle.integtests.fixtures.AvailableJavaHomes
    import org.gradle.integtests.fixtures.CompiledLanguage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         * The execution capability of the work: can be incremental, or non-incremental.
         * <p>
         * Note that incremental work can be executed non-incrementally if input changes
         * require it.
         */
        enum ExecutionBehavior {
            /**
             * Work can be executed incrementally, input changes for {@link InputBehavior#PRIMARY} and
             * {@link InputBehavior#INCREMENTAL} properties should be tracked.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    [[sec:incremental_annotation_processing]]
    == Incremental annotation processing
    
    Starting with Gradle 4.7, the incremental compiler also supports incremental annotation processing.
    All annotation processors need to opt in to this feature, otherwise they will trigger a full recompilation.
    
    As a user you can see which annotation processors are triggering full recompilations in the `--info` log.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    import org.gradle.api.internal.tasks.compile.MinimalGroovyCompileOptions;
    import org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.GroovyRecompilationSpecProvider;
    import org.gradle.api.internal.tasks.compile.incremental.recomp.RecompilationSpecProvider;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Property;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

                if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("scala-incremental Analysis file: {}", analysisFile);
                    LOGGER.debug("scala-incremental Classfile backup dir: {}", classpathBackupDir);
                    LOGGER.debug("scala-incremental Published code: {}", publishedCode);
                }
                File analysisMapping = getAnalysisMappingFile().getAsFile().get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        }
    
        /**
         * Configure the java compilation to be incremental (e.g. compiles only those java classes that were changed or that are dependencies to the changed classes).
         */
        public CompileOptions setIncremental(boolean incremental) {
            this.incremental = incremental;
            return this;
        }
    
        /**
         * informs whether to use incremental compilation feature. See {@link #setIncremental(boolean)}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIsolationIntegrationTest.groovy

                file("build/libs1/test-1.3.jar.txt").readLines() == ["1", "2", "3", "4", "5"]
                file("build/libs1/test2-2.3.jar.txt").readLines() == ["1", "2", "3", "4", "5"]
            } else {
                // Counter is isolated at execution time, so transforms will see the increment in each tasks' doLast { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    [[sec:incremental_groovy_compilation]]
    == Incremental Groovy compilation
    
    Since 5.6, Gradle introduces an experimental incremental Groovy compiler. To enable incremental compilation for Groovy, you need:
    
    * Enable <<groovy_plugin.adoc#sec:groovy_compilation_avoidance,Groovy compilation avoidance>>.
    * Explicitly enable incremental Groovy compilation in the build script:
    
    .Enable incremental Groovy compilation
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top