Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 566 for persistent (0.22 sec)

  1. 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)
  2. pkg/api/testing/replication_controller_example.json

                        "name": "elasticsearch-logging"
                    }
                },
                "spec": {
                    "volumes": [
                        {
                            "name": "es-persistent-storage",
                            "hostPath": null,
                            "emptyDir": {
                                "medium": ""
                            },
                            "gcePersistentDisk": null,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/cached/CachedExternalResourceIndex.java

     *
     * Maintains references to the location of files in the persistent local. Does not deal with moving files into the local.
     *
     * @param <K> The type of the key to the index
     */
    public interface CachedExternalResourceIndex<K> {
    
        /**
         * Adds a resolution to the index.
         *
         * The incoming file is expected to be in the persistent local. This method will not move/copy the file there.
         * <p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K 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. subprojects/core/src/main/java/org/gradle/cache/UnscopedCacheBuilderFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    
    /**
     * A repository of persistent caches. A cache is a store of persistent data backed by a directory.
     *
     * This is migrating to become an internal type for the caching infrastructure. Please use a subtype of {@link ScopedCacheBuilderFactory}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:18:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FileContentCacheFactory.java

    import org.gradle.internal.serialize.Serializer;
    
    import java.io.File;
    
    /**
     * A factory for caches that contain some calculated value for a particular file. Maintains a cross-build in-memory and persistent cache of computed values. The value for a given file is updated when the content of the file changes.
     */
    public interface FileContentCacheFactory {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/ModuleArtifactCache.java

        /**
         * Adds a resolution to the index.
         *
         * The incoming file is expected to be in the persistent local. This method will not move/copy the file there. <p>
         *  @param key The key to cache this resolution under in the index. Cannot be null.
         * @param artifactFile The artifact file in the persistent file store. Cannot be null
         * @param moduleDescriptorHash The checksum (SHA1) of the related moduledescriptor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top