Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 539 for persistent (0.45 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pilot/pkg/networking/grpcgen/grpcgen_test.go

    			t.Fatal("Failed to receive endpoint", err)
    		}
    		ep := adscConn.GetEndpoints()[clusterName]
    		if ep == nil {
    			t.Fatal("Endpoints not found for persistent session cluster")
    		}
    		if len(ep.GetEndpoints()) == 0 {
    			t.Fatal("No endpoint not found for persistent session cluster")
    		}
    		lbep1 := ep.GetEndpoints()[0]
    		if lbep1.LbEndpoints[0].HealthStatus.Number() != 3 {
    			t.Fatal("Draining status not included")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top