Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 153 for fileSystem (0.27 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

        }
    
        @Override
        protected CopyActionExecuter createCopyActionExecuter() {
            Instantiator instantiator = getInstantiator();
            FileSystem fileSystem = getFileSystem();
    
            return new CopyActionExecuter(instantiator, getObjectFactory(), fileSystem, isReproducibleFileOrder(), getDocumentationRegistry());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. 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)
  3. pkg/controller/volume/persistentvolume/index_test.go

    			pvc:                makeVolumeModePVC("8G", &blockMode, nil),
    		},
    		"pvc filesystem and pv filesystem": {
    			isExpectedMismatch: false,
    			vol:                createVolumeModeFilesystemTestVolume(),
    			pvc:                makeVolumeModePVC("8G", &filesystemMode, nil),
    		},
    		"pvc filesystem and pv nil": {
    			isExpectedMismatch: false,
    			vol:                createVolumeModeNilTestVolume(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cadvisor_stats_provider.go

    	}
    }
    
    // ListPodStats returns the stats of all the pod-managed containers.
    func (p *cadvisorStatsProvider) ListPodStats(_ context.Context) ([]statsapi.PodStats, error) {
    	// Gets node root filesystem information and image filesystem stats, which
    	// will be used to populate the available and capacity bytes/inodes in
    	// container stats.
    	rootFsInfo, err := p.cadvisor.RootFsInfo()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. 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)
  6. ci/devinfra/docker_windows/Dockerfile

        New-NetRoute -DestinationPrefix 169.254.169.254/32 -InterfaceIndex $ifIndex -NextHop $gateway
    
    # Enable Long Paths for Win32 File/Folder APIs.
    RUN New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem \
            -Name LongPathsEnabled -Value 1 -PropertyType DWORD -Force
    
    # Install Visual C++ Redistributable for Visual Studio 2015-2022.
    RUN New-Item -Path "C:/" -Name "TEMP" -ItemType "directory"; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    // implements BlockVolumeMapper or filesystem volume which implements
    // DeviceMounter
    func getDeviceMountPath(gvi *globalVolumeInfo) (string, error) {
    	if gvi.blockVolumeMapper != nil {
    		// for block gvi, we return its global map path
    		return gvi.blockVolumeMapper.GetGlobalMapPath(gvi.volumeSpec)
    	} else if gvi.deviceMounter != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K 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. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

         * <li>The name of the child's base directory matches the artifact id of the child.</li>
         * </ul>
         * Note that for the sake of independence from the user
         * environment, the filesystem is intentionally not used for the calculation.</p>
         *
         * @param child The child model, must not be <code>null</code>.
         * @param parent The parent model, may be <code>null</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top