Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for fileSystem (0.18 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/FileSystem.java

     * limitations under the License.
     */
    package org.gradle.internal.nativeintegration.filesystem;
    
    import org.gradle.internal.file.Chmod;
    import org.gradle.internal.file.FileException;
    import org.gradle.internal.file.Stat;
    
    import java.io.File;
    
    /**
     * A file system accessible to Gradle.
     */
    public interface FileSystem extends Chmod, Stat {
        /**
         * Default Unix permissions for directories, {@code 755}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/FileSystems.java

     * limitations under the License.
     */
    package org.gradle.internal.nativeintegration.services;
    
    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    
    public abstract class FileSystems {
        public static FileSystem getDefault() {
            return NativeServices.getInstance().get(FileSystem.class);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 897 bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultDirectoryFileTreeFactory.java

                    return new PatternSet();
                }
            };
            this.fileSystem = FileSystems.getDefault();
        }
    
        public DefaultDirectoryFileTreeFactory(Factory<PatternSet> patternSetFactory, FileSystem fileSystem) {
            this.patternSetFactory = patternSetFactory;
            this.fileSystem = fileSystem;
        }
    
        @Override
        public DirectoryFileTree create(File directory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/DefaultWatchableFileSystemDetector.java

            "vboxsf"
        );
    
        private final FileSystems fileSystems;
    
        public DefaultWatchableFileSystemDetector(FileSystems fileSystems) {
            this.fileSystems = fileSystems;
        }
    
        @Override
        public Stream<File> detectUnsupportedFileSystems() {
            return fileSystems.getFileSystems().stream()
                .filter(fileSystem -> {
                    LOGGER.debug("Detected {}: {} from {} (remote: {})",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryFileTree.java

            this(dir, patternSet, fileSystem, false);
        }
    
        @VisibleForTesting
        public DirectoryFileTree(File dir, PatternSet patternSet, FileSystem fileSystem, boolean postfix) {
            this.patternSet = patternSet;
            this.dir = dir;
            this.fileSystem = fileSystem;
            this.postfix = postfix;
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem.h

    #define TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_MODULAR_FILESYSTEM_H_
    
    #include <memory>
    
    #include "tensorflow/c/experimental/filesystem/filesystem_interface.h"
    #include "tensorflow/core/platform/file_system.h"
    
    /// This file builds classes needed to hold a filesystem implementation in the
    /// modular world. Once all TensorFlow filesystems are converted to use the
    /// plugin based approach, this file will replace the one in core/platform and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

                // Workaround for https://github.com/gradle/gradle/issues/11577
                return new DefaultFileVisitDetails(file, relativePath, stopFlag, fileSystem, fileSystem);
            } else {
                return new AttributeBasedFileVisitDetails(file, relativePath, stopFlag, fileSystem, fileSystem, attrs);
            }
        }
    
        /**
         * Gets attributes and returns FileVisitDetails for the given relativePath.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/FileResourceConnector.java

    import java.io.File;
    import java.net.URI;
    
    public class FileResourceConnector implements FileResourceRepository {
        private final FileSystem fileSystem;
        private final FileResourceListener listener;
    
        public FileResourceConnector(FileSystem fileSystem, ListenerManager listenerManager) {
            this.fileSystem = fileSystem;
            this.listener = listenerManager.getBroadcaster(FileResourceListener.class);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopyActionExecuter.java

    import org.gradle.api.tasks.WorkResult;
    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    import org.gradle.internal.reflect.Instantiator;
    
    public class CopyActionExecuter {
    
        private final Instantiator instantiator;
        private final ObjectFactory objectFactory;
        private final FileSystem fileSystem;
        private final boolean reproducibleFileOrder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/resources/DefaultResourceHandler.java

                private final FileSystem fileSystem;
                private final TemporaryFileProvider tempFileProvider;
                private final TaskDependencyFactory taskDependencyFactory;
                private final ApiTextResourceAdapter.Factory textResourceAdapterFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top