Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for COUNT (0.17 sec)

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

    ! go test ./failfast_test.go -run='TestFailingA' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=false
    stdout -count=2 'FAIL - '
    
    # mix with non-failing tests
    ! go test ./failfast_test.go -run='TestA|TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_regexps.txt

    go test -cpu=1 -run=X/Y -bench=X/Y -count=2 -v testregexp
    
    # Test the following:
    
    # TestX is run, twice
    stdout -count=2 '^=== RUN   TestX$'
    stdout -count=2 '^    x_test.go:6: LOG: X running$'
    
    # TestX/Y is run, twice
    stdout -count=2 '^=== RUN   TestX/Y$'
    stdout -count=2 '^    x_test.go:8: LOG: Y running$'
    
    # TestXX is run, twice
    stdout -count=2 '^=== RUN   TestXX$'
    stdout -count=2 '^    z_test.go:10: LOG: XX running'
    
    # TestZ is not run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    # 2 of them have -pgoprofile (therefore one without).
    stderr -count=3 'compile.*dep(/|\\\\)dep.go'
    stderr -count=2 'compile.*-pgoprofile=.*dep(/|\\\\)dep\.go'
    
    stderr -count=3 'compile.*dep2(/|\\\\)dep2.go'
    stderr -count=2 'compile.*-pgoprofile=.*dep2(/|\\\\)dep2\.go'
    
    stderr -count=3 'compile.*dep3(/|\\\\)dep3.go'
    stderr -count=2 'compile.*-pgoprofile=.*dep3(/|\\\\)dep3\.go'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/main/assemblies/extension/kibana/fess_log.ndjson

    {"attributes":{"fields":"[{\"name\":\"_id\",\"type\":\"string\",\"esTypes\":[\"_id\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"_index\",\"type\":\"string\",\"esTypes\":[\"_index\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"_score\",\"type\":\"number\",\"count\":0,\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":fal...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_fuzztime.txt

    # run. We count the files to find the number of runs.
    mkdir count
    go test -fuzz=FuzzTestCount -fuzztime=1000x -fuzzminimizetime=1x
    go run check_file_count.go count 1000
    
    # When we use fuzzminimizetime with an "x" suffix, it runs a specific number of
    # times while minimizing. This fuzz function creates a file with a unique name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 01 20:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilder.kt

        override fun getLine() = line
    
        override fun getColumn() = column
    }
    
    
    internal
    fun File.readLinesRange() =
        countLines().let { count ->
            if (count == 0L) 0..0L
            else 1..count
        }
    
    
    private
    fun File.countLines(): Long =
        inputStream().buffered().use { input ->
            input.countLines()
        }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_flags.txt

    # with the 'test.' prefix in the GOFLAGS entry...
    env GOFLAGS='-test.timeout=24h0m0s -count=1'
    go test -v -x ./x
    stdout 'timeout: 24h0m0s$'
    stderr '-test.count=1'
    
    # ...or without.
    env GOFLAGS='-timeout=24h0m0s -count=1'
    go test -v -x ./x
    stdout 'timeout: 24h0m0s$'
    stderr '-test.count=1'
    
    # Arguments from the command line should override GOFLAGS...
    go test -v -x -timeout=25h0m0s ./x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_import_cycle.txt

    # mod_import_cycle covers this error in module mode.
    env GO111MODULE=off
    
    ! go build selfimport
    stderr -count=1 'import cycle not allowed'
    
    go list -e -f '{{.Error}}' selfimport # Don't hang forever
    stdout -count=1 'import cycle not allowed'
    
    -- selfimport/selfimport.go --
    package selfimport
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 314 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_odd_tags.txt

    [short] skip
    [!git] skip
    
    env GOPROXY=direct
    
    go list -m vcs-test.golang.org/git/odd-tags.git@latest
    stdout -count=1 '^.'
    stdout '^vcs-test.golang.org/git/odd-tags.git v0.1.1-0.20220223184835-9d863d525bbf$'
    
    go list -m -versions vcs-test.golang.org/git/odd-tags.git
    stdout -count=1 '^.'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 392 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_download_exec_toolchain.txt

    stderr '^go: rsc.io/needall@v0.0.1 requires go >= 1.23; switching to go1.23.9$'
    ! stderr '\(running'
    stdout -count=1 '"Path": "rsc.io/needgo121",'
    stdout -count=1 '"Path": "rsc.io/needgo122",'
    stdout -count=1 '"Path": "rsc.io/needgo123",'
    stdout -count=1 '"Path": "rsc.io/needall",'
    
    # GOTOOLCHAIN=go1.21 should write the errors in the JSON Error fields, not to stderr.
    env GOTOOLCHAIN=go1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top