Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 435 for persistent (0.33 sec)

  1. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/build.gradle.kts

        api(project(":process-services"))
        api(project(":base-services"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":logging"))
        api(project(":messaging"))
        api(project(":persistent-cache"))
        api(project(":snapshots"))
    
        api(libs.asm)
        api(libs.jsr305)
        api(libs.inject)
        api(libs.groovy)
        api(libs.guava)
    
        implementation(project(":base-services-groovy"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/build.gradle.kts

        testFixturesImplementation(libs.commonsIo)
        testFixturesImplementation(libs.slf4jApi)
    
        integTestImplementation(project(":jvm-services"))
        integTestImplementation(project(":persistent-cache"))
    
        crossVersionTestImplementation(project(":jvm-services"))
        crossVersionTestImplementation(testFixtures(project(":problems-api")))
        crossVersionTestImplementation(libs.jettyWebApp)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta2/conversion.go

    	for k, v := range m {
    		ret[k] = v
    	}
    	return ret
    }
    
    // Convert_v1beta2_StatefulSetSpec_To_apps_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    func Convert_v1beta2_StatefulSetSpec_To_apps_StatefulSetSpec(in *appsv1beta2.StatefulSetSpec, out *apps.StatefulSetSpec, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. pkg/kube/inject/initializer.go

    // "kube-node-lease": This namespace for the lease objects associated with each node
    // which improves the performance of the node heartbeats as the cluster scales.
    // "local-path-storage": Dynamically provisioning persistent local storage with Kubernetes.
    //
    //	used with Kind cluster: https://github.com/rancher/local-path-provisioner
    var IgnoredNamespaces = sets.New(
    	constants.KubeSystemNamespace,
    	constants.KubePublicNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compiler_test.cc

          &xla_executable));
    
      EXPECT_TRUE(compilation_result != nullptr);
      EXPECT_TRUE(xla_executable != nullptr);
    
      // Check if device_compiler was able to load the executable from the
      // persistent cache.
      std::vector<XlaJitCompilationActivity> activity_history =
          listener_->GetListenerHistory();
      EXPECT_EQ(activity_history.size(), 1);
      EXPECT_EQ(activity_history[0].cluster_name(), fn.name());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/jvm/scala/build.gradle.kts

        implementation(projects.time)
        implementation(project(":dependency-management"))
        implementation(project(":file-collections"))
        implementation(project(":logging"))
        implementation(project(":persistent-cache"))
        implementation(project(":plugins-java"))
        implementation(project(":plugins-java-base"))
        implementation(project(":reporting"))
        implementation(project(":worker-main"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top