Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 153 for fileSystem (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        message: kernel has no deadlock
        reason: KernelHasNoDeadlock
        status: "False"
        type: KernelDeadlock
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:17:04Z"
        message: Filesystem is not read-only
        reason: FilesystemIsNotReadOnly
        status: "False"
        type: ReadonlyFilesystem
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:22:05Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

                cancellationToken,
                deploymentRegistry,
                userHomeListenerManager.createChild(Scope.BuildSession),
                buildExecutionTimer,
                Time.clock(),
                TestFiles.fileSystem(),
                CaseSensitivity.CASE_SENSITIVE,
                virtualFileSystem,
                delegate)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/TempFileCreator.java

                directoryPermissions =
                    () -> {
                      throw new IOException("unrecognized FileSystem type " + FileSystems.getDefault());
                    };
          }
        }
    
        private static PermissionSupplier userPermissions() {
          try {
            UserPrincipal user =
                FileSystems.getDefault()
                    .getUserPrincipalLookupService()
                    .lookupPrincipalByName(getUsername());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        message: kernel has no deadlock
        reason: KernelHasNoDeadlock
        status: "False"
        type: KernelDeadlock
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:17:04Z"
        message: Filesystem is not read-only
        reason: FilesystemIsNotReadOnly
        status: "False"
        type: ReadonlyFilesystem
      - lastHeartbeatTime: "2019-09-20T19:32:08Z"
        lastTransitionTime: "2019-07-09T16:22:05Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pkg/volume/util/util.go

    	return &mount.SafeFormatAndMount{Interface: mounter, Exec: exec}
    }
    
    // GetVolumeMode retrieves VolumeMode from pv.
    // If the volume doesn't have PersistentVolume, it's an inline volume,
    // should return volumeMode as filesystem to keep existing behavior.
    func GetVolumeMode(volumeSpec *volume.Spec) (v1.PersistentVolumeMode, error) {
    	if volumeSpec == nil || volumeSpec.PersistentVolume == nil {
    		return v1.PersistentVolumeFilesystem, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. pkg/volume/local/local_test.go

    		mountPoints  []mount.MountPoint
    		expectedPath string
    	}{
    		{
    			name: "filesystem volume with directory source",
    			mountPoints: []mount.MountPoint{
    				{
    					Device: "/mnt/disk/ssd0",
    					Path:   "pods/poduid/volumes/kubernetes.io~local-volume/pvA",
    				},
    			},
    			expectedPath: "",
    		},
    		{
    			name: "filesystem volume with block source",
    			mountPoints: []mount.MountPoint{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. src/path/filepath/path_windows_test.go

    			return fmt.Errorf("%v command failed: %q", cmd, string(out))
    		}
    	}
    	return nil
    }
    
    var runFSModifyTests = flag.Bool("run_fs_modify_tests", false, "run tests which modify filesystem parameters")
    
    // This test assumes registry state of NtfsDisable8dot3NameCreation is 2,
    // the default (Volume level setting).
    func TestEvalSymlinksCanonicalNamesWith8dot3Disabled(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. mvnw

      exit 1
    fi
    
    if [ -z "$JAVA_HOME" ] ; then
      echo "Warning: JAVA_HOME environment variable is not set."
    fi
    
    # traverses directory structure from process work directory to filesystem root
    # first directory with .mvn subdirectory is considered project base directory
    find_maven_basedir() {
      if [ -z "$1" ]
      then
        echo "Path not specified to find_maven_basedir"
        return 1
      fi
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. pkg/bootstrap/config.go

    	extractAttributesMetadata(options.Envs, options.Platform, meta)
    	// Add all instance labels with lower precedence than pod labels
    	extractInstanceLabels(options.Platform, meta)
    
    	// Add all pod labels found from filesystem
    	// These are typically volume mounted by the downward API
    	lbls, err := readPodLabels()
    	if err == nil {
    		meta.Labels = map[string]string{}
    		for k, v := range meta.StaticLabels {
    			meta.Labels[k] = v
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

         * <p>
         * The runner requires a Gradle distribution (and therefore a specific version of Gradle) in order to execute builds.
         * This method will find a Gradle distribution, based on the filesystem location of this class.
         * That is, it is expected that this class is loaded from a Gradle distribution.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top