Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 8,738 for FILE (0.07 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

     */
    
    package org.gradle.api.internal.file;
    
    import org.gradle.api.Transformer;
    import org.gradle.api.file.Directory;
    import org.gradle.api.file.DirectoryProperty;
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.file.FileSystemLocation;
    import org.gradle.api.file.FileSystemLocationProperty;
    import org.gradle.api.file.FileTree;
    import org.gradle.api.file.RegularFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/RandomAccessFileInputStream.java

        private final RandomAccessFile file;
    
        public RandomAccessFileInputStream(RandomAccessFile file) {
            this.file = file;
        }
    
        @Override
        public long skip(long n) throws IOException {
            file.seek(file.getFilePointer() + n);
            return n;
        }
    
        @Override
        public int read(byte[] bytes) throws IOException {
            return file.read(bytes);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCache.java

        }
    
        private void loadInsideLock(HashCode key, Consumer<? super File> reader) {
            File file = getCacheEntryFile(key);
            if (!file.exists()) {
                return;
            }
    
            fileAccessTracker.markAccessed(file);
    
            try {
                reader.accept(file);
            } catch (Exception e) {
                // Try to move the file out of the way in case its permanently corrupt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

                " The path separator is not a valid element of a file path. Problematic paths in 'file collection' are: '${Paths.get(bootClasspath)}'." +
                " Add the individual files to the file collection instead." +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/JavaClass.java

                urls.add(file.toURI());
            }
            return urls;
        }
    
        public Collection<File> getAsFiles() {
            return files;
        }
    
        public URL[] getAsURLArray() {
            Collection<URL> result = getAsURLs();
            return result.toArray(new URL[0]);
        }
    
        public Collection<URL> getAsURLs() {
            List<URL> urls = new ArrayList<URL>();
            for (File file : files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/CppLibraryInitIntegrationTest.groovy

            then:
            subprojectDir.file("src/main/cpp").assertHasDescendants(SAMPLE_LIB_CLASS)
            subprojectDir.file("src/main/public").assertHasDescendants("some-thing.h")
            subprojectDir.file("src/test/cpp").assertHasDescendants(SAMPLE_LIB_TEST_CLASS)
    
            and:
            subprojectDir.file("src/main/public/some-thing.h").text.contains("namespace some_thing {")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/NativePlatformBackedFileMetadataAccessor.java

    import net.rubygrapefruit.platform.file.FileInfo;
    import net.rubygrapefruit.platform.file.Files;
    import org.gradle.api.UncheckedIOException;
    import org.gradle.internal.file.FileMetadata;
    import org.gradle.internal.file.FileMetadata.AccessType;
    import org.gradle.internal.file.FileMetadataAccessor;
    import org.gradle.internal.file.impl.DefaultFileMetadata;
    
    import java.io.File;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top