Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for packEface (0.25 sec)

  1. src/internal/reflectlite/value.go

    		panic("can't call pointer on a non-pointer Value")
    	}
    	if v.flag&flagIndir != 0 {
    		return *(*unsafe.Pointer)(v.ptr)
    	}
    	return v.ptr
    }
    
    // packEface converts v to the empty interface.
    func packEface(v Value) any {
    	t := v.typ()
    	var i any
    	e := (*abi.EmptyInterface)(unsafe.Pointer(&i))
    	// First, fill in the data portion of the interface.
    	switch {
    	case t.IfaceIndir():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/reflect/value.go

    		panic("can't call pointer on a non-pointer Value")
    	}
    	if v.flag&flagIndir != 0 {
    		return *(*unsafe.Pointer)(v.ptr)
    	}
    	return v.ptr
    }
    
    // packEface converts v to the empty interface.
    func packEface(v Value) any {
    	t := v.typ()
    	var i any
    	e := (*abi.EmptyInterface)(unsafe.Pointer(&i))
    	// First, fill in the data portion of the interface.
    	switch {
    	case t.IfaceIndir():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

      &:hover {
        background: var(--gradle-blue-lite);
      }
    }
    
    /* Custom Download button*/
    /* CSS */
    .button-9 {
    	appearance: button;
    	backface-visibility: hidden;
    	background-color: #209BC4;
    	border-radius: 6px;
    	border-width: 0;
    	box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .1) 0 2px 5px 0, rgba(0, 0, 0, .07) 0 1px 1px 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top