Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Obj (0.04 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	x := base.Ctxt.LookupInit(fmt.Sprintf("%s.wrapinfo", wsym.Name), func(x *obj.LSym) {
    		objw.SymPtrOff(x, 0, wsym)
    		x.Set(obj.AttrContentAddressable, true)
    	})
    	e.curfn.LSym.Func().WrapInfo = x
    
    	// Emit a funcdata pointing at the wrap info data.
    	p := pp.Prog(obj.AFUNCDATA)
    	p.From.SetConst(rtabi.FUNCDATA_WrapInfo)
    	p.To.Type = obj.TYPE_MEM
    	p.To.Name = obj.NAME_EXTERN
    	p.To.Sym = x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    }
    
    func (f *wrapperRESTForTests) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
    	// Making a DeepCopy here ensures that any in-place mutations of the input
    	// are not going to propagate to verification code, which used to happen
    	// resulting in tests that passed when they shouldn't have.
    	obj = obj.DeepCopyObject()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    									Type:       "object",
    									Properties: map[string]apiextensions.JSONSchemaProps{"foo": {Type: "string"}, "obj": {Type: "object"}},
    									Required:   []string{"foo", "obj"},
    								},
    							},
    							SelectableFields: []apiextensions.SelectableField{{JSONPath: ".foo"}, {JSONPath: ".obj"}},
    						},
    						{Name: "version2", Served: true, Storage: false,
    							Schema: &apiextensions.CustomResourceValidation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				Type:       ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. doc/go_spec.html

    Arguments      = "(" [ ( ExpressionList | Type [ "," ExpressionList ] ) [ "..." ] [ "," ] ] ")" .
    </pre>
    
    
    <pre>
    x
    2
    (s + ".txt")
    f(3.1415, true)
    Point{1, 2}
    m["foo"]
    s[i : j + 1]
    obj.color
    f.p[i].x()
    </pre>
    
    
    <h3 id="Selectors">Selectors</h3>
    
    <p>
    For a <a href="#Primary_expressions">primary expression</a> <code>x</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top