Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 316 for Dirs (0.05 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/KotlinDslTestProjectInitiation.groovy

        String getDefaultBuildFileName() {
            'build.gradle'
        }
    
        String getDefaultBuildKotlinFileName() {
            "build.gradle.kts"
        }
    
        List<TestFile> createDirs(String... dirs) {
            dirs.collect({ name ->
                TestFile tf = file(name)
                tf.mkdirs()
                return tf
            })
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

                    }
                }
            }
            apply plugin: Rules
            """
            expect:
            succeeds ("model", "printSourceDirs")
            normaliseFileSeparators(output).contains("source dirs: [${normaliseFileSeparators(testDirectory.path)}/src/main/myJavaSourceSet]")
        }
    
        def "non-component language source sets are not added to the project source set"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/extension/TestFilesCleanupBuildServiceRootExtension.kt

     */
    interface TestFilesCleanupBuildServiceRootExtension {
        val projectStates: MapProperty<String, TestFilesCleanupProjectState>
    
        /**
         * Key is the path of a task, value is the possible report dirs it generates.
         */
        val taskPathToReports: MapProperty<String, List<File>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 08:53:41 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/doc/main.go

    func findNextPackage(pkg string) (string, bool) {
    	if filepath.IsAbs(pkg) {
    		if dirs.offset == 0 {
    			dirs.offset = -1
    			return pkg, true
    		}
    		return "", false
    	}
    	if pkg == "" || token.IsExported(pkg) { // Upper case symbol cannot be a package name.
    		return "", false
    	}
    	pkg = path.Clean(pkg)
    	pkgSuffix := "/" + pkg
    	for {
    		d, ok := dirs.Next()
    		if !ok {
    			return "", false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/EclipseModelWithFlatRepoCrossVersionSpec.groovy

            def repoDir = projectDir.createDir("repo")
            repoDir.createFile("lib-1.0.jar")
    
            projectDir.file("build.gradle") << """
    apply plugin: "java"
    
    repositories {
    	flatDir dirs: file("${repoDir.toURI()}")
    }
    
    dependencies {
    	${implementationConfiguration} "some:lib:1.0"
    }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/covdata/tool_test.go

    	s.exepath3, s.exedir3 = buildProg(t, "prog1", dir, "atomic", flags)
    
    	// Reuse unit test executable as tool to be tested.
    	s.tool = testcovdata(t)
    
    	// Create a few coverage output dirs.
    	for i := 0; i < 4; i++ {
    		d := filepath.Join(dir, fmt.Sprintf("covdata%d", i))
    		s.outdirs[i] = d
    		if err := os.Mkdir(d, 0777); err != nil {
    			t.Fatalf("can't create outdir %s: %v", d, err)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/InPlaceClasspathBuilder.java

            }
        }
    
        @NonNullApi
        private static class ZipEntryBuilder implements EntryBuilder {
            private final ZipArchiveOutputStream outputStream;
            private final Set<String> dirs = new HashSet<>();
    
            public ZipEntryBuilder(ZipArchiveOutputStream outputStream) {
                this.outputStream = outputStream;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

            }
        }
    }
    // end::header-authenticated-maven-repo[]
    
    // tag::flat-dir[]
    // tag::flat-dir-multi[]
    repositories {
        flatDir {
            dirs 'lib'
        }
    // end::flat-dir[]
        flatDir {
            dirs 'lib1', 'lib2'
        }
    // tag::flat-dir[]
    }
    // end::flat-dir[]
    // end::flat-dir-multi[]
    
    // tag::ivy-repo[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. pkg/volume/util/nested_volumes_test.go

    			return
    		}
    
    		dirs, err := getNestedMountpoints(test.volname, rootdir, test.pod)
    		if test.err {
    			if err == nil {
    				t.Errorf("%v: expected error, got nil", test.name)
    			}
    			continue
    		} else {
    			if err != nil {
    				t.Errorf("%v: expected no error, got %v", test.name, err)
    				continue
    			}
    		}
    		actual := sets.New[string](dirs...)
    		if !test.expected.Equal(actual) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

            }
        }
    }
    // end::header-authenticated-maven-repo[]
    
    // tag::flat-dir[]
    // tag::flat-dir-multi[]
    repositories {
        flatDir {
            dirs("lib")
        }
    // end::flat-dir[]
        flatDir {
            dirs("lib1", "lib2")
        }
    // tag::flat-dir[]
    }
    // end::flat-dir[]
    // end::flat-dir-multi[]
    
    // tag::ivy-repo[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top