Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for outputFile (0.06 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

            cmd = "test.sh $INPUT_FILE $OUTPUT_FILE";
            params.clear();
            list = extractor.parseCommand(cmd, params);
            assertEquals(3, list.size());
            assertEquals("test.sh", list.get(0));
            assertEquals("$INPUT_FILE", list.get(1));
            assertEquals("$OUTPUT_FILE", list.get(2));
    
            cmd = " test.sh $INPUT_FILE $OUTPUT_FILE ";
            params.clear();
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload_test.go

    	output := out.String()
    	return output, err
    }
    
    func checkOutputFiles(t *testing.T, testdir string, checkFiles map[string]bool) {
    	t.Helper()
    
    	outputFiles, err := os.ReadDir(testdir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for _, f := range outputFiles {
    		checkGolden, ok := checkFiles[f.Name()]
    		if !ok {
    			if checkGolden, ok := checkFiles[f.Name()[:len(f.Name())-len(goldenSuffix)]]; !(checkGolden && ok) {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 20:04:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/squash_testlogs.py

    # limitations under the License.
    # ==============================================================================
    """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: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top