Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Minuten (0.42 sec)

  1. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    import (
    	"internal/testenv"
    	"strings"
    	"testing"
    )
    
    func TestLibFuzzer(t *testing.T) {
    	// Skip tests in short mode.
    	if testing.Short() {
    		t.Skip("libfuzzer tests can take upwards of minutes to run; skipping in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    
    	goos, err := goEnv("GOOS")
    	if err != nil {
    		t.Fatal(err)
    	}
    	goarch, err := goEnv("GOARCH")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	cmd = exec.Command(argv[0], argv[1:]...)
    	sb := new(strings.Builder)
    	cmd.Stdout = sb
    	cmd.Stderr = sb
    	if err := cmd.Start(); err != nil {
    		t.Fatal(err)
    	}
    
    	timer := time.AfterFunc(time.Minute,
    		func() {
    			t.Error("test program timed out")
    			cmd.Process.Kill()
    		},
    	)
    	defer timer.Stop()
    
    	err = cmd.Wait()
    	t.Logf("%v\n%s", cmd.Args, sb)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/testflag.go

    	cf.Var(&testOutputDir, "outputdir", "")
    	cf.Int("parallel", 0, "")
    	cf.String("run", "", "")
    	cf.Bool("short", false, "")
    	cf.String("skip", "", "")
    	cf.DurationVar(&testTimeout, "timeout", 10*time.Minute, "") // known to cmd/dist
    	cf.String("fuzztime", "", "")
    	cf.String("fuzzminimizetime", "", "")
    	cf.StringVar(&testTrace, "trace", "", "")
    	cf.Var(&testV, "v", "")
    	cf.Var(&testShuffle, "shuffle", "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    		// additional WaitDelay to finish writing its output streams.
    		if testWaitDelay < 1*time.Minute {
    			testKillTimeout = testTimeout + 1*time.Minute
    		} else {
    			testKillTimeout = testTimeout + testWaitDelay
    		}
    	}
    
    	// Read testcache expiration time, if present.
    	// (We implement go clean -testcache by writing an expiration date
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/doc/main.go

    	return importDir(wd), "", arg, false
    }
    
    // dotPaths lists all the dotted paths legal on Unix-like and
    // Windows-like file systems. We check them all, as the chance
    // of error is minute and even on Windows people will use ./
    // sometimes.
    var dotPaths = []string{
    	`./`,
    	`../`,
    	`.\`,
    	`..\`,
    }
    
    // isDotSlash reports whether the path begins with a reference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    // profile.proto formatted data.
    func convertPerfData(perfPath string, ui plugin.UI) (*os.File, error) {
    	ui.Print(fmt.Sprintf(
    		"Converting %s to a profile.proto... (May take a few minutes)",
    		perfPath))
    	profile, err := newTempFile(os.TempDir(), "pprof_", ".pb.gz")
    	if err != nil {
    		return nil, err
    	}
    	deferDeleteTempFile(profile.Name())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    drones on. This scarecrow of a suit has, over the course of time, become so complicated, that no man alive knows what it means. The parties to it understand it least; but it has been observed that no two Chancery lawyers can talk about it for five minutes, without coming to a total disagreement as to all the premises. Innumerable children have been born into the cause; innumerable young people have married into it; innumerable old people have died out of it. Scores of persons have deliriously found...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	    the sequence, if any.
    //
    //	-timeout d
    //	    If a test binary runs longer than duration d, panic.
    //	    If d is 0, the timeout is disabled.
    //	    The default is 10 minutes (10m).
    //
    //	-v
    //	    Verbose output: log all tests as they are run. Also print all
    //	    text from Log and Logf calls even if the test succeeds.
    //
    //	-vet list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_cache_inputs.txt

    # We're testing cache behavior, so start with a clean GOCACHE.
    env GOCACHE=$WORK/cache
    
    # Build a helper binary to invoke os.Chtimes.
    go build -o mkold$GOEXE mkold.go
    
    # Make test input files appear to be a minute old.
    exec ./mkold$GOEXE 1m testcache/file.txt
    exec ./mkold$GOEXE 1m testcache/script.sh
    
    # If the test reads an environment variable, changes to that variable
    # should invalidate cached test results.
    env TESTKEY=x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    	if opts.timeout != 0 {
    		d := opts.timeout * time.Duration(t.timeoutScale)
    		run = append(run, "-timeout="+d.String())
    	} else if t.timeoutScale != 1 {
    		const goTestDefaultTimeout = 10 * time.Minute // Default value of go test -timeout flag.
    		run = append(run, "-timeout="+(goTestDefaultTimeout*time.Duration(t.timeoutScale)).String())
    	}
    	if opts.short || t.short {
    		run = append(run, "-short")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top