Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 139 for doCache (0.1 sec)

  1. src/cmd/go/testdata/script/build_overlay.txt

    [cgo] ! stdout $GOPATH[/\\]src[/\\]m[/\\]overlay[/\\]hello.c
    
    # Change the contents of a file in the overlay and ensure that makes the target stale
    env OLD_GOCACHE=$GOCACHE
    env GOCACHE=$WORK/cache  # use a fresh cache so that multiple runs of the test don't interfere
    go build -x -overlay overlay.json ./test_cache
    stderr '(compile|gccgo)( |\.exe).*test_cache.go'
    go build -x -overlay overlay.json ./test_cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/README

    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
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_run.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Tests which verify the behavior and command line output when
    # running a fuzz target as a unit test.
    
    # Tests without -run.
    
    ! go test
    stdout FAIL
    stdout 'error here'
    
    ! go test -v
    stdout FAIL
    stdout 'error here'
    stdout '=== RUN   FuzzFoo/thisfails'
    stdout '--- FAIL: FuzzFoo/thisfails'
    stdout '=== RUN   FuzzFoo/thispasses'
    stdout '--- PASS: FuzzFoo/thispasses'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:02 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # There are no seed values, so 'go test' should finish quickly.
    go test
    
    # 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
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    # use separate log files. check_logs.go verifies that the coordinator only
    # tests seed values and the worker tests mutated values on the fuzz target.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    go test -fuzz=FuzzA -fuzztime=100x -parallel=1 -log=fuzz
    go run check_logs.go fuzz fuzz.worker
    
    # TODO(b/181800488): remove -parallel=1, here and below. For now, when a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/KotlinDeprecationErrorTest.kt

        val directory: File = cache.directory()
      }
    
      @Test @Disabled
      fun cacheControl() {
        val cacheControl: CacheControl = CacheControl.Builder().build()
        val noCache: Boolean = cacheControl.noCache()
        val noStore: Boolean = cacheControl.noStore()
        val maxAgeSeconds: Int = cacheControl.maxAgeSeconds()
        val sMaxAgeSeconds: Int = cacheControl.sMaxAgeSeconds()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tools/docker-builder/docker.go

    				}
    				t.Outputs = []string{"type=docker,dest=" + filepath.Join(testenv.LocalOut, "release", "docker", n+a.suffix+".tar")}
    			} else {
    				t.Outputs = []string{"type=docker"}
    			}
    
    			if a.NoCache {
    				x := true
    				t.NoCache = &x
    			}
    
    			name := fmt.Sprintf("%s-%s", target, variant)
    			targets[name] = t
    			tgts := groups[variant].Targets
    			tgts = append(tgts, name)
    			groups[variant] = Group{tgts}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. ci/devinfra/docker_windows/Dockerfile

            "--quiet", "--wait", "--nocache", \
            "--add", "Microsoft.VisualStudio.Workload.VCTools", \
            "--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", \
            "--add", "Microsoft.VisualStudio.Component.Windows10SDK.19041" -Wait; \
        Start-Process -FilePath C:/TEMP/vs_buildtools.exe -ArgumentList "--installPath", "C:/VS", \
            "--quiet", "--wait", "--nocache", "--includeOptional", \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rocache/ReadOnlyDependencyCacheWithinContainerTest.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.containers.GradleInContainer
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.server.http.BlockingHttpServer
    import org.gradle.test.fixtures.server.http.MavenHttpModule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/MetadataArtifactResolveTestFixture.groovy

        void execute(ComponentMetadataContext context) {
            context.details.changing = true
        }
    }
    
    dependencies {
        components {
            all(ChangingRule)
        }
    }
    
    if (project.hasProperty('nocache')) {
        configurations.all {
            resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
        }
    }
    """
        }
    
        MetadataArtifactResolveTestFixture requestComponent(String component) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top