Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,433 for cont (0.04 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. src/cmd/internal/test2json/testdata/vet.json

    {"Action":"pause","Test":"TestVetVerbose"}
    {"Action":"cont","Test":"TestVet"}
    {"Action":"output","Test":"TestVet","Output":"=== CONT  TestVet\n"}
    {"Action":"cont","Test":"TestTags"}
    {"Action":"output","Test":"TestTags","Output":"=== CONT  TestTags\n"}
    {"Action":"cont","Test":"TestVetVerbose"}
    {"Action":"output","Test":"TestVetVerbose","Output":"=== CONT  TestVetVerbose\n"}
    {"Action":"run","Test":"TestTags/testtag"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/cm/container_manager_linux.go

    	hasEnsureStateFuncs := false
    	for _, cont := range cm.systemContainers {
    		if cont.ensureStateFunc != nil {
    			hasEnsureStateFuncs = true
    			break
    		}
    	}
    	if hasEnsureStateFuncs {
    		// Run ensure state functions every minute.
    		go wait.Until(func() {
    			for _, cont := range cm.systemContainers {
    				if cont.ensureStateFunc != nil {
    					if err := cont.ensureStateFunc(cont.manager); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/testdata/smiley.json

    {"Action":"pause","Test":"Test☺☹Verbose"}
    {"Action":"cont","Test":"Test☺☹"}
    {"Action":"output","Test":"Test☺☹","Output":"=== CONT  Test☺☹\n"}
    {"Action":"cont","Test":"TestTags"}
    {"Action":"output","Test":"TestTags","Output":"=== CONT  TestTags\n"}
    {"Action":"cont","Test":"Test☺☹Verbose"}
    {"Action":"output","Test":"Test☺☹Verbose","Output":"=== CONT  Test☺☹Verbose\n"}
    {"Action":"run","Test":"TestTags/testtag"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.4K bytes
    - Viewed (0)
Back to top