Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 542 for filesystem_ (0.37 sec)

  1. tensorflow/c/experimental/filesystem/BUILD

    # Experimental filesystem C APIs for TensorFlow.
    # Will be moved in proper place once all filesystems are converted to the
    # modular framework.
    load("//tensorflow:tensorflow.bzl", "tf_cc_test")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # This is only for plugins
    cc_library(
        name = "filesystem_interface",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem_static.cc

    #include "absl/log/log.h"
    #include "tensorflow/c/experimental/filesystem/filesystem_interface.h"
    #include "tensorflow/c/experimental/filesystem/modular_filesystem_registration.h"
    #include "tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    
    // Register the POSIX filesystems statically.
    // Return value will be unused
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

                });
                return fileWatchingFilter;
            }
    
            @Provides
            WatchableFileSystemDetector createWatchableFileSystemDetector(FileSystems fileSystems) {
                return new DefaultWatchableFileSystemDetector(fileSystems);
            }
    
            @Provides
            BuildLifecycleAwareVirtualFileSystem createVirtualFileSystem(
                FileWatchingFilter fileWatchingFilter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.api.tasks.util.PatternSet;
    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    import org.gradle.internal.nativeintegration.services.FileSystems;
    
    import java.io.File;
    import java.util.ArrayDeque;
    import java.util.Arrays;
    import java.util.Deque;
    import java.util.List;
    import java.util.concurrent.atomic.AtomicBoolean;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

            FileResolver fileResolver = resolver(basedDir);
            FileSystem fileSystem = fileSystem();
    
            DefaultResourceHandler.Factory resourceHandlerFactory = DefaultResourceHandler.Factory.from(
                fileResolver,
                taskDependencyFactory(),
                fileSystem,
                temporaryFileProvider,
                textResourceAdapterFactory(temporaryFileProvider)
            );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ChmodBenchmark.java

        File tempDirFile;
        AtomicInteger counter;
        FileSystem fileSystem;
    
        @Setup(Level.Trial)
        public void setupTrial() throws IOException {
            this.tempRootDir = Files.createTempDirectory("chmod-benchmark");
            NativeServices.initializeOnDaemon(tempRootDir.toFile(), NativeServicesMode.fromSystemProperties());
            this.fileSystem = FileSystems.getDefault();
        }
    
        @TearDown(Level.Trial)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

    # Experimental posix filesystem plugin.
    load("//tensorflow:tensorflow.bzl", "tf_cc_shared_object")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for POSIX environments: Linux, MacOS, Android, etc.
    tf_cc_shared_object(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/ExtractGradleApiInfoTask.java

    import org.gradle.api.tasks.TaskAction;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.net.URI;
    import java.nio.file.FileSystem;
    import java.nio.file.FileSystems;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.StandardCopyOption;
    import java.util.Collections;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 22:15:41 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/modular_filesystem_registration.h

    #include "tensorflow/c/experimental/filesystem/filesystem_interface.h"
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace filesystem_registration {
    
    // Implementation for filesystem registration
    //
    // Don't call this directly. Instead call `RegisterFilesystemPlugin`.
    // Exposed only for static registration of local filesystems.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 20 16:42:12 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/testFixtures/groovy/org/gradle/jvm/toolchain/JdkRepository.groovy

                populateFilesList(jdkFiles, jdkHomeDirectory)
    
                def fileSystem = FileSystems.getDefault()
    
                for (File file : jdkFiles) {
                    def path = RelativePathUtil.relativePath(jdkHomeParentDirectory, file)
                    ZipArchiveEntry entry = (ZipArchiveEntry) aos.createArchiveEntry(file, path)
                    entry.setUnixMode(fileSystem.getUnixMode(file))
                    aos.putArchiveEntry(entry)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 20 08:26:19 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top