Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 183 for retain (0.17 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    			t.Errorf("Any controller should be allowed when no retention policy (retain behavior) is specified. Incorrectly identified unexpected controller at %s", tc.name)
    		}
    		for _, policy := range []apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    			{WhenDeleted: "Retain", WhenScaled: "Delete"},
    			{WhenDeleted: "Delete", WhenScaled: "Retain"},
    			{WhenDeleted: "Delete", WhenScaled: "Delete"},
    		} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will not be deleted.
    	RetainPersistentVolumeClaimRetentionPolicyType PersistentVolumeClaimRetentionPolicyType = "Retain"
    	// RetentionPersistentVolumeClaimRetentionPolicyType specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will be deleted in the scenario specified in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/types.go

    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will not be deleted.
    	RetainPersistentVolumeClaimRetentionPolicyType PersistentVolumeClaimRetentionPolicyType = "Retain"
    	// RetentionPersistentVolumeClaimRetentionPolicyType specifies that
    	// PersistentVolumeClaims associated with StatefulSet VolumeClaimTemplates
    	// will be deleted in the scenario specified in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

     *  Fix: Change the declaration of `OkHttpClient.cache()` to return a `@Nullable Cache`. The return
        value has always been nullable but it wasn't declared properly.
     *  Fix: Reverse suppression of connect exceptions. When both a call and its retry fail, we now
        throw the initial exception which is most likely to be actionable.
     *  Fix: Retain interrupted state when throwing `InterruptedIOException`. A single interrupt should
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    		if c.Err != nil {
    			return fmt.Sprintf("%s: %v", first, c.UnwrapModuleError())
    		}
    		return fmt.Sprintf("%s is above %s", first, c.Constraint.Version)
    	}
    
    	adverb := ""
    	if len(c.Path) > 2 {
    		adverb = "indirectly "
    	}
    	if c.Err != nil {
    		return fmt.Sprintf("%s %srequires %s: %v", first, adverb, last, c.UnwrapModuleError())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if cStatus == nil || cStatus.State == kubecontainer.ContainerStateRunning {
    		return false
    	}
    	return cStatus.ExitCode == 0
    }
    
    func isInPlacePodVerticalScalingAllowed(pod *v1.Pod) bool {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		return false
    	}
    	if types.IsStaticPod(pod) {
    		return false
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    		return nil, fmt.Errorf("error getting deleter volume plugin for volume %q: %w", volume.Name, err)
    	}
    	return plugin, nil
    }
    
    // obtain provisioner/deleter name for a volume
    func (ctrl *PersistentVolumeController) getProvisionerNameFromVolume(volume *v1.PersistentVolume) string {
    	plugin, err := ctrl.findDeletablePlugin(volume)
    	if err != nil {
    		return "N/A"
    	}
    	if plugin != nil {
    		return plugin.GetPluginName()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation_test.go

    				capacity := goodCapacity
    				capacity.StorageClassName = ""
    				return &capacity
    			}(),
    		},
    		"bad-storage-class-name": {
    			isExpectedFailure: true,
    			capacity: func() *storage.CSIStorageCapacity {
    				capacity := goodCapacity
    				capacity.StorageClassName = invalidName
    				return &capacity
    			}(),
    		},
    		"good-capacity-value": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

          return delegate;
        }
    
        @Override
        public boolean contains(@CheckForNull Object object) {
          if (!(object instanceof List)) {
            return false;
          }
          List<?> list = (List<?>) object;
          if (list.size() != axes.size()) {
            return false;
          }
          int i = 0;
          for (Object o : list) {
            if (!axes.get(i).contains(o)) {
              return false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    				if (bits>>(word%8))&1 == 0 {
    					return '$'
    				}
    			}
    
    			val := *(*uintptr)(unsafe.Pointer(p))
    			if state != nil && state.stack.lo <= val && val < state.stack.hi {
    				return '@'
    			}
    
    			span := spanOfHeap(val)
    			if span == nil {
    				return ' '
    			}
    			idx := span.objIndex(val)
    			if span.isFree(idx) {
    				return ' '
    			}
    			return '*'
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top