Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,069 for Field3 (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    			lhs:   UnstructuredToVal(map[string]interface{}{"field1": "a", "field2": "b"}, &objectSchema),
    			rhs:   UnstructuredToVal(map[string]interface{}{"field1": "a", "field2": "b"}, &objectSchema),
    			equal: true,
    		},
    		{
    			name:  "objects are equal regardless of field order",
    			lhs:   UnstructuredToVal(map[string]interface{}{"field1": "a", "field2": "b"}, &objectSchema),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/encoding/csv/reader.go

    		}
    		if len(line) == 0 || line[0] != '"' {
    			// Non-quoted string field
    			i := bytes.IndexRune(line, r.Comma)
    			field := line
    			if i >= 0 {
    				field = field[:i]
    			} else {
    				field = field[:len(field)-lengthNL(field)]
    			}
    			// Check to make sure a quote does not appear in field.
    			if !r.LazyQuotes {
    				if j := bytes.IndexByte(field, '"'); j >= 0 {
    					col := pos.col + j
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    			`<FieldC>A.C.C</FieldC>` +
    			`<EmbedB>` +
    			`<FieldB>A.B.B</FieldB>` +
    			`<FieldA>` +
    			`<A1>A.B.C.A1</A1>` +
    			`<A2>A.B.C.A2</A2>` +
    			`</FieldA>` +
    			`<FieldC>A.B.C.C</FieldC>` +
    			`</EmbedB>` +
    			`<FieldA>A.A</FieldA>` +
    			`<FieldE>A.D.E</FieldE>` +
    			`</EmbedA>`,
    	},
    
    	// Anonymous struct pointer field which is nil
    	{
    		Value:     &EmbedB{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    		}
    		_ = stmt.Schema.ParseIndexes()
    		field := stmt.Schema.LookUpField(fieldName)
    		if field == nil {
    			t.Fatalf("%v: failed to find column %q", utils.FileWithLineNum(), fieldName)
    		}
    		if field.Unique != unique {
    			t.Fatalf("%v: %q column %q unique should be %v but got %v", utils.FileWithLineNum(), stmt.Schema.Table, fieldName, unique, field.Unique)
    		}
    		if field.UniqueIndex != uniqueIndex {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  5. schema/index_test.go

    			Class: "UNIQUE",
    			Fields: []schema.IndexOption{
    				{Field: &schema.Field{Name: "FieldD"}},
    				// Note: Duplicate Columns
    				{Field: &schema.Field{Name: "FieldD"}},
    			},
    		},
    		"uniq_field_e1_e2": {
    			Name:  "uniq_field_e1_e2",
    			Class: "UNIQUE",
    			Fields: []schema.IndexOption{
    				{Field: &schema.Field{Name: "FieldE1"}},
    				{Field: &schema.Field{Name: "FieldE2"}},
    			},
    		},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. hack/testdata/CRD/foo-updated-subfield.yaml

    kind: Foo
    apiVersion: company.com/v1
    metadata:
      name: test
      labels:
        pruneGroup: "true"
    someField: field1
    otherField: field2
    nestedField:
      someSubfield: modifiedSubfield
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 01 15:43:24 UTC 2017
    - 203 bytes
    - Viewed (0)
  7. hack/testdata/CRD/foo.yaml

    kind: Foo
    apiVersion: company.com/v1
    metadata:
      name: test
      labels:
        pruneGroup: "true"
    someField: field1
    otherField: field2
    nestedField:
      someSubfield: subfield1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 01 15:43:24 UTC 2017
    - 196 bytes
    - Viewed (0)
  8. hack/testdata/CRD/foo-2.yaml

    kind: Foo
    apiVersion: company.com/v1
    metadata:
      name: second-instance
      namespace: default
      labels:
        pruneGroup: "true"
    someField: field1
    otherField: field2
    nestedField:
      someSubfield: subfield1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 17:04:19 UTC 2021
    - 228 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/fields/fields.go

    limitations under the License.
    */
    
    package fields
    
    import (
    	"sort"
    	"strings"
    )
    
    // Fields allows you to present fields independently from their storage.
    type Fields interface {
    	// Has returns whether the provided field exists.
    	Has(field string) (exists bool)
    
    	// Get returns the value for the provided field.
    	Get(field string) (value string)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 19 14:50:16 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  10. pkg/test/echo/fields.go

    	MethodField           Field = "Method"
    	ProtocolField         Field = "Proto"
    	AlpnField             Field = "Alpn"
    	RequestHeaderField    Field = "RequestHeader"
    	ResponseHeaderField   Field = "ResponseHeader"
    	ClusterField          Field = "Cluster"
    	IstioVersionField     Field = "IstioVersion"
    	IPField               Field = "IP" // The Requester’s IP Address.
    	LatencyField          Field = "Latency"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top