Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 542 for filesystem_ (0.65 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/state/CachingFileHasherTest.groovy

        def timeStampInspector = Mock(FileTimeStampInspector)
        def hash = TestHashCodes.hashCodeFrom(0x0123)
        def oldHash = TestHashCodes.hashCodeFrom(0x0321)
        def file = tmpDir.createFile("testfile")
        def fileSystem = TestFiles.fileSystem()
        def statisticsCollector = Mock(FileHasherStatistics.Collector)
        CachingFileHasher hasher
    
        def setup() {
            file.write("some-content")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 13:47:15 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystemTest.groovy

    package org.gradle.internal.nativeintegration.filesystem.services
    
    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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_case_collision.txt

    # logic even on case-insensitive filesystems.
    cp b/file.go b/FILE.go  # no-op on case-insensitive filesystems
    ! go list b/file.go b/FILE.go
    stderr 'case-insensitive file name collision'
    
    mkdir a/Pkg  # no-op on case-insensitive filesystems
    cp a/pkg/pkg.go a/Pkg/pkg.go  # no-op on case-insensitive filesystems
    ! go list example/a/pkg example/a/Pkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryFileTreeTest.groovy

            def includesOnly = new PatternSet()
            includesOnly.include("a/b", "c")
            def treeWithIncludes = new DirectoryFileTree(temporaryFolder.getTestDirectory(), includesOnly, TestFiles.fileSystem(), false)
            def excludesOnly = new PatternSet()
            excludesOnly.exclude("a/b", "c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/osgi/OsgiTest.kt

      @BeforeEach
      fun setUp() {
        testResourceDir = "./build/resources/test/okhttp3/osgi".toPath()
        workspaceDir = testResourceDir / "workspace"
    
        // Ensure we start from scratch.
        fileSystem.deleteRecursively(workspaceDir)
        fileSystem.createDirectories(workspaceDir)
      }
    
      /**
       * Resolve the OSGi metadata of the all okhttp3 modules. If required modules do not have OSGi
       * metadata this will fail with an exception.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputs.kt

        @Suppress("unused") // used in DI
        constructor(
            configurationCacheStartParameter: ConfigurationCacheStartParameter,
            fileSystem: FileSystem
        ) : this(
            ignoredPathsString = configurationCacheStartParameter.ignoredFileSystemCheckInputs,
            isCaseSensitive = fileSystem.isCaseSensitive,
            rootDirectory = configurationCacheStartParameter.rootDirectory
        )
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pkg/volume/util/types/types_test.go

    			mount.NewMountError(mount.FilesystemMismatch, "filesystem mismatch"),
    			IsFilesystemMismatchError,
    			true,
    		},
    		{
    			"when mount error has other error",
    			mount.NewMountError(mount.FormatFailed, "filesystem mismatch"),
    			IsFilesystemMismatchError,
    			false,
    		},
    		{
    			"when mount error wraps filesystem mismatch error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

    # Experimental windows filesystem plugin.
    load("//tensorflow:tensorflow.bzl", "get_win_copts", "tf_cc_shared_object")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for Windows environment
    tf_cc_shared_object(
        name = "windows_filesystem.dll",
        framework_so = [],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 936 bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/plugins/windows/windows_filesystem.cc

    ==============================================================================*/
    #include <stdlib.h>
    #include <string.h>
    
    #include "tensorflow/c/experimental/filesystem/filesystem_interface.h"
    
    // Implementation of a filesystem for POSIX environments.
    // This filesystem will support `file://` and empty (local) URI schemes.
    
    static void* plugin_memory_allocate(size_t size) { return calloc(1, size); }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubeletconfig/util/files/files_test.go

    // and skips reading back the expected files
    type test struct {
    	desc    string
    	writes  []file
    	expects []file
    	fn      func(fs utilfs.Filesystem, dir string, c *test) []error
    	err     string
    }
    
    func (c *test) write(t *testing.T, fs utilfs.Filesystem, dir string) {
    	for _, f := range c.writes {
    		if err := f.write(fs, dir); err != nil {
    			t.Fatalf("error pre-writing file: %v", err)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
Back to top