Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 281 for testDir (0.32 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiprojectIntegrationTest.groovy

                allprojects {
                    def destDir = buildDir
                    task test {
                        doLast {
                            destDir.mkdirs()
                            new File(destDir, 'test.txt') << 'content'
                        }
                    }
                    gradle.taskGraph.whenReady {
                        destDir.mkdirs()
                        new File(destDir, 'whenReady.txt') << 'content'
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_go_file.txt

    [symlink] rm test_sym.go
    
    # argument has .go suffix, is a directory and exists
    mkdir test_dir.go
    ! go get test_dir.go
    stderr 'go: test_dir.go: arguments must be package or module paths'
    rm test_dir.go
    
    # argument has .go suffix, is a directory and exists in sub-directory
    mkdir test/test_dir.go
    ! go get test/test_dir.go
    ! stderr 'arguments must be package or module paths'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. src/strconv/atoi_test.go

    			test := &parseInt32Tests[i]
    			out, err := Atoi(test.in)
    			var testErr error
    			if test.err != nil {
    				testErr = &NumError{"Atoi", test.in, test.err.(*NumError).Err}
    			}
    			if int(test.out) != out || !reflect.DeepEqual(testErr, err) {
    				t.Errorf("Atoi(%q) = %v, %v want %v, %v",
    					test.in, out, err, test.out, testErr)
    			}
    		}
    	case 64:
    		for i := range parseInt64Tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/XslTransformer.java

            File dest = new File(args[2]);
            String destDir = "";
            if (args.length > 3) {
                destDir = args[3];
            }
    
            System.out.format("=> stylesheet %s%n", stylesheet);
            System.out.format("=> source %s%n", source);
            System.out.format("=> dest %s%n", dest);
            System.out.format("=> destDir %s%n", destDir);
    
            TransformerFactory factory = TransformerFactory.newInstance();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_overlay.txt

    [short] skip
    
    cd $WORK/gopath/src/foo
    go test -list=. -overlay=overlay.json .
    stdout 'TestBar'
    
    -- go.mod --
    module test.pkg
    -- foo/foo_test.go --
    package foo
    
    import "testing"
    
    func TestFoo(t *testing.T) { }
    -- tmp/bar_test.go --
    package foo
    
    import "testing"
    
    func TestBar(t *testing.T) {
    	t.Fatal("dummy failure")
    }
    -- foo/overlay.json --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 31 16:39:16 UTC 2021
    - 393 bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/GenerateLanguageAnnotations.kt

        @get:OutputDirectory
        abstract val destDir: DirectoryProperty
    
        @TaskAction
        fun generateAnnotations() {
            val queue = workerExecutor.classLoaderIsolation {
                classpath = ******@****.***ath
            }
            queue.submit(AnnotationGeneratorWorkAction::class) {
                packageName = ******@****.***eName
                destDir = ******@****.***r
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 07 08:27:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/MonolithicNativeProjectGeneratorTask.groovy

                    generateWithTemplate(destDir, "prebuilt/lib${prebuiltLib}/include/header${sourceIdx}.h", "native-monolithic/src/prebuilt.h", fileArgs)
                }
            }
        }
    
        void generateCommonLibrarySource() {
            rootProject.sourceFiles.times { sourceIdx ->
                def fileArgs = [ sourceIdx: sourceIdx ]
                def destination = destDir
                if (!templateArgs.overlapWithOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/runlit.site.cfg.py

    config.mlir_tf_tools_dirs = [
        os.path.join(real_test_srcdir, os.environ['TEST_WORKSPACE'], s)
        for s in mlir_tf_tools_dirs
    ]
    test_dir = os.environ['TEST_TARGET']
    test_dir = test_dir.strip('/').rsplit(':', 1)[0]
    config.mlir_test_dir = os.path.join(real_test_srcdir,
                                        os.environ['TEST_WORKSPACE'], test_dir)
    
    if platform.system() == 'Windows':
      # Configure this to work with msys2, TF's preferred windows bash.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/resources/org/gradle/api/tasks/ide/eclipse/expectedClasspathFile.txt

      <classpathentry kind="src" path="src/main/resources"/>
      <classpathentry kind="output" path="bin"/>
      <classpathentry kind="src" path="src/test/java" output="testbin"/>
      <classpathentry kind="src" path="src/test/resources" output="testbin"/>
      <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
      <classpathentry kind="src" path="/test" combineaccessrules="false"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 05 04:16:54 UTC 2011
    - 607 bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/AbstractProjectGeneratorTask.groovy

                def project = projects.empty ? new TestProject("root", this) : new TestProject("project${projects.size()}", this, projects.size())
                projects << project
            }
    
            ant.delete(dir: destDir)
            destDir.mkdirs()
    
            gradlebuild.performance.generator.MavenRepository repo = generateDependencyRepository()
            generateRootProject()
            subprojects.each { subproject ->
                if (repo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.5K bytes
    - Viewed (0)
Back to top