Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 539 for persistent (0.18 sec)

  1. okhttp/src/main/kotlin/okhttp3/Protocol.kt

     */
    enum class Protocol(private val protocol: String) {
      /**
       * An obsolete plaintext framing that does not use persistent sockets by default.
       */
      HTTP_1_0("http/1.0"),
    
      /**
       * A plaintext framing that includes persistent connections.
       *
       * This version of OkHttp implements [RFC 7230][rfc_7230], and tracks revisions to that spec.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. pkg/registry/core/persistentvolume/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/core/persistentvolume"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // REST implements a RESTStorage for persistent volumes.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against persistent volumes.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, *StatusREST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top