Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,904 for FILE (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultFileOperations.java

    import org.gradle.api.file.RegularFile;
    import org.gradle.api.file.SyncSpec;
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.api.internal.file.archive.DecompressionCoordinator;
    import org.gradle.api.internal.file.archive.TarFileTree;
    import org.gradle.api.internal.file.archive.ZipFileTree;
    import org.gradle.api.internal.file.collections.DirectoryFileTreeFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/os/file_plan9.go

    // name. The returned value will be nil if fd is not a valid file
    // descriptor.
    func NewFile(fd uintptr, name string) *File {
    	fdi := int(fd)
    	if fdi < 0 {
    		return nil
    	}
    	f := &File{&file{fd: fdi, name: name}}
    	runtime.SetFinalizer(f.file, (*file).close)
    	return f
    }
    
    // Auxiliary information if the File describes a directory
    type dirInfo struct {
    	mu   sync.Mutex
    	buf  [syscall.STATMAX]byte // buffer for directory I/O
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/Files.java

       *
       * <p><b>Warning:</b> If {@code to} represents an existing file, that file will be overwritten
       * with the contents of {@code from}. If {@code to} and {@code from} refer to the <i>same</i>
       * file, the contents of that file will be deleted.
       *
       * <p><b>{@link java.nio.file.Path} equivalent:</b> {@link
       * java.nio.file.Files#copy(java.nio.file.Path, java.nio.file.Path, java.nio.file.CopyOption...)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            links.each {
                new File(getTestDirectory(), "fake-bin/$it").delete()
            }
        }
    
        def linkToBinary(String command, TestFile binDir) {
            binDir.mkdirs()
            def binary = new File("/usr/bin/$command")
            if (!binary.exists()) {
                binary = new File("/bin/$command")
            }
            assert binary.exists()
            binDir.file(command).createLink(binary)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/request-files.md

    * `content_type`: A `str` with the content type (MIME type / media type) (e.g. `image/jpeg`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

                    @Override
                    File getFile() {
                        return file
                    }
    
                    @Override
                    HashCode getContentHash() {
                        return getContentHash(file)
                    }
                }
            }
        }
    
        private HashCode getContentHash(File file) {
            fileSystemAccess.invalidate([file.absolutePath])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        lhs = PropertyAccess [indexes: 0..1, line/column: 1/1..1/2, file: test] (
                            name = a
                        )
                        rhs = IntLiteral [indexes: 4..5, line/column: 1/5..1/6, file: test] (1)
                    )
                    Assignment [indexes: 6..16, line/column: 2/1..2/11, file: test] (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

            when:
            inputDir.file('.gitignore').text = "some ignored file"
            inputDir.file('#ignored#').text = "some ignored file"
            inputDir.file('.git/any-name.txt').text = "some ignored file"
            inputDir.file('something/.git/deeper/dir/structure/any-name.txt').text = "some ignored file"
            inputDir.file('._ignored').text = "some ignored file"
            inputDir.file('some-file.txt~').text = "some ignored file"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

            }
        },
        INPUT_FILE_VALIDATOR("file") {
            @Override
            public void doValidate(String propertyName, Object value, PropertyValidationContext context) {
                File file = toFile(context, value);
                if (!file.exists()) {
                    reportMissingInput(context, "File", propertyName, file);
                } else if (!file.isFile()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

        }
    
        @Nullable
        private File findExecutableInJavaHome(String command) {
            File executable = commandLocation(command);
            if (executable.isFile()) {
                return executable;
            }
            return null;
        }
    
        private File commandLocation(String command) {
            File exec = new File(getJavaHome(), "bin/" + command);
            return new File(os.getExecutableName(exec.getAbsolutePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top