Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,414 for 100x (0.3 sec)

  1. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    1890a371.gettysburg.txt-100x.zst Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great Civil War, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tests/pick-subgraphs.mlir

        func.return %0 : tensor<100x!quant.uniform<i8:f32, 2.000000e-01:-3>>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    ! go test -run=FuzzWithNilPanic -fuzz=FuzzWithNilPanic -fuzztime=100x -fuzzminimizetime=1000x
    stdout 'testdata[/\\]fuzz[/\\]FuzzWithNilPanic[/\\]'
    stdout 'panic called with nil argument|test executed panic.nil. or runtime.Goexit'
    go run check_testdata.go FuzzWithNilPanic
    
    ! go test -run=FuzzWithGoexit -fuzz=FuzzWithGoexit -fuzztime=100x -fuzzminimizetime=1000x
    stdout 'testdata[/\\]fuzz[/\\]FuzzWithGoexit[/\\]'
    stdout 'runtime.Goexit'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. src/internal/zstd/testdata/README

    Each one is a Zstandard compressed file named as hash.arbitrary-name.zst,
    where hash is the first eight hexadecimal digits of the SHA256 hash
    of the expected uncompressed content:
    
    	zstd -d < 1890a371.gettysburg.txt-100x.zst | sha256sum | head -c 8
    	1890a371
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 373 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_limit_dup_entry.txt

    # had an execution limit, causing it to deadlock and sit in the coordinator
    # loop indefinitely, failing to exit once the limit had been exhausted.
    
    go test -fuzz=FuzzA -fuzztime=100x -parallel=1
    
    -- go.mod --
    module m
    
    go 1.16
    -- fuzz_test.go --
    package fuzz_test
    
    import (
    	"fmt"
    	"testing"
    )
    
    func FuzzA(f *testing.F) {
    	f.Add([]byte("seed"))
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 725 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_setenv.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    go test -fuzz=FuzzA -fuzztime=100x fuzz_setenv_test.go
    
    -- fuzz_setenv_test.go --
    package fuzz
    
    import (
      "flag"
      "os"
      "testing"
    )
    
    func FuzzA(f *testing.F) {
      if s := os.Getenv("TEST_FUZZ_SETENV_A"); isWorker() && s == "" {
        f.Fatal("environment variable not set")
      } else if !isWorker() && s != "" {
        f.Fatal("environment variable already set")
      }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 943 bytes
    - Viewed (0)
  7. 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
    # crash is found, all workers keep running, wasting resources and reducing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_deadline.txt

    ! go test -run=FuzzDeadline -timeout=1s -wantdeadline=false
    go test -run=FuzzDeadline -timeout=1s -wantdeadline=true
    go test -fuzz=FuzzDeadline -timeout=0 -fuzztime=1s -wantdeadline=false
    go test -fuzz=FuzzDeadline -timeout=0 -fuzztime=100x -wantdeadline=false
    
    -- go.mod --
    module fuzz
    
    go 1.16
    -- fuzz_deadline_test.go --
    package fuzz_test
    
    import (
    	"flag"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_cache.txt

    env GOCACHE=$WORK/cache
    
    # Fuzz cache should not exist after a regular test run.
    go test .
    exists $GOCACHE
    ! exists $GOCACHE/fuzz
    
    # Fuzzing should write interesting values to the cache.
    go test -fuzz=FuzzY -fuzztime=100x .
    go run ./contains_files $GOCACHE/fuzz/example.com/y/FuzzY
    
    # 'go clean -cache' should not delete the fuzz cache.
    go clean -cache
    exists $GOCACHE/fuzz
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_minimize.txt

    go clean -fuzzcache
    
    # Test that minimization can be cancelled by fuzzminimizetime and the latest
    # crash will still be logged and written to testdata.
    ! go test -fuzz=FuzzMinimizerRecoverable -run=FuzzMinimizerRecoverable -fuzztime=100x -fuzzminimizetime=1x .
    ! stdout '^ok'
    stdout 'testdata[/\\]fuzz[/\\]FuzzMinimizerRecoverable[/\\]'
    ! stdout 'got the minimum size!'  # it shouldn't have had enough time to minimize it
    stdout FAIL
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 16:15:36 UTC 2021
    - 5.8K bytes
    - Viewed (0)
Back to top