Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 566 for persistent (0.13 sec)

  1. src/net/http/cookiejar/jar.go

    	} else if c.MaxAge > 0 {
    		e.Expires = now.Add(time.Duration(c.MaxAge) * time.Second)
    		e.Persistent = true
    	} else {
    		if c.Expires.IsZero() {
    			e.Expires = endOfTime
    			e.Persistent = false
    		} else {
    			if !c.Expires.After(now) {
    				return e, true, nil
    			}
    			e.Expires = c.Expires
    			e.Persistent = true
    		}
    	}
    
    	e.Value = c.Value
    	e.Quoted = c.Quoted
    	e.Secure = c.Secure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/build.gradle.kts

        implementation(project(":functional"))
    
        implementation(libs.guava)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":resources"))
        testImplementation(project(":persistent-cache"))
        testImplementation(project(":build-option"))
        testImplementation(project(":enterprise-operations"))
        testImplementation(testFixtures(project(":build-operations")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    MINIO_NOTIFY_AMQP_DELIVERY_MODE  (number)    set to '1' for non-persistent or '2' for persistent queue
    MINIO_NOTIFY_AMQP_QUEUE_DIR      (path)      staging dir for undelivered messages e.g. '/home/events'
    MINIO_NOTIFY_AMQP_QUEUE_LIMIT    (number)    maximum limit for undelivered messages, defaults to '100000'
    MINIO_NOTIFY_AMQP_COMMENT        (sentence)  optionally add a comment to this setting
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/workspace/MutableWorkspaceProvider.java

    import org.gradle.internal.execution.history.ExecutionHistoryStore;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    public interface MutableWorkspaceProvider {
        /**
         * Provides a persistent workspace and execution history store for executing the given action in.
         */
        <T> T withWorkspace(String path, WorkspaceAction<T> action);
    
        @FunctionalInterface
        interface WorkspaceAction<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/build.gradle.kts

        implementation(libs.slf4jApi)
    
        testImplementation(project(":process-services"))
        testImplementation(project(":resources"))
        testImplementation(project(":native"))
        testImplementation(project(":persistent-cache"))
        testImplementation(libs.ant)
        testImplementation(libs.commonsIo)
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":core-api")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. testing/soak/build.gradle.kts

        integTestImplementation(project(":jvm-services"))
        integTestImplementation(project(":launcher"))
        integTestImplementation(project(":logging"))
        integTestImplementation(project(":persistent-cache"))
        integTestImplementation(libs.commonsCompress)
        integTestImplementation(libs.slf4jApi)
        integTestImplementation(libs.jetty)
        integTestImplementation(libs.assertj) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/volume/iscsi/iscsi_test.go

    	plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(t, tmpDir, client, nil))
    	plug, _ := plugMgr.FindPluginByName(iscsiPluginName)
    
    	// readOnly bool is supplied by persistent-claim volume source when its mounter creates other volumes
    	spec := volume.NewSpecFromPersistentVolume(pv, true)
    	pod := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionHistoryCacheAccess.java

     * limitations under the License.
     */
    package org.gradle.internal.execution.history;
    
    import org.gradle.cache.PersistentCache;
    
    import java.util.function.Supplier;
    
    /**
     * Provides access to the persistent execution history store.
     */
    public interface ExecutionHistoryCacheAccess extends Supplier<PersistentCache> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 896 bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DaemonForkOptionsBuilder.java

                Optional<String> unreliableArgument = findUnreliableArgument(jvmArgs);
                if (unreliableArgument.isPresent()) {
                    LOGGER.info("Worker requested to be persistent, but the JVM argument '{}' may make the worker unreliable when reused across multiple builds. Worker will expire at the end of the build session.", unreliableArgument.get());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	}
    
    	mp := acquirem()
    	var persistent *persistentAlloc
    	if mp != nil && mp.p != 0 {
    		persistent = &mp.p.ptr().palloc
    	} else {
    		lock(&globalAlloc.mutex)
    		persistent = &globalAlloc.persistentAlloc
    	}
    	persistent.off = alignUp(persistent.off, align)
    	if persistent.off+size > persistentChunkSize || persistent.base == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top