Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 178 for persistent (0.33 sec)

  1. pkg/controller/volume/persistentvolume/config/types.go

    // PersistentVolumeBinderController.
    type PersistentVolumeBinderControllerConfiguration struct {
    	// pvClaimBinderSyncPeriod is the period for syncing persistent volumes
    	// and persistent volume claims.
    	PVClaimBinderSyncPeriod metav1.Duration
    	// volumeConfiguration holds configuration for volume related features.
    	VolumeConfiguration VolumeConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	fs.StringVar(&o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.PodTemplateFilePathNFS, "pv-recycler-pod-template-filepath-nfs", o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.PodTemplateFilePathNFS, "The file path to a pod definition used as a template for NFS persistent volume recycling")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    	// TODO: refactor all of this out of volumes when an admin can configure
    	// many kinds of provisioners.
    
    	// Reclamation policy for a persistent volume
    	PersistentVolumeReclaimPolicy v1.PersistentVolumeReclaimPolicy
    	// Mount options for a persistent volume
    	MountOptions []string
    	// Suggested PV.Name of the PersistentVolume to provision.
    	// This is a generated name guaranteed to be unique in Kubernetes cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. src/os/exec.go

    		handle: handle,
    	}
    	p.state.Store(1) // 1 persistent reference
    	runtime.SetFinalizer(p, (*Process).Release)
    	return p
    }
    
    func newDoneProcess(pid int) *Process {
    	p := &Process{
    		Pid:  pid,
    		mode: modeHandle,
    		// N.B Since we set statusDone, handle will never actually be
    		// used, so its value doesn't matter.
    	}
    	p.state.Store(uint64(statusDone)) // No persistent reference, as there is no handle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = """Persistent caches on disk and cross process locking.
        | Mostly for persisting Maps to the disk.
        | Also contains implementations for in-memory caches in front of the disk cache.
    """.trimMargin()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/events.go

    	// PvAdd is the event when a persistent volume is added in the cluster.
    	PvAdd = framework.ClusterEvent{Resource: framework.PersistentVolume, ActionType: framework.Add, Label: "PvAdd"}
    	// PvUpdate is the event when a persistent volume is updated in the cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/build.gradle.kts

        api(project(":jvm-services"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":persistent-cache"))
        api(project(":process-services"))
        api(project(":serialization"))
        api(project(":service-provider"))
        api(project(":snapshots"))
        api(project(":time"))
        api(project(":toolchains-jvm-shared"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pilot/pkg/features/experimental.go

    		"PILOT_ENABLE_PERSISTENT_SESSION_FILTER",
    		false,
    		"If enabled, Istiod sets up persistent session filter for listeners, if services have 'PILOT_PERSISTENT_SESSION_LABEL' set.",
    	).Get()
    
    	PersistentSessionLabel = env.Register(
    		"PILOT_PERSISTENT_SESSION_LABEL",
    		"istio.io/persistent-session",
    		"If not empty, services with this label will use cookie based persistent sessions",
    	).Get()
    
    	PersistentSessionHeaderLabel = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. .teamcity/test-buckets.json

    					"signing",
    					"ide-native",
    					"plugins-java-library",
    					"antlr",
    					"ide-plugins",
    					"platform-base",
    					"test-kit",
    					"ide",
    					"file-collections",
    					"persistent-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"kotlin-dsl-tooling-builders",
    					"execution-e2e-tests",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/build.gradle.kts

        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":files"))
        api(project(":hashing"))
        api(project(":language-jvm"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":problems-api"))
        api(project(":process-services"))
        api(project(":snapshots"))
        api(project(":test-suites-base"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top