Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 149 for Printer (0.16 sec)

  1. src/encoding/json/decode_test.go

    				}
    			}
    			if tt.ptr == nil {
    				return
    			}
    
    			typ := reflect.TypeOf(tt.ptr)
    			if typ.Kind() != reflect.Pointer {
    				t.Fatalf("%s: unmarshalTest.ptr %T is not a pointer type", tt.Where, tt.ptr)
    			}
    			typ = typ.Elem()
    
    			// v = new(right-type)
    			v := reflect.New(typ)
    
    			if !reflect.DeepEqual(tt.ptr, v.Interface()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    	// ref from the element type to the pointer type -- it would be
    	// more efficient to do it this way as opposed to via name lookups.
    
    	ptrname := "*" + d.nameFromDIESym(dwtype)
    	if die := d.find(ptrname); die != 0 {
    		return die
    	}
    
    	pdie := d.newdie(&dwtypes, dwarf.DW_ABRV_PTRTYPE, ptrname)
    	d.newrefattr(pdie, dwarf.DW_AT_type, dwtype)
    
    	// The DWARF info synthesizes pointer types that don't exist at the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    func (check *Checker) kindString(typ Type) string {
    	switch under(typ).(type) {
    	case *Array:
    		return "array"
    	case *Slice:
    		return "slice"
    	case *Struct:
    		return "struct"
    	case *Pointer:
    		return "pointer"
    	case *Signature:
    		return "func"
    	case *Interface:
    		if isTypeParam(typ) {
    			return check.sprintf("type parameter %s", typ)
    		}
    		return "interface"
    	case *Map:
    		return "map"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

        border: none;
        height:16px;
    }
    div.table-tabs {
        padding:10px 0 0 1px;
        margin:10px 0 0 0;
    }
    div.table-tabs > button {
        border: none;
        cursor: pointer;
        padding: 5px 12px 7px 12px;
        font-weight: bold;
        margin-right: 8px;
    }
    div.table-tabs > .active-table-tab {
        background: var(--selected-background-color);
        color: var(--selected-text-color);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2_test.go

    					},
    					Status: batchv1.JobStatus{StartTime: &metav1.Time{Time: justBeforeThePriorHour()}},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Namespace:       "foo-ns",
    						Name:            "finished-job-started-minute-ago",
    						OwnerReferences: []metav1.OwnerReference{{Name: "fooer", Controller: pointer.Bool(true)}},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    	"R16",
    	"R17",
    	"R18", // platform register, not used
    	"R19",
    	"R20",
    	"R21",
    	"R22",
    	"R23",
    	"R24",
    	"R25",
    	"R26",
    	// R27 = REGTMP not used in regalloc
    	"g",   // aka R28
    	"R29", // frame pointer, not used
    	"R30", // aka REGLINK
    	"SP",  // aka R31
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    	"F11",
    	"F12",
    	"F13",
    	"F14",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"] {
    	-webkit-appearance: button;
    	/* 2 */
    	cursor: pointer;
    	/* 3 */
    }
    
    /** Re-set default cursor for disabled elements. */
    button[disabled],
    html input[disabled] {
    	cursor: default;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal_test.go

    		Value:     &OmitAttrTest{},
    		ExpectXML: `<OmitAttrTest></OmitAttrTest>`,
    	},
    
    	// pointer fields
    	{
    		Value:       &PointerFieldsTest{Name: &nameAttr, Age: &ageAttr, Contents: &contentsAttr},
    		ExpectXML:   `<dummy name="Sarah" age="12">lorem ipsum</dummy>`,
    		MarshalOnly: true,
    	},
    
    	// empty chardata pointer field
    	{
    		Value:       &ChardataEmptyTest{},
    		ExpectXML:   `<test></test>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    			if e.Op == syntax.Mul {
    				// pointer indirection
    				check.exprOrType(x, e.X, false)
    				switch x.mode {
    				case invalid:
    					goto Error
    				case typexpr:
    					check.validVarType(e.X, x.typ)
    					x.typ = &Pointer{base: x.typ}
    				default:
    					var base Type
    					if !underIs(x.typ, func(u Type) bool {
    						p, _ := u.(*Pointer)
    						if p == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    		{`package n5a; var _ interface{} = (*int)(nil)`, `nil`, `*int`},
    		{`package n5b; var _ interface{m()} = nil`, `nil`, `interface{m()}`},
    		{`package n6; import "unsafe"; var _ unsafe.Pointer = nil`, `nil`, `unsafe.Pointer`},
    
    		{`package n10; var (x *int; _ = x == nil)`, `nil`, `*int`},
    		{`package n11; var (x func(); _ = x == nil)`, `nil`, `func()`},
    		{`package n12; var (x []byte; _ = x == nil)`, `nil`, `[]byte`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top