Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 566 for persistent (0.32 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    				nil,
    				nil,
    				nil,
    				nil,
    				framework.NewStatus(framework.UnschedulableAndUnresolvable, `node(s) didn't find available persistent volumes to bind`),
    				framework.NewStatus(framework.UnschedulableAndUnresolvable, `node(s) didn't find available persistent volumes to bind`),
    			},
    			wantScores: []int64{
    				25,
    				25,
    				50,
    				50,
    				0,
    				0,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      // resources like hash tables upon loading.
      string init_node_name = 2;
    
      // Path to the directory where checkpoint files are saved. This directoy is
      // not expected to be persistent (usually a temporary directory). When
      // fetching the restore op (see `restore_node_name`), this value is provided
      // to the "file_prefix" tensor to identify the checkpoint directory.
      string checkpoint_dir = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top