Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for isIncremental (0.2 sec)

  1. pilot/pkg/xds/xdsgen.go

    		TypeUrl:      w.TypeUrl,
    		// TODO: send different version for incremental eds
    		VersionInfo: req.Push.PushVersion,
    		Nonce:       nonce(req.Push.LedgerVersion),
    		Resources:   xds.ResourcesToAny(res),
    	}
    
    	configSize := ResourceSize(res)
    	configSizeBytes.With(typeTag.Value(w.TypeUrl)).Record(float64(configSize))
    
    	ptype := "PUSH"
    	if logdata.Incremental {
    		ptype = "PUSH INC"
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultCompilationStateCacheFactory.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.language.nativeplatform.internal.incremental;
    
    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.IndexedCache;
    import org.gradle.cache.IndexedCacheParameters;
    import org.gradle.cache.ObjectHolder;
    import org.gradle.cache.PersistentCache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    <<performance.adoc#performance_gradle,Optimizing Builds>> :: Use caches to optimize your build and understand the Gradle daemon, incremental builds and file system watching.
    <<jenkins.adoc#build_jenkins,Gradle on CI>> :: Gradle integration with popular continuous integration (CI) servers.
    
    [[reference]]
    == Reference
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/build.gradle.kts

    import gradlebuild.basics.googleApisJs
    
    plugins {
        id("gradlebuild.internal.java")
    }
    
    description = "Collection of test fixtures for performance tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    val reports by configurations.creating
    val flamegraph by configurations.creating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/GroovyDslFileContentGenerator.groovy

            List<String> javaCompileJvmArgs = findProperty('javaCompileJvmArgs')?.tokenize(';') ?: []
    
            tasks.withType(AbstractCompile).configureEach {
                options.fork = true
                options.incremental = true
                options.forkOptions.memoryInitialSize = compilerMemory
                options.forkOptions.memoryMaximumSize = compilerMemory
                options.forkOptions.jvmArgs.addAll(javaCompileJvmArgs)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/SwiftBuildPerformanceTest.groovy

            given:
            runner.tasksToRun = ["assemble"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        def "incremental compile"() {
            given:
            runner.tasksToRun = ["assemble"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pkg/kubelet/config/mux.go

    */
    
    package config
    
    import (
    	"context"
    	"sync"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    )
    
    type merger interface {
    	// Invoked when a change from a source is received.  May also function as an incremental
    	// merger if you wish to consume changes incrementally.  Must be reentrant when more than
    	// one source is defined.
    	Merge(source string, update interface{}) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 20:02:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/compilerapi/deps/DependentSetSerializer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.serialize.HierarchicalNameSerializer;
    import org.gradle.internal.serialize.AbstractSerializer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 24 12:57:52 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

         * crawlers to retrieve only a subset of the Sitemaps in the index i.e. a
         * crawler may only retrieve Sitemaps that were modified since a certain
         * date. This incremental Sitemap fetching mechanism allows for the rapid
         * discovery of new URLs on very large sites.
         */
        private String lastmod;
    
        /*
         * (non-Javadoc)
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part7_gradle_refs.adoc

    3. You learned about dependency management in <<part3_gradle_dep_man#part3_begin,part 3>>.
    4. You applied a plugin to your app in <<part4_gradle_plugins#part4_begin,part 4>>.
    5. You learned about incremental builds in <<part5_gradle_inc_builds#part5_begin,part 5>>.
    6. You turned on the local cache in <<part6_gradle_caching#part6_begin,part 6>>.
    
    == Step 1. Gradle References
    To work with Gradle, the following references are useful:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top