Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 566 for persistent (0.4 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/options/options.go

    		"The period for syncing persistent volumes and persistent volume claims")
    	fs.StringVar(&o.VolumeConfigFlags.PersistentVolumeRecyclerPodTemplateFilePathNFS,
    		"pv-recycler-pod-template-filepath-nfs", o.VolumeConfigFlags.PersistentVolumeRecyclerPodTemplateFilePathNFS,
    		"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 Nov 04 20:45:21 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. plugin/pkg/admission/storage/persistentvolume/resize/admission.go

    	if newSize.Cmp(oldSize) <= 0 {
    		return nil
    	}
    
    	if oldPvc.Status.Phase != api.ClaimBound {
    		return admission.NewForbidden(a, fmt.Errorf("Only bound persistent volume claims can be expanded"))
    	}
    
    	// Growing Persistent volumes is only allowed for PVCs for which their StorageClass
    	// explicitly allows it
    	if !pvcr.allowResize(pvc, oldPvc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top