Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,382 for rebuild (0.5 sec)

  1. releasenotes/notes/update-envoy-filters-in-place.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 18 06:50:06 UTC 2023
    - 274 bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            }
    
            then:
            0 * _  // Does not call initialization action.
            dir.file("cache.properties").isFile()
            dir.file("some-file").isFile()
        }
    
        def "will rebuild cache if not unlocked cleanly"() {
            given:
            def dir = temporaryFolder.testDirectory.createDir("cache")
            def initialized = false
            def init = { initialized = true } as Consumer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            """
    
            then:
            succeeds language.compileTaskName
            outputs.recompiledClasses('Person', 'Consumer')
        }
    
        def "changing an unused non-private constant incurs partial rebuild"() {
            source "class A { int foo() { return 2; } }", "class B { 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
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_edit_go.txt

    # Test support for go mod edit -go to set language version.
    
    env GO111MODULE=on
    ! go build
    stderr ' type alias requires'
    go mod edit -go=1.9
    grep 'go 1.9' go.mod
    go build
    
    # Reverting the version should force a rebuild and error instead of using
    # the cached 1.9 build. (https://golang.org/issue/37804)
    go mod edit -go=1.8
    ! go build
    stderr 'type alias requires'
    
    # go=none should drop the line
    go mod edit -go=none
    ! grep go go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 506 bytes
    - Viewed (0)
  5. src/run.rc

    	echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
    	exit wrongdir
    }
    
    GOENV=off
    eval `{../bin/go tool dist env}
    
    GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 406 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cgo_stale.txt

    env GOCACHE=$WORK/cache  # Use a fresh cache to avoid interference between runs.
    
    go build -x .
    stderr '[/\\]cgo'$GOEXE'["]? .* -importpath runtime/cgo'
    ! stale runtime/cgo
    
    
    # After runtime/cgo has been rebuilt and cached, it should not be rebuilt again.
    
    go build -x .
    ! stderr '[/\\]cgo'$GOEXE'["]? .* -importpath runtime/cgo'
    ! stale runtime/cgo
    
    
    -- go.mod --
    module example.com/m
    
    go 1.17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 22:43:41 UTC 2022
    - 888 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

        def "task can have actions defined using Groovy script closures"() {
            given:
            settingsFile << """
                include 'a', 'b'
            """
            [file("a/build.gradle"), file("b/build.gradle")].each {
                it << """
                    tasks.register("some") {
                        doFirst {
                            println("FIRST")
                        }
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/all.bash

    # license that can be found in the LICENSE file.
    
    set -e
    if [ ! -f make.bash ]; then
    	echo 'all.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    . ./make.bash "$@" --no-banner
    bash run.bash --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:53:58 UTC 2024
    - 377 bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskConstantChangesIncrementalCompilationIntegrationTest.groovy

            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('Y')
        }
    
        def "change in an upstream transitive class with non-private constant does not cause full rebuild"() {
            source api: ["class A { final static int x = 1; }", "class B extends A {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. lib/time/README

    The IANA asserts that the database is in the public domain.
    
    For more information, see
    https://www.iana.org/time-zones
    ftp://ftp.iana.org/tz/code/tz-link.html
    https://datatracker.ietf.org/doc/html/rfc6557
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 15 02:18:46 UTC 2021
    - 390 bytes
    - Viewed (0)
Back to top