Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 977 for _objects (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    // In any failure to parse given object, it returns error.
    type AttrFunc func(obj runtime.Object) (labels.Set, fields.Set, error)
    
    // FieldMutationFunc allows the mutation of the field selection fields.  It is mutating to
    // avoid the extra allocation on this common path
    type FieldMutationFunc func(obj runtime.Object, fieldSet fields.Set) error
    
    func DefaultClusterScopedAttr(obj runtime.Object) (labels.Set, fields.Set, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/runtime/metrics.go

    	// Derived from values in heapStatsDelta.
    
    	// inObjects is the bytes of memory occupied by objects,
    	inObjects uint64
    
    	// numObjects is the number of live objects in the heap.
    	numObjects uint64
    
    	// totalAllocated is the total bytes of heap objects allocated
    	// over the lifetime of the program.
    	totalAllocated uint64
    
    	// totalFreed is the total bytes of heap objects freed
    	// over the lifetime of the program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/scope.go

    }
    
    // A lazyObject represents an imported Object that has not been fully
    // resolved yet by its importer.
    type lazyObject struct {
    	parent  *Scope
    	resolve func() Object
    	obj     Object
    	once    sync.Once
    }
    
    // resolve returns the Object represented by obj, resolving lazy
    // objects as appropriate.
    func resolve(name string, obj Object) Object {
    	if lazy, ok := obj.(*lazyObject); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/go/types/scope.go

    }
    
    // A lazyObject represents an imported Object that has not been fully
    // resolved yet by its importer.
    type lazyObject struct {
    	parent  *Scope
    	resolve func() Object
    	obj     Object
    	once    sync.Once
    }
    
    // resolve returns the Object represented by obj, resolving lazy
    // objects as appropriate.
    func resolve(name string, obj Object) Object {
    	if lazy, ok := obj.(*lazyObject); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

        List<IncludedBuildSpec> getIncludedBuilds();
    
        /**
         * The parent scope for this and all settings objects.
         *
         * Gradle runtime.
         */
        ClassLoaderScope getBaseClassLoaderScope();
    
        /**
         * The scope for this settings object.
         *
         * Gradle runtime + this object's script's additions.
         */
        ClassLoaderScope getClassLoaderScope();
    
        ServiceRegistry getServices();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/go/types/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. docs/iam/policies/deny-objects-with-invalid-sse-kms-key-id.json

    Shubhendu <******@****.***> 1715701387 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 15:43:07 UTC 2024
    - 439 bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "type": "string"
              },
              "ownerReferences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  10. cmd/erasure-sets.go

    	delErrs := make([]error, len(objects))
    
    	// The result of delete objects
    	delObjects := make([]DeletedObject, len(objects))
    
    	// A map between a set and its associated objects
    	objSetMap := make(map[int][]delObj)
    
    	// Group objects by set index
    	for i, object := range objects {
    		index := s.getHashedSetIndex(object.ObjectName)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top