Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 160 for fileSystem (0.14 sec)

  1. cmd/kube-proxy/app/server.go

    			return
    		}
    	})
    	to.VModule = append(to.VModule, vmodule...)
    	return err
    }
    
    // Creates a new filesystem watcher and adds watches for the config file.
    func (o *Options) initWatcher() error {
    	fswatcher := filesystem.NewFsnotifyWatcher()
    	err := fswatcher.Init(o.eventHandler, o.errorHandler)
    	if err != nil {
    		return err
    	}
    	err = fswatcher.AddWatch(o.ConfigFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/volume_manager_test.go

    	tests := []struct {
    		name            string
    		pvMode, podMode v1.PersistentVolumeMode
    		expectMount     bool
    		expectError     bool
    	}{
    		{
    			name:        "filesystem volume",
    			pvMode:      v1.PersistentVolumeFilesystem,
    			podMode:     v1.PersistentVolumeFilesystem,
    			expectMount: true,
    			expectError: false,
    		},
    		{
    			name:        "block volume",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher.go

    	"k8s.io/apimachinery/pkg/watch"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    	"k8s.io/utils/clock"
    )
    
    const globalMountInGlobalPath = "globalmount"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    The repository can be based on a binary repository product (e.g. Artifactory or Nexus) or a directory structure in the filesystem.
    For more information, see <<declaring_repositories.adoc#declaring-repositories,Declaring Repositories>>.
    
    [[sub:terminology_resolution_rule]]
    == Resolution rule
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top