Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,080 for Field2 (0.14 sec)

  1. src/runtime/netpoll_wasip1.go

    //   subscriptions might not match the index of the associated event in the
    //   events buffer, both the subscription and event structs contain a userdata
    //   field and when a subscription yields an event the userdata fields will
    //   match.
    // - there's no explicit timeout parameter, although a time limit can be added
    //   by using "clock" subscriptions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "IData", argLength: 1},                // arg0=interface, returns data field
    
    	// Structs
    	{name: "StructMake0"},                              // Returns struct with 0 fields.
    	{name: "StructMake1", argLength: 1},                // arg0=field0.  Returns struct.
    	{name: "StructMake2", argLength: 2},                // arg0,arg1=field0,field1.  Returns struct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/testdata/none_lds_http.json

                    "Config": {
                      "fields": {
                        "access_log": {
                          "Kind": {
                            "ListValue": {
                              "values": [
                                {
                                  "Kind": {
                                    "StructValue": {
                                      "fields": {
                                        "config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  4. internal/s3select/sql/value_test.go

    			fields: fields{
    				value: []byte("-0"),
    			},
    			want:   0,
    			wantOK: true,
    		},
    		{
    			name: "one",
    			fields: fields{
    				value: []byte("1"),
    			},
    			want:   1,
    			wantOK: true,
    		},
    		{
    			name: "minusone",
    			fields: fields{
    				value: []byte("-1"),
    			},
    			want:   -1,
    			wantOK: true,
    		},
    		{
    			name: "plusone",
    			fields: fields{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/go/printer/testdata/complit.x

    	V1	= T{
    		F1: "hello",
    		// contains filtered or unexported fields
    	}
    	V2	= T{
    
    		F1: "hello",
    		// contains filtered or unexported fields
    	}
    	V3	= T{
    		F1:	"hello",
    		F2: T2{
    			A: "world",
    			// contains filtered or unexported fields
    		},
    		// contains filtered or unexported fields
    	}
    	V4	= T{
    		// contains filtered or unexported fields
    	}
    
    	// Single-line declarations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 01 19:53:32 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  6. src/reflect/visiblefields.go

    package reflect
    
    // VisibleFields returns all the visible fields in t, which must be a
    // struct type. A field is defined as visible if it's accessible
    // directly with a FieldByName call. The returned fields include fields
    // inside anonymous struct members and unexported fields. They follow
    // the same order found in the struct, with anonymous fields followed
    // immediately by their promoted fields.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile_test.go

    		if err := compareFieldsForType(t, reflect.TypeOf(v1.ResourceAttributes{}), resourceAttributesDeclType, field, fields); err != nil {
    			t.Error(err)
    			return nil
    		}
    		return resourceAttributesDeclType
    	case reflect.TypeOf(&v1.NonResourceAttributes{}):
    		nonResourceAttributesDeclType := buildNonResourceAttributesType(field, fields)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/go/types/struct.go

    // if no field has a tag, tags may be nil.
    func NewStruct(fields []*Var, tags []string) *Struct {
    	var fset objset
    	for _, f := range fields {
    		if f.name != "_" && fset.insert(f) != nil {
    			panic("multiple fields with the same name")
    		}
    	}
    	if len(tags) > len(fields) {
    		panic("more tags than fields")
    	}
    	s := &Struct{fields: fields, tags: tags}
    	s.markComplete()
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/matcher.go

    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    )
    
    // ObjectMetaFieldsSet returns a fields that represent the ObjectMeta.
    func ObjectMetaFieldsSet(objectMeta *metav1.ObjectMeta, hasNamespaceField bool) fields.Set {
    	if !hasNamespaceField {
    		return fields.Set{
    			"metadata.name": objectMeta.Name,
    		}
    	}
    	return fields.Set{
    		"metadata.name":      objectMeta.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 03 06:33:43 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  10. pkg/registry/resource/resourceslice/strategy.go

    func toSelectableFields(slice *resource.ResourceSlice) fields.Set {
    	// The purpose of allocation with a given number of elements is to reduce
    	// amount of allocations needed to create the fields.Set. If you add any
    	// field here or the number of object-meta related fields changes, this should
    	// be adjusted.
    	fields := make(fields.Set, 3)
    	fields["nodeName"] = slice.NodeName
    	fields["driverName"] = slice.DriverName
    
    	// Adds one field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top