Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for fileSystem (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

                FileSystem fileSystem,
                GradleUserHomeScopeFileTimeStampInspector fileTimeStampInspector,
                StreamHasher streamHasher,
                StringInterner stringInterner
            ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileCollectionFactory.java

            Factory<PatternSet> patternSetFactory,
            PropertyHost propertyHost,
            FileSystem fileSystem
        ) {
            this(fileResolver, taskDependencyFactory, directoryFileTreeFactory, patternSetFactory, propertyHost, fileSystem, fileCollection -> {});
        }
    
        private DefaultFileCollectionFactory(
            PathToFileResolver fileResolver,
            TaskDependencyFactory taskDependencyFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

                WorkerLeaseService workerLeaseService,
                BuildLayoutValidator buildLayoutValidator,
                FileSystem fileSystem,
                BuildLifecycleAwareVirtualFileSystem virtualFileSystem,
                ValueSnapshotter valueSnapshotter
            ) {
                CaseSensitivity caseSensitivity = fileSystem.isCaseSensitive() ? CASE_SENSITIVE : CASE_INSENSITIVE;
                return new SubscribableBuildActionExecutor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

            return DefaultResourceHandler.Factory.from(
                fileResolver,
                taskDependencyFactory,
                fileSystem,
                temporaryFileProvider,
                textResourceAdapterFactory
            );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

    import org.gradle.internal.nativeintegration.filesystem.services.FallbackFileMetadataAccessor;
    import org.gradle.internal.nativeintegration.filesystem.services.FileSystemServices;
    import org.gradle.internal.nativeintegration.filesystem.services.NativePlatformBackedFileMetadataAccessor;
    import org.gradle.internal.nativeintegration.filesystem.services.UnavailablePosixFiles;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

                lockCoordinationService
            );
        }
    
        @Provides
        ExecutionNodeAccessHierarchies createExecutionNodeAccessHierarchies(FileSystem fileSystem, Stat stat) {
            return new ExecutionNodeAccessHierarchies(fileSystem.isCaseSensitive() ? CaseSensitivity.CASE_SENSITIVE : CaseSensitivity.CASE_INSENSITIVE, stat);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

     */
    internal fun FileSystem.isCivilized(file: Path): Boolean {
      sink(file).use {
        try {
          delete(file)
          return true
        } catch (_: IOException) {
        }
      }
      delete(file)
      return false
    }
    
    /** Delete file we expect but don't require to exist. */
    internal fun FileSystem.deleteIfExists(path: Path) {
      try {
        delete(path)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl
    
    import com.google.common.primitives.Bytes
    import groovy.transform.EqualsAndHashCode
    import groovy.transform.ToString
    import org.gradle.internal.nativeintegration.filesystem.FileSystem
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.testfixtures.internal.NativeServicesTestFixture
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/volume/volume.go

    	// underlying storage. For Volumes that share a filesystem with the host
    	// (e.g. emptydir, hostpath) this is the size of the underlying storage,
    	// and will not equal Used + Available as the fs is shared.
    	Capacity *resource.Quantity
    
    	// Available represents the storage space available (bytes) for the
    	// Volume. For Volumes that share a filesystem with the host (e.g.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.internal.logging.text.StyledTextOutputFactory> is not annotated with @ServiceScope in (StyledTextOutputFactory.java:0)
    Class <org.gradle.internal.nativeintegration.filesystem.FileSystem> is not annotated with @ServiceScope in (FileSystem.java:0)
    Class <org.gradle.internal.nativeintegration.network.HostnameLookup> is not annotated with @ServiceScope in (HostnameLookup.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top