Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for subfolder (0.24 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleNamesCrossVersionSpec.groovy

                includeBuild('subfolder1/module-b') { name = 'module-b-1' }
                includeBuild('subfolder2/module-b') { name = 'module-b-2' }
            """
            file('subfolder1/module-b').mkdirs()
            file('subfolder2/module-b').mkdirs()
    
            when:
            def allProjects = withConnection {c -> c.action(new IdeaProjectUtil.GetAllIdeaProjectsAction()).run() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

            // The actual user home dir will be a subfolder using the name of the distribution.
            gradleUserHomeDir = intTestHomeDir
            // The user home dir is not wiped out by clean. Move the daemon working space underneath the build dir so they don't pile up on CI.
            // The actual daemon registry dir will be a subfolder using the name of the distribution.
            daemonRegistry = repoRoot().dir("build/daemon")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoTaskExtensionSpec.groovy

            given:
            agent.supportsJmx() >> true
            agent.supportsInclNoLocationClasses() >> true
            agent.jar >> temporaryFolder.file('workingDir/subfolder/fakeagent.jar')
            task.getWorkingDir() >> temporaryFolder.file("workingDir")
    
            extension.with {
                destinationFile = temporaryFolder.file('build/jacoco/fake.exec')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/antlr_plugin.adoc

    `src/main/antlr`::
    Production ANTLR grammar files. If the ANTLR grammar is organized in packages, the structure in the antlr folder should reflect the package structure. This ensures that the generated sources end up in the correct target subfolder.
    
    `src/test/antlr`::
    Test ANTLR grammar files.
    
    `src/__sourceSet__/antlr`::
    ANTLR grammar files for the given source set.
    
    
    [[sec:antlr_dependency_management]]
    == Dependency management
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/FolderBasedTest.kt

    
    fun File.withFolders(folders: FoldersDslExpression) =
        apply { FoldersDsl(this).folders() }
    
    
    class FoldersDsl(val root: File) {
    
        operator fun String.invoke(subFolders: FoldersDslExpression): File =
            (+this).withFolders(subFolders)
    
        operator fun String.unaryPlus(): File =
            canonicalFile(this).apply { mkdirs() }
    
        fun withFile(fileName: String, content: String = ""): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/envoyfilter.yaml

                subFilter:
                  name: envoy.filters.http.router
          proxy:
            proxyVersion: ^1\.19.*
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.http_connection_manager
                subFilter:
                  name: envoy.filters.http.router
          proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r27/ToolingApiEclipseLinkedResourcesCrossVersionSpec.groovy

            def projectBsrcFolder = file('subprojectB/src')
            def srcRootFolder1 = file('src-root')
            def srcRootFolder2 = file('src')
            def srcFolder = file('subprojectA/src')
            projectBsrcSiblingFolder.mkdirs()
            projectBsrcFolder.mkdirs()
            srcFolder.mkdirs()
            srcRootFolder1.mkdirs()
            srcRootFolder2.mkdirs()
            file('subprojectA/build.gradle').text = """
    sourceSets {
        main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/jvm/JavaModuleDetector.java

        public static boolean isModuleSource(boolean inferModulePath, Iterable<File> sourcesRoots) {
            if (!inferModulePath) {
                return false;
            }
            for (File srcFolder : sourcesRoots) {
                if (isModuleSourceFolder(srcFolder)) {
                    return true;
                }
            }
            return false;
        }
    
        private static boolean isModuleSourceFolder(File folder) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            new Output("bin")]
        final projectDependency = [customEntries[0]]
        final jreContainer = [customEntries[1]]
        final outputLocation = [customEntries[6]]
        final srcFolder = [customEntries[3]]
    
        final allDependencies = [customEntries[0], customEntries[2], customEntries[4]]
    
        private final Classpath classpath = new Classpath(new XmlTransformer(), fileReferenceFactory)
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    == Run the application
    
    Look inside the `build` folder and you will notice the appearance of an `exe` folder.
    By convention, Gradle will place all applications in subfolders named according to the component name.
    In this case, you will find your assembled executable in `build/exe/main/debug` and it will be called `${subprojectName.raw}` (or `${subprojectName.raw}.exe` under Windows).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top