Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for includeTest (0.54 sec)

  1. src/cmd/compile/internal/types2/stdlib_test.go

    			}
    		}
    	}
    
    	return pkg, nil
    }
    
    // pkgFilenames returns the list of package filenames for the given directory.
    func pkgFilenames(dir string, includeTest bool) ([]string, error) {
    	ctxt := build.Default
    	ctxt.CgoEnabled = false
    	pkg, err := ctxt.ImportDir(dir, 0)
    	if err != nil {
    		if _, nogo := err.(*build.NoGoError); nogo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

            List<TestPattern> includePatterns = new ArrayList<TestPattern>(includedTests.size());
            for (String includedTest : includedTests) {
                includePatterns.add(new TestPattern(includedTest));
            }
            return includePatterns;
        }
    
        public boolean matchesTest(String className, String methodName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top