Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 330 for newobject (0.13 sec)

  1. src/cmd/internal/goobj/builtinlist.go

    // Code generated by mkbuiltin.go. DO NOT EDIT.
    
    package goobj
    
    var builtins = [...]struct {
    	name string
    	abi  int
    }{
    	{"runtime.newobject", 1},
    	{"runtime.mallocgc", 1},
    	{"runtime.panicdivide", 1},
    	{"runtime.panicshift", 1},
    	{"runtime.panicmakeslicelen", 1},
    	{"runtime.panicmakeslicecap", 1},
    	{"runtime.throwinit", 1},
    	{"runtime.panicwrap", 1},
    	{"runtime.gopanic", 1},
    	{"runtime.gorecover", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/ensurer/strategy.go

    	}
    
    	klog.V(5).InfoS(fmt.Sprintf("The %s already exists, checking whether it is up to date", bootstrap.GetObjectKind().GroupVersionKind().Kind), "type", configurationType, "name", name)
    	newObject, update, err := strategy.ReviseIfNeeded(ops, current, bootstrap)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. src/runtime/map_fast64.go

    	}
    	hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher for consistency with mapassign.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
    	}
    
    again:
    	bucket := hash & bucketMask(h.B)
    	if h.growing() {
    		growWork_fast64(t, h, bucket)
    	}
    	b := (*bmap)(add(h.buckets, bucket*uintptr(t.BucketSize)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. test/nilptr3.go

    type TT struct {
    	SS
    }
    
    func f(t *TT) *byte {
    	// See issue 17242.
    	s := &t.SS  // ERROR "generated nil check"
    	return &s.x // ERROR "removed nil check"
    }
    
    // make sure not to do nil check for newobject
    func f7() (*Struct, float64) {
    	t := new(Struct)
    	p := &t.Y    // ERROR "removed nil check"
    	return t, *p // ERROR "removed nil check"
    }
    
    func f9() []int {
    	x := new([1]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    	// object has matching labels. objectSelector is evaluated against both
    	// the oldObject and newObject that would be sent to the cel validation, and
    	// is considered to match if either object matches the selector. A null
    	// object (oldObject in the case of create, or newObject in the case of
    	// delete) or an object that cannot have labels (like a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. src/runtime/map.go

    		elem = add(insertk, abi.MapBucketCount*uintptr(t.KeySize))
    	}
    
    	// store new key/elem at insert position
    	if t.IndirectKey() {
    		kmem := newobject(t.Key)
    		*(*unsafe.Pointer)(insertk) = kmem
    		insertk = kmem
    	}
    	if t.IndirectElem() {
    		vmem := newobject(t.Elem)
    		*(*unsafe.Pointer)(elem) = vmem
    	}
    	typedmemmove(t.Key, insertk, key)
    	*inserti = top
    	h.count++
    
    done:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

        "ObjectSelector decides whether to run the validation based on if the object has matching labels. objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector. A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match. Use the object selector...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  8. src/runtime/map_fast32.go

    	}
    	hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher for consistency with mapassign.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
    	}
    
    again:
    	bucket := hash & bucketMask(h.B)
    	if h.growing() {
    		growWork_fast32(t, h, bucket)
    	}
    	b := (*bmap)(add(h.buckets, bucket*uintptr(t.BucketSize)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // object has matching labels. objectSelector is evaluated against both
      // the oldObject and newObject that would be sent to the cel validation, and
      // is considered to match if either object matches the selector. A null
      // object (oldObject in the case of create, or newObject in the case of
      // delete) or an object that cannot have labels (like a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // object has matching labels. objectSelector is evaluated against both
      // the oldObject and newObject that would be sent to the cel validation, and
      // is considered to match if either object matches the selector. A null
      // object (oldObject in the case of create, or newObject in the case of
      // delete) or an object that cannot have labels (like a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top