Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 566 for persistent (0.33 sec)

  1. okhttp/src/test/java/okhttp3/CookieTest.kt

        ).isEqualTo(3000L)
      }
    
      @Test fun maxAgeOrExpiresMakesCookiePersistent() {
        assertThat(parseCookie(0L, url, "a=b")!!.persistent).isFalse()
        assertThat(parseCookie(0L, url, "a=b; Max-Age=1")!!.persistent).isTrue()
        assertThat(parseCookie(0L, url, "a=b; Expires=Thu, 01 Jan 1970 00:00:01 GMT")!!.persistent)
          .isTrue()
      }
    
      @Test fun parseAll() {
        val headers =
          Headers.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

        /**
         * Sets the Gradle user home dir. Setting to null requests that the executer use the real default Gradle user home dir rather than the default used for testing.
         *
         * This value is persistent across executions by this executer.
         *
         * <p>Note: does not affect the daemon base dir.</p>
         */
        GradleExecuter withGradleUserHomeDir(File userHomeDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. pkg/apis/storage/types.go

    	NodeName string
    }
    
    // VolumeAttachmentSource represents a volume that should be attached.
    // Right now persistent volumes as well as inline volumes (only in
    // CSI Migration scenarios) can be attached via external attacher.
    // Exactly one member can be set.
    type VolumeAttachmentSource struct {
    	// Name of the persistent volume to attach.
    	// +optional
    	PersistentVolumeName *string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    Using _dependency substitution_, the module dependencies on the util libraries are replaced by project dependencies on `my-utils`.
    
    == Converting `my-app` to a composite build
    
    It's possible to make the above arrangement persistent, by making `my-app` a composite build that includes `my-utils`.
    
    ```
    cd my-app
    echo "includeBuild '../my-utils'" >> settings.gradle
    gradle run
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_plugin.go

    	}
    	csiDriver, err := p.csiDriverLister.Get(driver)
    	return csiDriver, err
    }
    
    // getVolumeLifecycleMode returns the mode for the specified spec: {persistent|ephemeral}.
    // 1) If mode cannot be determined, it will default to "persistent".
    // 2) If Mode cannot be resolved to either {persistent | ephemeral}, an error is returned
    // See https://github.com/kubernetes/enhancements/blob/master/keps/sig-storage/596-csi-inline-volumes/README.md
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. helm-releases/minio-2.0.1.tgz

    certificate from .Values.tls.certSecret. trustedCertsSecret: "" ## Enable persistence using Persistent Volume Claims ## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/ ## persistence: enabled: true annotations: {} ## A manually managed Persistent Volume and Claim ## Requires persistence.enabled: true ## If defined, PVC must be created manually before volume will be bound existingClaim: "" ## minio data Persistent Volume Storage Class ## If defined, storageClassName: <storageClass> ##...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/daemon/ScalaCompilerDaemonReuseIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @UnsupportedWithConfigurationCache(because = "parallel by default")
        def "ignores known changing environment variable when persistent compiler daemons are enabled"() {
            withSingleProjectSources()
            withPersistentScalaCompilerDaemons()
    
            when:
            executer.withEnvironmentVars(['JAVA_MAIN_CLASS_1234': '1234'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultMetadataFileSourceCodec.java

    import org.gradle.internal.serialize.Encoder;
    
    import java.io.File;
    import java.io.IOException;
    
    /**
     * A codec for {@link MetadataFileSource}. This codec is particular because of the persistent cache
     * which must be relocatable. As a consequence, it would be an error to serialize the file path because
     * it would contain an absolute path to the descriptor file.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        implementation(project(":functional"))
        implementation(project(":messaging"))
        implementation(project(":logging"))
        implementation(project(":process-services"))
        implementation(project(":persistent-cache"))
        implementation(project(":core-api"))
        implementation(project(":model-core"))
        implementation(project(":core"))
        implementation(project(":file-collections"))
        implementation(project(":file-temp"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
      // +optional
      optional PersistentVolumeSpec spec = 2;
    
      // status represents the current information/status for the persistent volume.
      // Populated by the system.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top