Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 139 for doCache (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/NonUniqueSnapshotVersionsReadOnlyCacheDependencyResolutionTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.rocache
    
    import org.gradle.test.fixtures.server.http.MavenHttpModule
    import org.gradle.test.fixtures.server.http.MavenHttpRepository
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_dash_x.txt

    [short] skip
    [!cgo] skip
    
    [!exec:/usr/bin/env] skip
    [!exec:bash] skip
    
    mkdir $WORK/tmp/cache
    env GOCACHE=$WORK/tmp/cache
    
    # Before building our test main.go, ensure that an up-to-date copy of
    # runtime/cgo is present in the cache. If it isn't, the 'go build' step below
    # will fail with "can't open import". See golang.org/issue/29004.
    #
    # (The fix in golang.org/issue/29004 didn't completely fix the underlying issue:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/go/scriptreadme_test.go

    Each script runs in a fresh temporary work directory tree, available to scripts as $WORK.
    Scripts also have access to other environment variables, including:
    
    	GOARCH=<target GOARCH>
    	GOCACHE=<actual GOCACHE being used outside the test>
    	GOEXE=<executable file suffix: .exe on Windows, empty on other systems>
    	GOOS=<target GOOS>
    	GOPATH=$WORK/gopath
    	GOPROXY=<local module proxy serving from cmd/go/testdata/mod>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/SnapshotVersionsReadOnlyCacheDependencyResolutionTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.rocache
    
    import org.gradle.test.fixtures.server.http.MavenHttpModule
    import org.gradle.test.fixtures.server.http.MavenHttpRepository
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_deadline.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Warm up the build cache with GOMAXPROCS unrestricted.
    go test -c -o $devnull
    
    # For the fuzzing phase, we reduce GOMAXPROCS to avoid consuming too many
    # resources during the test. Ideally this would just free up resources to run
    # other parallel tests more quickly, but unfortunately it is actually necessary
    # in some 32-bit environments to prevent the fuzzing engine from running out of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. hack/update-golangci-lint-config.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    
    # Remove all files, some of them might be obsolete.
    rm -f hack/golangci*.yaml
    
    generate () {
        out="$1"
        shift
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_multiple.txt

    # enabled, and multiple package or multiple fuzz targets match.
    # TODO(#46312): support fuzzing multiple targets in multiple packages.
    
    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # With fuzzing disabled, multiple targets can be tested.
    go test ./...
    
    # With fuzzing enabled, at most one package may be tested,
    # even if only one package contains fuzz targets.
    ! go test -fuzz=. ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. hack/update-go-workspace.sh

    # Go tools really don't like it if you have a symlink in `pwd`.
    cd "$(pwd -P)"
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # This sets up the environment, like GOCACHE, which keeps the worktree cleaner.
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    # Ensure all modules are included in go.work
    go work edit -use .
    git ls-files -z ':(glob)./staging/src/k8s.io/*/go.mod' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 10 15:44:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_mutate_fail.txt

    [!fuzz] skip
    
    # Check that if a worker does not call F.Fuzz or calls F.Fail first,
    # 'go test' exits non-zero and no crasher is recorded.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    ! go test -fuzz=FuzzReturn
    ! exists testdata
    
    ! go test -fuzz=FuzzSkip
    ! exists testdata
    
    ! go test -fuzz=FuzzFail
    ! exists testdata
    
    ! go test -fuzz=FuzzPanic
    ! exists testdata
    
    ! go test -fuzz=FuzzNilPanic
    ! exists testdata
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_chatty.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Run chatty fuzz targets with an error.
    ! go test -v chatty_error_fuzz_test.go
    ! stdout '^ok'
    stdout 'FAIL'
    stdout 'error in target'
    
    # Run chatty fuzz targets with a fatal.
    ! go test -v chatty_fatal_fuzz_test.go
    ! stdout '^ok'
    stdout 'FAIL'
    stdout 'fatal in target'
    
    # Run chatty fuzz target with a panic
    ! go test -v chatty_panic_fuzz_test.go
    ! stdout ^ok
    stdout FAIL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top