Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for testLogs (0.21 sec)

  1. pkg/kubelet/logs/container_log_manager_test.go

    	logs, err := os.ReadDir(dir)
    	require.NoError(t, err)
    	assert.Len(t, logs, 5)
    	assert.Equal(t, testLogs[0], logs[0].Name())
    	assert.Equal(t, testLogs[1]+"."+timestamp, logs[1].Name())
    	assert.Equal(t, testLogs[4]+compressSuffix, logs[2].Name())
    	assert.Equal(t, testLogs[2]+"."+timestamp, logs[3].Name())
    	assert.Equal(t, testLogs[3], logs[4].Name())
    }
    
    func TestClean(t *testing.T) {
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.usertools/squash_testlogs.py

    """Merge all JUnit test.xml files in one directory into one.
    
    Usage: squash_testlogs.py START_DIRECTORY OUTPUT_FILE
    
    Example: squash_testlogs.py /tf/pkg/testlogs /tf/pkg/merged.xml
    
    Recursively find all the JUnit test.xml files in one directory, and merge any
    of them that contain failures into one file. The TensorFlow DevInfra team
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/resources/test_ops.cc

    Feng Liu <******@****.***> 1602113375 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 07 23:35:35 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/vet.json

    {"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"}
    {"Action":"output","Test":"TestTags/testtag","Output":"=== RUN   TestTags/testtag\n"}
    {"Action":"output","Test":"TestTags/testtag","Output":"=== PAUSE TestTags/testtag\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/vet.test

    === PAUSE TestVet
    === RUN   TestVetAsm
    === PAUSE TestVetAsm
    === RUN   TestVetDirs
    === PAUSE TestVetDirs
    === RUN   TestTags
    === PAUSE TestTags
    === RUN   TestVetVerbose
    === PAUSE TestVetVerbose
    === CONT  TestVet
    === CONT  TestTags
    === CONT  TestVetVerbose
    === RUN   TestTags/testtag
    === PAUSE TestTags/testtag
    === CONT  TestVetDirs
    === CONT  TestVetAsm
    === RUN   TestVet/0
    === PAUSE TestVet/0
    === RUN   TestVet/1
    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/internal/test2json/testdata/smiley.test

    === RUN   Test☺☹
    === PAUSE Test☺☹
    === RUN   Test☺☹Asm
    === PAUSE Test☺☹Asm
    === RUN   Test☺☹Dirs
    === PAUSE Test☺☹Dirs
    === RUN   TestTags
    === PAUSE TestTags
    === RUN   Test☺☹Verbose
    === PAUSE Test☺☹Verbose
    === CONT  Test☺☹
    === CONT  TestTags
    === CONT  Test☺☹Verbose
    === RUN   TestTags/testtag
    === PAUSE TestTags/testtag
    === CONT  Test☺☹Dirs
    === CONT  Test☺☹Asm
    === RUN   Test☺☹/0
    === PAUSE Test☺☹/0
    === RUN   Test☺☹/1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 01 16:13:47 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/testdata/smiley.json

    {"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"}
    {"Action":"output","Test":"TestTags/testtag","Output":"=== RUN   TestTags/testtag\n"}
    {"Action":"output","Test":"TestTags/testtag","Output":"=== PAUSE TestTags/testtag\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_chatty_parallel_success_run.txt

    	close(afterSubTest)
    	<-afterSecondLog // Delay the "PASS: TestInterruptor" line until after "CONT  TestLog".
    }
    
    func TestLog(t *testing.T) {
    	t.Parallel()
    
    	t.Logf("this is the first TestLog log")
    	close(afterFirstLog)
    	<-afterSubTest
    	t.Logf("this is the second TestLog log")
    	close(afterSecondLog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. src/testing/internal/testdeps/deps.go

    func (TestDeps) ImportPath() string {
    	return ImportPath
    }
    
    // testLog implements testlog.Interface, logging actions by package os.
    type testLog struct {
    	mu  sync.Mutex
    	w   *bufio.Writer
    	set bool
    }
    
    func (l *testLog) Getenv(key string) {
    	l.add("getenv", key)
    }
    
    func (l *testLog) Open(name string) {
    	l.add("open", name)
    }
    
    func (l *testLog) Stat(name string) {
    	l.add("stat", name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache_test.go

    		podsToAssume: []*v1.Pod{testPods[0]},
    		podsToAdd:    []*v1.Pod{testPods[0]},
    		podsToUpdate: []*v1.Pod{testPods[0], testPods[1], testPods[0]},
    		wNodeInfo: []*framework.NodeInfo{newNodeInfo(
    			&framework.Resource{
    				MilliCPU: 200,
    				Memory:   1024,
    			},
    			&framework.Resource{
    				MilliCPU: 200,
    				Memory:   1024,
    			},
    			[]*v1.Pod{testPods[1]},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top