Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,051 for cont (0.38 sec)

  1. src/cmd/internal/test2json/testdata/smiley.test

    === CONT  Test☺☹/1
    === CONT  Test☺☹Dirs/testingpkg
    === CONT  Test☺☹Dirs/buildtag
    === CONT  Test☺☹Dirs/divergent
    === CONT  Test☺☹Dirs/incomplete
    === CONT  Test☺☹Dirs/cgo
    --- PASS: Test☺☹ (0.39s)
        --- PASS: Test☺☹/5 (0.07s)
            vet_test.go:114: φιλεσ: ["testdata/copylock_func.go" "testdata/rangeloop.go"]
        --- PASS: Test☺☹/3 (0.07s)
            vet_test.go:114: φιλεσ: ["testdata/composite.go" "testdata/nilfunc.go"]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  2. pkg/kubelet/server/stats/summary_sys_containers.go

    	}
    	for sys, cont := range systemContainers {
    		// skip if cgroup name is undefined (not all system containers are required)
    		if cont.name == "" {
    			continue
    		}
    		s, _, err := sp.provider.GetCgroupStats(cont.name, cont.forceStatsUpdate)
    		if err != nil {
    			klog.ErrorS(err, "Failed to get system container stats", "containerName", cont.name)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_chatty_parallel_success.txt

    # multiple parallel outputs have the appropriate test name lines between them.
    go test -parallel 3 chatty_parallel_test.go -v
    stdout -count=2 '^=== (CONT|NAME)  TestChattyParallel/sub-0\n    chatty_parallel_test.go:32: this is sub-0$'
    stdout -count=2 '^=== (CONT|NAME)  TestChattyParallel/sub-1\n    chatty_parallel_test.go:32: this is sub-1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_chatty_fail.txt

    # Run chatty tests. Assert on CONT lines.
    ! go test chatty_test.go -v
    
    # Sanity check that output occurs.
    stdout -count=2 'this is sub-0'
    stdout -count=2 'this is sub-1'
    stdout -count=2 'this is sub-2'
    stdout -count=1 'error from sub-0'
    stdout -count=1 'error from sub-1'
    stdout -count=1 'error from sub-2'
    
    # Non-parallel tests should not print CONT.
    ! stdout CONT
    
    -- chatty_test.go --
    package chatty_test
    
    import (
    	"testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 21 18:28:05 UTC 2020
    - 719 bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/vet.test

    === CONT  TestVet/1
    === CONT  TestVetDirs/testingpkg
    === CONT  TestVetDirs/buildtag
    === CONT  TestVetDirs/divergent
    === CONT  TestVetDirs/incomplete
    === CONT  TestVetDirs/cgo
    --- PASS: TestVet (0.39s)
        --- PASS: TestVet/5 (0.07s)
            vet_test.go:114: files: ["testdata/copylock_func.go" "testdata/rangeloop.go"]
        --- PASS: TestVet/3 (0.07s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_chatty_success.txt

    # Run chatty tests. Assert on CONT lines.
    go test chatty_test.go -v
    
    # Non-parallel tests should not print CONT.
    ! stdout CONT
    
    # The assertion is condensed into one line so that it precisely matches output,
    # rather than skipping lines and allow rogue CONT lines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 21 18:28:05 UTC 2020
    - 937 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_benchmark_chatty_success.txt

    # Run chatty tests. Assert on CONT lines.
    go test chatty_test.go -v -bench . chatty_bench
    
    # Sanity check that output happens. We don't provide -count because the amount
    # of output is variable.
    stdout 'this is sub-0'
    stdout 'this is sub-1'
    stdout 'this is sub-2'
    
    # Benchmarks should not print CONT.
    ! stdout CONT
    
    -- chatty_test.go --
    package chatty_bench
    
    import (
    	"testing"
    	"fmt"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 21 18:28:05 UTC 2020
    - 629 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_chatty_parallel_fail.txt

    ! go test -parallel 3 chatty_parallel_test.go -v
    
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-0'
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-1'
    stdout -count=1 '^=== CONT  TestChattyParallel/sub-2'
    
    stdout -count=1 '^=== (CONT|NAME)  TestChattyParallel/sub-0\n    chatty_parallel_test.go:38: error from sub-0$'
    stdout -count=1 '^=== (CONT|NAME)  TestChattyParallel/sub-1\n    chatty_parallel_test.go:38: error from sub-1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_chatty_parallel_success_run.txt

    # Run parallel chatty tests. Assert on CONT or NAME lines. This test makes sure that
    # multiple parallel outputs have the appropriate CONT lines between them.
    go test -parallel 3 chatty_parallel -v
    
    stdout '=== RUN   TestInterruptor/interruption\n=== (CONT|NAME)  TestLog\n    chatty_parallel_test.go:28: this is the second TestLog log\n--- PASS: Test(Log|Interruptor) \([0-9.]{4}s\)'
    
    -- go.mod --
    module chatty_parallel
    
    go 1.18
    -- chatty_parallel_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_benchmark_chatty_fail.txt

    # Run chatty tests. Assert on CONT lines.
    ! go test chatty_test.go -v -bench . chatty_bench
    
    # Sanity check that output occurs.
    stdout -count=2 'this is sub-0'
    stdout -count=2 'this is sub-1'
    stdout -count=2 'this is sub-2'
    stdout -count=1 'error from sub-0'
    stdout -count=1 'error from sub-1'
    stdout -count=1 'error from sub-2'
    
    # Benchmarks should not print CONT.
    ! stdout CONT
    
    -- chatty_test.go --
    package chatty_bench
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 21 18:28:05 UTC 2020
    - 739 bytes
    - Viewed (0)
Back to top