Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 440 for persists (0.3 sec)

  1. pkg/api/v1/persistentvolume/util.go

    				return false
    			}
    		}
    		return true
    	case source.CephFS != nil:
    		if source.CephFS.SecretRef != nil {
    			// previously persisted PV objects use claimRef namespace
    			ns := getClaimRefNamespace(pv)
    			if len(source.CephFS.SecretRef.Namespace) > 0 {
    				// use the secret namespace if namespace is set
    				ns = source.CephFS.SecretRef.Namespace
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:23 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                  description: |-
                                    LifetimeType specifies whether the cookie has a permanent or
                                    session-based lifetime. A permanent cookie persists until its
                                    specified expiry time, defined by the Expires or Max-Age cookie
                                    attributes, while a session cookie is deleted when the current
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  3. pkg/registry/core/rangeallocation/registry.go

    limitations under the License.
    */
    
    package rangeallocation
    
    import (
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // RangeRegistry is a registry that can retrieve or persist a RangeAllocation object.
    type RangeRegistry interface {
    	// Get returns the latest allocation, an empty object if no allocation has been made,
    	// or an error if the allocation could not be retrieved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  4. internal/logger/target/kafka/kafka.go

    	// Reading logCh must hold read lock on logChMu (to avoid read race)
    	// Sending a value on logCh must hold read lock on logChMu (to avoid closing)
    	logCh   chan interface{}
    	logChMu sync.RWMutex
    
    	// store to persist and replay the logs to the target
    	// to avoid missing events when the target is down.
    	store          store.Store[interface{}]
    	storeCtxCancel context.CancelFunc
    
    	initKafkaOnce      once.Init
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/create_update.go

    	// the object.  For example: remove fields that are not to be persisted,
    	// sort order-insensitive list fields, etc.  This should not remove fields
    	// whose presence would be considered a validation error.
    	PrepareForUpdate(ctx context.Context, obj, old runtime.Object)
    	// ValidateUpdate is invoked after default fields in the object have been
    	// filled in before the object is persisted.  This method should not mutate
    	// the object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 18 14:42:36 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/NoOpDependencyLockingProviderTest.groovy

            when:
            def result = provider.loadLockState('conf', Describables.of("foo"))
    
            then:
            !result.mustValidateLockState()
        }
    
        def 'does nothing on persist'() {
            given:
            def result = Mock(Set)
    
    
            when:
            provider.persistResolvedDependencies('conf', Describables.of("foo"), result, emptySet())
    
            then:
            0 * _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/streams/DefaultValueStoreTest.groovy

                }
            }
        }
    
        def "can persist block address"() {
            expect:
            def block1 = write("test 1")
            def block2 = write("test 2")
    
            def copy1 = storeAndLoad(block1)
            def copy2 = storeAndLoad(block2)
    
            read(copy2) == "test 2"
            read(copy1) == "test 1"
        }
    
        def "can persist block address and read block later"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/NoDataCompileOperation.java

     */
    
    package org.gradle.groovy.scripts.internal;
    
    import org.gradle.groovy.scripts.Transformer;
    import org.gradle.internal.serialize.Serializer;
    
    /**
     * A {@link CompileOperation} that does not extract or persist any data.
     */
    public class NoDataCompileOperation implements CompileOperation<Object> {
    
        private final String id;
        private final String stage;
        private final Transformer transformer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 27 19:54:22 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

    provisioning through\n   a PersistentVolumeClaim (see EphemeralVolumeSource for more\n   information on the connection between this volume type\n   and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top