Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for fileSystem (0.47 sec)

  1. platforms/documentation/docs/build.gradle

                sourceDirectory = precompiledScriptPluginUtils.sourceDirectory
                target = "buildSrc"
            }
            problemsApiUsage
        }
    
        // TODO: Do this lazily so we don't need to walk the filesystem during configuration
        // iterate through each snippets and record their names and locations
        FileFilter directoriesOnly = { it.directory }
        def topLevelDirs = file('src/snippets').listFiles(directoriesOnly)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    	// mounted only with a single SELinux context.
    	//
    	// When "false", Kubernetes won't pass any special SELinux mount options to the driver.
    	// This is typical for volumes that represent subdirectories of a bigger shared filesystem.
    	//
    	// Default is "false".
    	//
    	// +featureGate=SELinuxMountReadWriteOncePod
    	// +optional
    	SELinuxMount *bool `json:"seLinuxMount,omitempty" protobuf:"varint,8,opt,name=seLinuxMount"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/module/module.go

    	// and uses Version = "".
    	// Second, during MVS calculations the version "none" is used
    	// to represent the decision to take no version of a given module.
    	// Third, filesystem paths found in "replace" directives are
    	// represented by a path with an empty version.
    	Version string `json:",omitempty"`
    }
    
    // String returns a representation of the Version suitable for logging
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. cmd/endpoint.go

    		// As a special case make sure to trim the separator.
    
    		// NOTE: It is also perfectly fine for windows users to have a path
    		// without C:/ since at that point we treat it as relative path
    		// and obtain the full filesystem path as well. Providing C:/
    		// style is necessary to provide paths other than C:/,
    		// such as F:/, D:/ etc.
    		//
    		// Another additional benefit here is that this style also
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. pkg/volume/plugins.go

    }
    
    const (
    	// Common parameter which can be specified in StorageClass to specify the desired FSType
    	// Provisioners SHOULD implement support for this if they are block device based
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Default value depends on the provisioner
    	VolumeParameterFSType = "fstype"
    
    	ProbeAddOrUpdate ProbeOperation = 1 << iota
    	ProbeRemove
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.util.JarUtils
    import org.gradle.util.internal.TextUtil
    import spock.lang.Issue
    
    import java.nio.file.FileSystems
    import java.nio.file.Files
    import java.util.function.Supplier
    
    class UndeclaredBuildInputsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def testDir = testDirectoryProvider.testDirectory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	//
    	// Enable POD resources API with Get method
    	KubeletPodResourcesGet featuregate.Feature = "KubeletPodResourcesGet"
    
    	// KubeletSeparateDiskGC enables Kubelet to garbage collection images/containers on different filesystems
    	// owner: @kannon92
    	// kep: https://kep.k8s.io/4191
    	// alpha: v1.29
    	KubeletSeparateDiskGC featuregate.Feature = "KubeletSeparateDiskGC"
    
    	// owner: @sallyom
    	// kep: https://kep.k8s.io/2832
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. cmd/storage-rest-server.go

    		var hint string
    		if endpoint.URL != nil {
    			hint = fmt.Sprintf("Drive '%s' does not support O_DIRECT flags, MinIO erasure coding requires filesystems with O_DIRECT support", endpoint.Path)
    		} else {
    			hint = "Drives do not support O_DIRECT flags, MinIO erasure coding requires filesystems with O_DIRECT support"
    		}
    		logger.Fatal(config.ErrUnsupportedBackend(err).Hint(hint), "Unable to initialize backend")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. README.md

    ## Test using MinIO Client `mc`
    
    `mc` provides a modern alternative to UNIX commands like ls, cat, cp, mirror, diff etc. It supports filesystems and Amazon S3 compatible cloud storage services. Follow the MinIO Client [Quickstart Guide](https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart) for further instructions.
    
    ## Upgrading MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top