Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 779 for Directories (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/test/groovy/org/gradle/cache/internal/VersionSpecificCacheDirectoryScannerTest.groovy

        def "lists version-specific cache directories"() {
            given:
            cacheBaseDir.createDir("_foo")
            cacheBaseDir.createDir("1.2.3-rc-1")
            cacheBaseDir.createDir("0.9-20101220110000+1100")
            cacheBaseDir.createDir("2.3.4")
            cacheBaseDir.createDir("99_BAR")
            cacheBaseDir.createDir("ZZZZ")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 05 23:07:23 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

     * </pre>
     *
     * Find more information in {@link #dir(Object)} and {@link #getDirs()}
     */
    public interface SourceSetOutput extends FileCollection {
    
        /**
         * Returns the directories containing compiled classes.
         *
         * @return The classes directories. This value may safely be cast to a {@link org.gradle.api.file.ConfigurableFileCollection}.
         * @since 4.0
         */
        FileCollection getClassesDirs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/text8.txt

     directives (replace and exclude) that would cause it to be interpreted
     differently than if it were the main module. The module must not require
     a higher version of itself.
    
     - Vendor directories are not used in any module. (Vendor directories are not
     included in the module zip files downloaded by 'go install'.)
    
    If the arguments don't have version suffixes, "go install" may run in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. pkg/volume/util/subpath/subpath_windows.go

    	return uintptr(fd), err
    }
    
    // Lock all directories in subPath and check they're not symlinks.
    func (sp *subpath) PrepareSafeSubpath(subPath Subpath) (newHostPath string, cleanupAction func(), err error) {
    	handles, err := lockAndCheckSubPath(subPath.VolumePath, subPath.Path)
    
    	// Unlock the directories when the container starts
    	cleanupAction = func() {
    		unlockPath(handles)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top