Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,328 for rebuild (0.17 sec)

  1. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	// Becase that the grpc client still use the old tls configuration to reconnect to istiod.
    	// So here we need to rebuild the caClient in order to use the new root cert.
    	defer func() {
    		if err != nil {
    			citadelClientLog.Errorf("failed to sign CSR: %v", err)
    			if err := c.reconnect(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

    
    /**
     * Property delegate for registering new elements in the container.
     *
     * ```kotlin
     * tasks {
     *    val rebuild by registering {
     *        dependsOn("clean", "build")
     *    }
     * }
     * ```
     *
     * @param T the domain object type
     * @param C the concrete container type
     * @param action the configuration action
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    			}
    		}
    	}
    
    	// Remove all matched service subsets. When we rebuild clusters, we will rebuild the subset clusters as well.
    	// We can reconcile the actual subsets that are needed when we rebuild the clusters.
    	for _, matchedSvc := range services {
    		if subsetClusters[matchedSvc.Hostname.String()] != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. README.md

    [license]: https://www.apache.org/licenses/LICENSE-2.0
    [build]: https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven/job/master/
    [test-results]: https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven/job/master/lastCompletedBuild/testReport/
    [build-status]: https://img.shields.io/jenkins/s/https/ci-maven.apache.org/job/Maven/job/maven-box/job/maven/job/master.svg?
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    This means unrelated changes (such as changes to build scripts) will not trigger a rebuild.
    To incorporate build logic changes, the continuous build must be restarted manually.
    
    Continuous build uses <<file_system_watching.adoc#sec:daemon_watch_fs,file system watching>> to detect changes to the inputs.
    If file system watching does not work on your system, then continuous build won't work either.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/README.md

    The flag `-PquickDocs` disables some slow documentation tasks, like creating the DSL reference or the single page user manual PDF or HTML.
    This will automatically enter continuous build and rebuild the documentation when you make changes. It takes 30-40 seconds to rebuild the documentation in "quick mode".
    
    If you really want to generate just the user manual, you can run:
    
        ./gradlew :docs:userguide
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/dist/main.go

    import (
    	"flag"
    	"fmt"
    	"os"
    	"runtime"
    	"strings"
    )
    
    func usage() {
    	xprintf(`usage: go tool dist [command]
    Commands are:
    
    banner                  print installation banner
    bootstrap               rebuild everything
    clean                   deletes all built files
    env [-p]                print environment (-p: include $PATH)
    install [dir]           install individual directory
    list [-json] [-broken]  list all supported platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("C", "OnClass", "OnMethod", "OnParameter", "OnField")
        }
    
        def "changed class with private constant does not incur full rebuild"() {
            source "class A {}", "class B { private final static int x = 1;}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class B { /* change */ }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    Develocity may help you with fulfilling these requirements while still using the build cache for all your builds.
    It allows you to easily find out which build produced an artifact coming from the build cache via build scans.
    
    [.screenshot]
    image::build-cache/from-cache-origin.png[]
    
    == Accelerate developer builds by reusing CI results
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

                super(null, BooleanCommandLineOptionConfiguration.create(LONG_OPTION, "Creates a build scan. Gradle will emit a warning if the build scan plugin has not been applied. (https://gradle.com/build-scans)", "Disables the creation of a build scan. For more information about build scans, please visit https://gradle.com/build-scans."));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top