Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for persistent (0.67 sec)

  1. pkg/volume/util/operationexecutor/operation_executor.go

    	// InnerVolumeSpecName.
    	VolumeSpec *volume.Spec
    
    	// outerVolumeSpecName is the podSpec.Volume[x].Name of the volume. If the
    	// volume was referenced through a persistent volume claim, this contains
    	// the podSpec.Volume[x].Name of the persistent volume claim.
    	OuterVolumeSpecName string
    
    	// Pod to mount the volume to. Used to create NewMounter.
    	Pod *v1.Pod
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// spec defines a specification of a persistent volume owned by the cluster.
    	// Provisioned by an administrator.
    	// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
    	// +optional
    	Spec PersistentVolumeSpec `json:"spec,omitempty" protobuf:"bytes,2,opt,name=spec"`
    
    	// status represents the current information/status for the persistent volume.
    	// Populated by the system.
    	// Read-only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	volumeSpec *volume.Spec
    
    	// outerVolumeSpecName is the volume.Spec.Name() of the volume as referenced
    	// directly in the pod. If the volume was referenced through a persistent
    	// volume claim, this contains the volume.Spec.Name() of the persistent
    	// volume claim
    	outerVolumeSpecName string
    	// mountRequestTime stores time at which mount was requested
    	mountRequestTime time.Time
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/build.gradle.kts

            because("Exposing jvm metadata via AvailableJavaHomes")
        }
        api(project(":launcher"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":native"))
        api(project(":persistent-cache"))
        api(project(":problems-api"))
        api(project(":process-services"))
    
        api(testFixtures(project(":core"))) {
            because("HttpServer leaks PortAllocator to spock AST transformer")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/plugins.go

    	if err != nil {
    		return allPlugins, err
    	}
    	allPlugins = append(allPlugins, fc.ProbeVolumePlugins()...)
    	return allPlugins, nil
    }
    
    // ProbeControllerVolumePlugins collects all persistent volume plugins into an
    // easy to use list. Only volume plugins that implement any of
    // provisioner/recycler/deleter interface should be returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    ++++
    
    Gradle provides multiple ways to inspect your build:
    
    - Profile with build scans
    - Local profile reports
    - Low level profiling
    
    == What is a build scan?
    
    https://scans.gradle.com/[Build scans] are a persistent, shareable record of what happened when running a build.
    Build scans provide insights into your build that you can use to identify and fix performance bottlenecks.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// +optional
    	metav1.ObjectMeta
    
    	// Spec defines a persistent volume owned by the cluster
    	// +optional
    	Spec PersistentVolumeSpec
    
    	// Status represents the current information about persistent volume.
    	// +optional
    	Status PersistentVolumeStatus
    }
    
    // PersistentVolumeSpec has most of the details required to define a persistent volume
    type PersistentVolumeSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. pkg/volume/fc/fc.go

    	// fc volumes used directly in a pod have a ReadOnly flag set by the pod author.
    	// fc volumes used as a PersistentVolume gets the ReadOnly flag indirectly through the persistent-claim volume used to mount the PV
    	fc, readOnly, err := getVolumeSource(spec)
    	if err != nil {
    		return nil, err
    	}
    
    	wwns, lun, wwids, err := getWwnsLunWwids(fc)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            "gradle-dependency-management",
            "gradle-workers",
            "gradle-worker-main",
            "gradle-build-process-services",
            "gradle-problems-api",
            "gradle-process-services",
            "gradle-persistent-cache",
            "gradle-model-core",
            "gradle-jvm-services",
            "gradle-files",
            "gradle-file-collections",
            "gradle-file-temp",
            "gradle-hashing",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. pkg/volume/util/util.go

    			volumeSpec.Volume.Cinder != nil {
    			return false
    		}
    	}
    
    	// Only if this volume is a persistent volume, we have reliable information on whether it's allowed or not to
    	// multi-attach. We trust in the individual volume implementations to not allow unsupported access modes
    	if volumeSpec.PersistentVolume != nil {
    		// Check for persistent volume types which do not fail when trying to multi-attach
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top