Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,904 for FILE (0.05 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

            List<File> sortedFiles = Lists.newArrayList(files);
            Collections.sort(sortedFiles, FILE_SEGMENT_COMPARATOR);
            List<File> result = Lists.newArrayListWithExpectedSize(sortedFiles.size());
    
            File currentRoot = null;
            for (File file : sortedFiles) {
                if (currentRoot == null || !doesPathStartWith(file.getPath(), currentRoot.getPath())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionBackedFileTree.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file;
    
    import org.gradle.api.file.FileTree;
    import org.gradle.api.file.FileVisitor;
    import org.gradle.api.internal.file.collections.DirectoryFileTree;
    import org.gradle.api.internal.file.collections.FileSystemMirroringFileTree;
    import org.gradle.api.internal.file.collections.FileTreeAdapter;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

            return wrapperJar.getParentFile().getParentFile().getParentFile();
        }
    
        private static File wrapperProperties(File wrapperJar) {
            return new File(wrapperJar.getParent(), wrapperJar.getName().replaceFirst("\\.jar$", ".properties"));
        }
    
        private static File wrapperJar() {
            URI location;
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystemTest.groovy

    import org.gradle.api.internal.file.TestFiles
    import org.gradle.internal.file.FileException
    import org.gradle.internal.file.FileMetadataAccessor
    import org.gradle.internal.file.FileModeAccessor
    import org.gradle.internal.file.FileModeMutator
    import org.gradle.internal.file.StatStatistics
    import org.gradle.internal.nativeintegration.filesystem.Symlink
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInKotlinIntegrationTest.groovy

            fromString()      | "ProcessGroovyMethods.execute(command, listOf(\"FOOBAR=foobar\"), file(\"$pwd\"))"  | pwd               | "foobar"
            fromStringArray() | "ProcessGroovyMethods.execute(command, listOf(\"FOOBAR=foobar\"), file(\"$pwd\"))"  | pwd               | "foobar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/IoTestCase.java

              + "[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
    
      private File testDir;
      private File tempDir;
    
      private final Set<File> filesToDelete = new HashSet<>();
    
      @Override
      protected void tearDown() {
        for (File file : filesToDelete) {
          if (file.exists()) {
            delete(file);
          }
        }
        filesToDelete.clear();
      }
    
      private File getTestDir() throws IOException {
        if (testDir != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            target.file( '.git').assertIsDir()
            target.file( 'submodule/foo.txt').text == "hello from submodule"
        }
    
        def 'reset a cloned repository with dirty working dir'() {
            given:
            def target = tmpDir.file('versionDir')
            gitVcs.populate(target, repoHead, repoSpec)
    
            def removed = target.file("source.txt")
            removed.delete()
            def changed = target.file("dir/another.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

        /**
         * Views the location of this file as a {@link File}.
         */
        Provider<File> getAsFile();
    
        /**
         * Sets the location of this file, using a {@link File} instance. {@link File} instances with relative paths are resolved relative to the project directory of the project
         * that owns this property instance.
         */
        void set(@Nullable File file);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

                println("exists = " + new File(projectDir, "file2.txt").exists())
                println("exists = " + new File(projectDir, "file3.txt").exists())
            """)
    
            when:
            file("gradle.properties") << """
                $IGNORE_FS_CHECKS_PROPERTY=file1.txt;file2.txt
            """
            configurationCacheRun()
    
            then:
            problems.assertResultHasProblems(result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/GroovyClass.groovy

    /**
     * An immutable classpath.
     */
    public class GroovyClass implements Serializable {
        private final List<File> files;
    
        public GroovyClass(Iterable<File> files) {
            this.files = new ArrayList<File>();
            for (File file : files) {
                this.files.add(file);
            }
        }
    
        public GroovyClass(File... files) {
            this(Arrays.asList(files));
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top