Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for persistent (0.23 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// the list which it supports. If none of the versions specified in this list
    	// supported by API server, validation will fail for this object.
    	// If a persisted webhook configuration specifies allowed versions and does not
    	// include any versions known to the API Server, calls to the webhook will fail
    	// and be subject to the failure policy.
    	// Default to `['v1beta1']`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// the list which it supports. If none of the versions specified in this list
    	// supported by API server, validation will fail for this object.
    	// If a persisted webhook configuration specifies allowed versions and does not
    	// include any versions known to the API Server, calls to the webhook will fail
    	// and be subject to the failure policy.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

    KUBE_PANIC_WATCH_DECODE_ERROR="${KUBE_PANIC_WATCH_DECODE_ERROR:-true}"
    export KUBE_PANIC_WATCH_DECODE_ERROR
    
    # Default list of admission Controllers to invoke prior to persisting objects in cluster
    # The order defined here does not matter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	ws.Produces(append(mediaTypes, streamMediaTypes...)...)
    	ws.ApiVersion(a.group.GroupVersion.String())
    
    	return ws
    }
    
    // calculate the storage gvk, the gvk objects are converted to before persisted to the etcd.
    func getStorageVersionKind(storageVersioner runtime.GroupVersioner, storage rest.Storage, typer runtime.ObjectTyper) (schema.GroupVersionKind, error) {
    	object := storage.New()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    		c.iamSTSAccountsMap[key] = u
    	} else {
    		c.iamUsersMap[key] = u
    	}
    	c.updatedAt = time.Now()
    	return nil
    }
    
    // IAMStorageAPI defines an interface for the IAM persistence layer
    type IAMStorageAPI interface {
    	// The role of the read-write lock is to prevent go routines from
    	// concurrently reading and writing the IAM storage. The (r)lock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. cmd/iam.go

    	OpenIDConfig openid.Config // only valid if OpenID is configured
    	STSTLSConfig xtls.Config   // only valid if STS TLS is configured
    
    	usersSysType UsersSysType
    
    	rolesMap map[arn.ARN]string
    
    	// Persistence layer for IAM subsystem
    	store *IAMStoreSys
    
    	// configLoaded will be closed and remain so after first load.
    	configLoaded chan struct{}
    }
    
    // IAMUserType represents a user type inside MinIO server
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    By default, Gradle does not use the configuration cache.
    To enable the cache at build time, use the `configuration-cache` flag:
    
    ----
    ❯ gradle --configuration-cache
    ----
    
    You can also enable the cache persistently in a `gradle.properties` file using the `org.gradle.configuration-cache` property:
    
    [source,properties]
    ----
    org.gradle.configuration-cache=true
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// that state in informer callbacks. But that would cause
    		// problems for using the plugin in the Cluster Autoscaler. If
    		// this step here turns out to be expensive, we may have to
    		// maintain and update state more persistently.
    		//
    		// Claims are treated as "allocated" if they are in the assume cache
    		// or currently their allocation is in-flight.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			}
    		})
    	}
    }
    
    // seedMultiLevelData creates a set of keys with a multi-level structure, returning a resourceVersion
    // from before any were created along with the full set of objects that were persisted
    func seedMultiLevelData(ctx context.Context, store storage.Interface) (string, []*example.Pod, error) {
    	// Setup storage with the following structure:
    	//  /
    	//   - first/
    	//  |         - bar
    	//  |
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This will change in Gradle 8.0.
    Strict accessor generation will become the default.
    To opt in to the strict behavior, set the 'org.gradle.kotlin.dsl.precompiled.accessors.strict' system property to `true`.
    
    This can be achieved persistently in the `gradle.properties` file in your build root directory:
    
    ```properties
    systemProp.org.gradle.kotlin.dsl.precompiled.accessors.strict=true
    ```
    
    === Potential breaking changes
    
    [[kotlin_1_7_10]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top