Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 153 for fileSystem (0.22 sec)

  1. pkg/volume/portworx/portworx.go

    	mounter mount.Interface
    	plugin  *portworxVolumePlugin
    	volume.MetricsProvider
    }
    
    type portworxVolumeMounter struct {
    	*portworxVolume
    	// Filesystem type, optional.
    	fsType string
    	// Specifies whether the disk will be attached as read-only.
    	readOnly bool
    	// diskMounter provides the interface that is used to mount the actual block device.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/query.go

    	// (“upgrade”)flag.
    	pattern string
    
    	// patternIsLocal indicates whether pattern is restricted to match only paths
    	// local to the main module, such as absolute filesystem paths or paths
    	// beginning with './'.
    	//
    	// A local pattern must resolve to one or more packages in the main module.
    	patternIsLocal bool
    
    	// version is the part of the argument after "@", or an implied
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    Root project 'project'
    ------------------------------------------------------------
    
    Root project 'project'
    +--- Project ':sub-project-1'
    \--- Project ':sub-project-2'
    ----
    
    Project paths usually reflect the filesystem layout, but there are exceptions.
    Most notably for <<composite_builds#defining_composite_builds,composite builds>>.
    
    [[sec:identifying_project_structure]]
    == Identifying project structure
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. cmd/erasure-healing-common.go

    // 5. __missingParts__       - has the latest copy of xl.meta but has some parts
    // missing.  This is identified separately since this may need manual
    // inspection to understand the root cause. E.g, this could be due to
    // backend filesystem corruption.
    
    // listOnlineDisks - returns
    // - a slice of disks where disk having 'older' xl.meta (or nothing)
    // are set to nil.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/authentication.go

    	"k8s.io/kubernetes/pkg/features"
    	kubeauthenticator "k8s.io/kubernetes/pkg/kubeapiserver/authenticator"
    	authzmodes "k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	"k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/bootstrap"
    	"k8s.io/utils/pointer"
    )
    
    const (
    	oidcIssuerURLFlag      = "oidc-issuer-url"
    	oidcClientIDFlag       = "oidc-client-id"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Intermingling or overwriting output files produced by different tasks compromises up-to-date checking causing slower builds.
    In turn, these filesystem changes may prevent Gradle's <<build_cache.adoc#build_cache,build cache>> from properly identifying and caching what would otherwise be cacheable tasks.
    
    [[sec:custom_gradle_distribution]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    ====
    
    TIP: Certain repositories are not able to handle all supported characters. For example, the `:` character cannot be used as an identifier when publishing to a filesystem-backed repository on Windows.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    Script plugins are automatically resolved and can be applied from a script on the local filesystem or remotely:
    
    ====
    include::sample[dir="snippets/organizingGradleProjects/configureProjectUsingScript/kotlin", files="build.gradle.kts[]"]
    include::sample[dir="snippets/organizingGradleProjects/configureProjectUsingScript/groovy", files="build.gradle[]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

        def cacheConfigurations = Stub(CacheConfigurationsInternal)
        def cacheFactory = new DefaultClasspathTransformerCacheFactory(usedGradleVersions, cacheConfigurations)
        def classpathWalker = new ClasspathWalker(TestFiles.fileSystem())
        def classpathBuilder = new DefaultClasspathBuilder(TestFiles.tmpDirTemporaryFileProvider(testDirectoryProvider.createDir("tmp")))
        def fileSystemAccess = TestFiles.fileSystemAccess()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/read.go

    type Module struct {
    	modroot string
    	d       *decoder
    	n       int // number of packages
    }
    
    // moduleHash returns an ActionID corresponding to the state of the module
    // located at filesystem path modroot.
    func moduleHash(modroot string, ismodcache bool) (cache.ActionID, error) {
    	// We expect modules stored within the module cache to be checksummed and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top