Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 711 for Directories (0.14 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         *
         * This should be preferred to {@link #getTestResourceDirs()} as it will include late changes to default directories.
         *
         * @return lazily configurable collection of test resource directories
         * @since 7.4
         */
        public ConfigurableFileCollection getTestResources() {
            return testResources;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[gradle_directories]]
    = Gradle Directories
    
    Gradle uses two main directories to perform and manage its work: the <<#gradle_user_home>> and the <<#project_root>>.
    
    image::author-gradle-2.png[]
    
    [[gradle_user_home]]
    == Gradle User Home directory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/HierarchicalEclipseProject.java

         * @since 1.0-milestone-3
         */
        DomainObjectSet<? extends EclipseProjectDependency> getProjectDependencies();
    
        /**
         * Returns the source directories for this project.
         *
         * @return The source directories. Returns an empty set if the project has no source directories.
         * @since 1.0-milestone-3
         */
        DomainObjectSet<? extends EclipseSourceDirectory> getSourceDirectories();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppLibrary.java

    /**
     * Configuration for a C++ library, defining the source files and header directories that make up the library plus other settings.
     *
     * <p>An instance of this type is added as a project extension by the C++ library plugin.</p>
     *
     * @since 4.2
     */
    public interface CppLibrary extends ProductionCppComponent {
        /**
         * Defines the public header file directories of this library.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            where:
            [api, pathSensitivity] << [Api.values(), [PathSensitivity.RELATIVE, PathSensitivity.ABSOLUTE, PathSensitivity.NAME_ONLY]].combinations()
        }
    
        def "input directories ignore empty directories by default (#api)"() {
            buildFile """
                @CacheableTask
                abstract class TaskWithInputs extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/inputFiles/kotlin/build.gradle.kts

    }
    // end::set-input-files[]
    
    // tag::add-input-files[]
    tasks.named<JavaCompile>("compile") {
        // Add some source directories use String paths
        source("src/main/java", "src/main/groovy")
    
        // Add a source directory using a File object
        source(file("../shared/java"))
    
        // Add some source directories using a closure
        setSource({ file("src/test/").listFiles() })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

        - $jarPath (artifactType = jar)
    
    Secondary Variants (*)
    
        --------------------------------------------------
        Secondary Variant classes
        --------------------------------------------------
        Directories containing compiled class files for main.
    
        Attributes
            - org.gradle.category            = library
            - org.gradle.dependency.bundling = external
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

            root.testResourceDirectories.size() == 1
            root.testResourceDirectories[0].directory == file('testResources')
        }
    
        def "accepts source directories of custom source sets as source directories"() {
    
            buildFile.text = '''
    apply plugin: 'idea'
    apply plugin: 'java'
    
    sourceSets {
        main {
            java { srcDirs = ['mainSources'] }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/internal/goroot/gc.go

    	default:
    		panic("unknown compiler " + compiler)
    	}
    }
    
    // gccgoSearch holds the gccgo search directories.
    type gccgoDirs struct {
    	once sync.Once
    	dirs []string
    }
    
    // gccgoSearch is used to check whether a gccgo package exists in the
    // standard library.
    var gccgoSearch gccgoDirs
    
    // init finds the gccgo search directories. If this fails it leaves dirs == nil.
    func (gd *gccgoDirs) init() {
    	gccgo := os.Getenv("GCCGO")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceIntegrationTest.groovy

        private static final MarkerFileType NOT_USED_WITHIN_HALF_MAX_DAYS_FOR_SNAPSHOT_DISTS = MarkerFileType.notUsedWithinDays(HALF_MAX_AGE_IN_DAYS_FOR_SNAPSHOT_DISTS)
    
        def "cleans up unused version-specific cache directories and corresponding #type distributions"() {
            given:
            requireOwnGradleUserHomeDir() // because we delete caches and distributions
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 15:48:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top