Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for retLine (0.28 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

       * iterated are the individual subsets created. Each of these subsets occupies an additional O(n)
       * memory but only for as long as the user retains a reference to it. That is, the set returned by
       * {@code combinations} does not retain the individual subsets.
       *
       * @param set the set of elements to take combinations of
       * @param size the number of elements per combination
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent
    	// volume claims created from volumeClaimTemplates. By default, all persistent
    	// volume claims are created as needed and retained until manually deleted. This
    	// policy allows the lifecycle to be altered, for example by deleting persistent
    	// volume claims when their stateful set is deleted, or when their pod is scaled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. 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)
  4. guava/src/com/google/common/collect/Sets.java

       * iterated are the individual subsets created. Each of these subsets occupies an additional O(n)
       * memory but only for as long as the user retains a reference to it. That is, the set returned by
       * {@code combinations} does not retain the individual subsets.
       *
       * @param set the set of elements to take combinations of
       * @param size the number of elements per combination
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. 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)
  6. docs/changelogs/changelog_3x.md

        This simple option dramatically changes the behavior of the request body and of the entire
        call.
    
        The `RequestBody.writeTo()` method may now retain a reference to the provided sink and
        hand it off to another thread to write to it after `writeTo` returns.
    
        The `EventListener` may now see requests and responses interleaved in ways not previously
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	//
    	// 1) Everything reachable from the object must be marked.
    	// This ensures that when we pass the object to its finalizer,
    	// everything the finalizer can reach will be retained.
    	//
    	// 2) Finalizer specials (which are not in the garbage
    	// collected heap) are roots. In practice, this means the fn
    	// field must be scanned.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    				// in the next call to this method
    				return err
    			}
    			if volume.Spec.PersistentVolumeReclaimPolicy == v1.PersistentVolumeReclaimRetain {
    				// volume is being retained, it references a claim that does not exist now.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            seen << iterator.next()
            !iterator.hasNext()
            seen == iterationOrder(b, a, c)
        }
    
        def "provider for element is queried when elements iterated and insertion order is retained"() {
            containerAllowsExternalProviders()
            def provider1 = Mock(ProviderInternal)
            def provider2 = Mock(ProviderInternal)
    
            given:
            addToContainer(b)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	//
    	// Read and written with the world stopped or with mheap_.lock held.
    	lastHeapGoal uint64
    
    	// heapLive is the number of bytes considered live by the GC.
    	// That is: retained by the most recent GC plus allocated
    	// since then. heapLive ≤ memstats.totalAlloc-memstats.totalFree, since
    	// heapAlloc includes unmarked objects that have not yet been swept (and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top