Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 285 for Directories (0.62 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplierTest.groovy

            when:
            def directories = supplier.get()
    
            then:
            directoriesAsStablePaths(directories) == stablePaths([new File("/usr/lib/jvm/adoptopenjdk-16.jdk").absolutePath])
            directories*.source == ["Maven Toolchains"]
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

                .with { line ->
                    def matcher = line =~ /Watched directory hierarchies: \[(.*)]/
                    String directories = matcher[0][1]
                    return (directories.empty
                        ? []
                        : directories.split(', ').collect { new File(it) }
                    ) as Set
                }
    
            assert watchedHierarchies == (expected as Set)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Uses the “`application`” plugin to produce a command-line application implemented in Java
    * Uses the “`mavenCentral`” dependency repository
    * Uses https://junit.org/junit4/[JUnit 4] for testing
    * Has directories in the conventional locations for source code
    * Contains a sample class and unit test, if there are no existing source or test files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

        }
    
        /**
         * The directories containing the production sources.
         * Must not be null.
         */
        public Set<Path> getSourceFolders() {
            return sourceFolders;
        }
    
        public void setSourceFolders(Set<Path> sourceFolders) {
            this.sourceFolders = sourceFolders;
        }
    
        /**
         * The directories containing the test sources.
         * Must not be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_getters.go

    }
    
    // getPodsDir returns the full path to the directory under which pod
    // directories are created.
    func (kl *Kubelet) getPodsDir() string {
    	return filepath.Join(kl.getRootDir(), config.DefaultKubeletPodsDirName)
    }
    
    // getPluginsDir returns the full path to the directory under which plugin
    // directories are created.  Plugins can use these directories for data that
    // they need to persist.  Plugins should create subdirectories under this named
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[directory_layout]]
    = Gradle-managed Directories
    
    Gradle uses two main directories to perform and manage its work: the <<#dir:gradle_user_home>> and the <<#dir:project_root>>.
    
    image::author-gradle-2.png[]
    
    [[dir:gradle_user_home]]
    == Gradle User Home directory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top