Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for scorpius (0.23 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"school_satchel":                       "\U0001f392",
    	"scientist":                            "\U0001f9d1\u200d\U0001f52c",
    	"scissors":                             "\u2702\ufe0f",
    	"scorpion":                             "\U0001f982",
    	"scorpius":                             "\u264f",
    	"scotland":                             "\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/internal/fuzz/fuzz.go

    	// countWaiting is the number of fuzzing executions the coordinator is
    	// waiting on workers to complete.
    	countWaiting int64
    
    	// corpus is a set of interesting values, including the seed corpus and
    	// generated values that workers reported as interesting.
    	corpus corpus
    
    	// minimizationAllowed is true if one or more of the types of fuzz
    	// function's parameters can be minimized.
    	minimizationAllowed bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/testing/fuzz.go

    	testContext *testContext
    
    	// inFuzzFn is true when the fuzz function is running. Most F methods cannot
    	// be called when inFuzzFn is true.
    	inFuzzFn bool
    
    	// corpus is a set of seed corpus entries, added with F.Add and loaded
    	// from testdata.
    	corpus []corpusEntry
    
    	result     fuzzResult
    	fuzzCalled bool
    }
    
    var _ TB = (*F)(nil)
    
    // corpusEntry is an alias to the same type as internal/fuzz.CorpusEntry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz.txt

    stdout FAIL
    stdout 'failed some precondition'
    
    # Test success with seed corpus in f.Fuzz
    go test -run FuzzPass fuzz_add_test.go
    stdout ok
    ! stdout FAIL
    ! stdout 'off by one error'
    
    # Test fatal with seed corpus in f.Fuzz
    ! go test -run FuzzFatal fuzz_add_test.go
    ! stdout ^ok
    stdout FAIL
    stdout 'fatal here'
    
    # Test panic with seed corpus in f.Fuzz
    ! go test -run FuzzPanic fuzz_add_test.go
    ! stdout ^ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. buildscripts/resolve-right-versions.sh

    	fi
    
    	(cd "${MC_BUILD_DIR}" && go build -o "$WORK_DIR/mc")
    
    	# remove mc source.
    	purge "${MC_BUILD_DIR}"
    
    	"${WORK_DIR}/mc" cp --quiet -r "buildscripts/cicd-corpus/" "${WORK_DIR}/cicd-corpus/"
    
    	"${MINIO[@]}" --address ":$start_port" "${WORK_DIR}/cicd-corpus/disk{1...5}" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    	sleep 5
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    		echo "server1 log:"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 16 14:51:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # This test checks that cached corpus loading properly handles duplicate entries (this can
    # happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entries
    # should be discarded, and the rest of the cache should be loaded as normal.
    
    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    # of the mutator finding a crash while fuzzing, adding it as a regression test
    # to the seed corpus in testdata, and failing the next time the test is run.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Running the seed corpus for all of the targets should pass the first
    # time, since nothing in the seed corpus will cause a crash.
    go test
    
    # Running the fuzzer should find a crashing input quickly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_parallel.txt

    # by 'go test', so we can't distinguish that crasher from some other panic.
    ! go test -run=FuzzMutate -fuzz=FuzzMutate
    exists testdata/fuzz/FuzzMutate
    
    # Testdata should now contain a corpus entry which will fail FuzzMutate.
    # Run the test without fuzzing, setting -parallel to different values to make
    # sure it fails, and doesn't hang.
    ! go test -run=FuzzMutate -parallel=1
    ! go test -run=FuzzMutate -parallel=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_cleanup.txt

    ! go test -run=FuzzTargetGoexit
    stdout cleanup
    
    # Cleanup should run after panic.
    ! go test -run=FuzzTargetPanic
    stdout cleanup
    
    # Cleanup should run in fuzz function on seed corpus.
    go test -v -run=FuzzFunction
    stdout '(?s)inner.*outer'
    
    # TODO(jayconrod): test cleanup while fuzzing. For now, the worker process's
    # stdout and stderr is connected to the coordinator's, but it should eventually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt

    				os.Exit(1)
    			}
    		}
    		if !containsVal {
    			fmt.Fprintln(os.Stderr, "corpus file contained no values")
    			os.Exit(1)
    		}
    	}
    }
    
    var valRe = regexp.MustCompile(`^\[\]byte\(([^)]+)\)$`)
    
    -- check_cache/check_cache.go --
    //go:build ignore
    // +build ignore
    
    // check_cache.go checks that each file in the cached corpus has a []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top