Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hasOutputs (0.24 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

                if (dataFile != null) {
                    dataFile.close();
                }
            }
    
            public boolean hasOutput(long classId, TestOutputEvent.Destination destination) {
                return hasOutput(classId, 0, destination);
            }
    
            public boolean hasOutput(long classId, long testId, TestOutputEvent.Destination destination) {
                if (dataFile == null) {
                    return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/go/doc/example.go

    				doc = f.Doc.Text()
    			}
    			output, unordered, hasOutput := exampleOutput(f.Body, file.Comments)
    			flist = append(flist, &Example{
    				Name:        name[len("Example"):],
    				Doc:         doc,
    				Code:        f.Body,
    				Play:        playExample(file, f),
    				Comments:    file.Comments,
    				Output:      output,
    				Unordered:   unordered,
    				EmptyOutput: output == "" && hasOutput,
    				Order:       len(flist),
    			})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

                this.classId = classId;
                this.testId = testId;
            }
    
            @Override
            public boolean has(TestOutputEvent.Destination destination) {
                return testResultsProvider.hasOutput(classId, testId, destination);
            }
    
            @Override
            public void write(TestOutputEvent.Destination destination, Writer writer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top