Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 92 for fileSystem (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

                configurationCacheStartParameter: ConfigurationCacheStartParameter,
                fileSystem: FileSystem
            ): IgnoredConfigurationInputs =
                if (hasIgnoredPaths(configurationCacheStartParameter))
                    DefaultIgnoredConfigurationInputs(configurationCacheStartParameter, fileSystem)
                else object : IgnoredConfigurationInputs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

    import org.gradle.internal.concurrent.Stoppable
    import org.gradle.internal.file.FileAccessTimeJournal
    import org.gradle.internal.file.impl.SingleDepthFileAccessTracker
    import org.gradle.internal.nativeintegration.filesystem.FileSystem
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.internal.time.TimestampSuppliers
    import java.io.File
    import java.io.InputStream
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedGlobalScopeServices.java

        @Provides
        StreamHasher createStreamHasher() {
            return new DefaultStreamHasher();
        }
    
        @Provides
        Deleter createDeleter(Clock clock, FileSystem fileSystem, OperatingSystem os) {
            return new DefaultDeleter(clock::getCurrentTime, fileSystem::isSymlink, os.isWindows());
        }
    
        @Provides
        PropertyFactory createPropertyFactory(PropertyHost propertyHost) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractFileSystemAccessTest.groovy

        def fileHasher = new AllowingHasher(TestFiles.fileHasher())
        def fileSystem = new AllowingStat(TestFiles.fileSystem())
        def updateListener = Mock(FileSystemAccess.WriteListener)
        def statisticsCollector = Mock(DirectorySnapshotterStatistics.Collector)
        def fileSystemAccess = new DefaultFileSystemAccess(
            fileHasher,
            new StringInterner(),
            fileSystem::stat,
            TestFiles.virtualFileSystem(),
            updateListener,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

            StringInterner stringInterner,
            FileSystem fileSystem,
            CrossBuildFileHashCacheWrapper crossBuildCache,
            BuildSessionScopeFileTimeStampInspector inspector,
            FileHasherStatistics.Collector statisticsCollector
        ) {
            return new DefaultChecksumService(stringInterner, crossBuildCache.delegate, fileSystem, inspector, statisticsCollector);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/WorkerSharedProjectScopeServices.java

    import org.gradle.internal.file.PathToFileResolver;
    import org.gradle.internal.hash.FileHasher;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. internal/disk/stat_linux_s390x.go

    	"ef51":     "EXT2OLD",
    	"ef53":     "EXT4",
    	"f15f":     "ecryptfs",
    	"794c7630": "overlayfs",
    	"2fc12fc1": "zfs",
    	"ff534d42": "cifs",
    	"53464846": "wslfs",
    }
    
    // getFSType returns the filesystem type of the underlying mounted filesystem
    func getFSType(ftype uint32) string {
    	fsTypeHex := strconv.FormatUint(uint64(ftype), 16)
    	fsTypeString, ok := fsType2StringMap[fsTypeHex]
    	if !ok {
    		return "UNKNOWN"
    	}
    	return fsTypeString
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/native/src/jmh/java/org/gradle/internal/nativeintegration/filesystem/FileMetadataAccessorBenchmark.java

    import org.gradle.internal.file.impl.DefaultFileMetadata;
    import org.gradle.internal.file.nio.NioFileMetadataAccessor;
    import org.gradle.internal.nativeintegration.filesystem.services.FallbackFileMetadataAccessor;
    import org.gradle.internal.nativeintegration.filesystem.services.NativePlatformBackedFileMetadataAccessor;
    import org.openjdk.jmh.annotations.Benchmark;
    import org.openjdk.jmh.annotations.Measurement;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. pkg/util/filesystem/watcher.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package filesystem
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    // FSWatcher is a callback-based filesystem watcher abstraction for fsnotify.
    type FSWatcher interface {
    	// Initializes the watcher with the given watch handlers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. samples/tlssurvey/src/main/kotlin/okhttp3/survey/Clients.kt

    import javax.net.ssl.SSLSocket
    import javax.net.ssl.SSLSocketFactory
    import okhttp3.ConnectionSpec
    import okhttp3.OkHttp
    import okhttp3.survey.types.Client
    import okhttp3.survey.types.SuiteId
    import okio.FileSystem
    import okio.Path.Companion.toPath
    import org.conscrypt.Conscrypt
    
    fun currentOkHttp(ianaSuites: IanaSuites): Client {
      return Client(
        userAgent = "OkHttp",
        version = OkHttp.VERSION,
        enabled =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 01:44:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top