Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 539 for persistent (0.61 sec)

  1. pkg/controller/volume/persistentvolume/config/types.go

    // PersistentVolumeBinderController.
    type PersistentVolumeBinderControllerConfiguration struct {
    	// pvClaimBinderSyncPeriod is the period for syncing persistent volumes
    	// and persistent volume claims.
    	PVClaimBinderSyncPeriod metav1.Duration
    	// volumeConfiguration holds configuration for volume related features.
    	VolumeConfiguration VolumeConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Cookie.kt

      )
      fun value(): String = value
    
      @JvmName("-deprecated_persistent")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "persistent"),
        level = DeprecationLevel.ERROR,
      )
      fun persistent(): Boolean = persistent
    
      @JvmName("-deprecated_expiresAt")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "expiresAt"),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/device_compiler_serialize_options_test.cc

      EXPECT_TRUE(absl::StrContains(
          status.message(),
          "Did not find any persistent XLA compilation cache entries to alter."));
    
      TF_ASSERT_OK(AlterPersistentCacheEntryHloModuleNames(
          tensorflow::testing::TmpDir(), "my_test_prefix"));
    
      // Run again and these should all hit in the persistent cache despite having
      // altered the persistent cache entries' HLO modules (disabled strict
      // signature checks).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/metrics/metrics.go

    	// String to use when plugin name cannot be determined
    	pluginNameNotAvailable = "N/A"
    )
    
    var registerMetrics sync.Once
    
    // PVLister used to list persistent volumes.
    type PVLister interface {
    	List() []interface{}
    }
    
    // PVCLister used to list persistent volume claims.
    type PVCLister interface {
    	List() []interface{}
    }
    
    // Register all metrics for pv controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/StartParameterConverterTest.groovy

        }
    
        def "can provide start parameter option as persistent property"() {
            expect:
            userHome.file("gradle.properties") << "org.gradle.configuration-cache=true"
            def parameter = convert()
            parameter.configurationCache.get()
        }
    
        def "system property on command-line has precedence over persistent property"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/IndexedCache.java

         */
        @Override
        void put(K key, V value);
    
        /**
         * Removes a key-value mapping from this cache. A shared lock is held while updating the value.
         *
         * The implementation may do this synchronously or asynchronously. A file lock is held until the value has been removed from the persistent store.
         */
        void remove(K key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	fs.StringVar(&o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.PodTemplateFilePathNFS, "pv-recycler-pod-template-filepath-nfs", o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.PodTemplateFilePathNFS, "The file path to a pod definition used as a template for NFS persistent volume recycling")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/tests/device_compiler_serialize_test.cc

    #include "tensorflow/core/lib/core/status_test_util.h"
    
    namespace tensorflow {
    namespace {
    
    TEST_F(DeviceCompilerSerializeTest, PersistentCacheTest) {
      GraphDef graph = GetTestGraph({-1, 4});
    
      // Warmup the persistent cache(s) with multiple runs. 4 is a magic number to
      // detect non-determinism in TF when running the test.
      listener()->ClearListenerHistory();
      for (int b = 1; b < 4; ++b) {
        TF_ASSERT_OK(ExecuteWithBatch(graph, b));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pkg/volume/plugins.go

    	// TODO: refactor all of this out of volumes when an admin can configure
    	// many kinds of provisioners.
    
    	// Reclamation policy for a persistent volume
    	PersistentVolumeReclaimPolicy v1.PersistentVolumeReclaimPolicy
    	// Mount options for a persistent volume
    	MountOptions []string
    	// Suggested PV.Name of the PersistentVolume to provision.
    	// This is a generated name guaranteed to be unique in Kubernetes cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. pkg/api/testing/replication_controller_example.json

                        "name": "elasticsearch-logging"
                    }
                },
                "spec": {
                    "volumes": [
                        {
                            "name": "es-persistent-storage",
                            "hostPath": null,
                            "emptyDir": {
                                "medium": ""
                            },
                            "gcePersistentDisk": null,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top