Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for testWalk (0.22 sec)

  1. src/path/filepath/path_test.go

    	}
    
    	return cdir
    }
    
    func TestWalk(t *testing.T) {
    	walk := func(root string, fn fs.WalkDirFunc) error {
    		return filepath.Walk(root, func(path string, info fs.FileInfo, err error) error {
    			return fn(path, fs.FileInfoToDirEntry(info), err)
    		})
    	}
    	testWalk(t, walk, 1)
    }
    
    func TestWalkDir(t *testing.T) {
    	testWalk(t, filepath.WalkDir, 2)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys_test.go

    			t.Errorf("IsDirWithGoFiles(%q): got %v, %v; want nil error", tc.dir, got, gotErr)
    		}
    		if got != tc.want {
    			t.Errorf("IsDirWithGoFiles(%q) = %v; want %v", tc.dir, got, tc.want)
    		}
    	}
    }
    
    func TestWalk(t *testing.T) {
    	// The root of the walk must be a name with an actual basename, not just ".".
    	// Walk uses Lstat to obtain the name of the root, and Lstat on platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestTask.groovy

     * limitations under the License.
     */
    
    package org.gradle.util
    
    import org.gradle.api.internal.ConventionTask
    import org.gradle.api.tasks.Internal
    
    class TestTask extends ConventionTask  {
        @Internal
        TestTask self
        @Internal
        String customProp
        @Internal
        List list1
        @Internal
        List list2
        @Internal
        Map map1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 922 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: testCodeCoverageReport
        expected-output-file: testTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: testCodeCoverageReport
        expected-output-file: testTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: testAggregateTestReport
        expected-output-file: testTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 180 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: testAggregateTestReport
        expected-output-file: testTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 180 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/spring-boot-web-application/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: test
        expected-output-file: testTask.out
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 266 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/spring-boot-web-application/tests/testTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 240 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/tests/testTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 913 bytes
    - Viewed (0)
Back to top