Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,054 for fieldsV1 (3.27 sec)

  1. schema/schema_test.go

    	}
    
    	checkUserSchema(t, user)
    }
    
    func checkUserSchema(t *testing.T, user *schema.Schema) {
    	// check schema
    	checkSchema(t, user, schema.Schema{Name: "User", Table: "users"}, []string{"ID"})
    
    	// check fields
    	fields := []schema.Field{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. pkg/registry/core/service/strategy.go

    	return true
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    func (svcStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. api/maven-api-settings/src/main/mdo/settings.mdo

              </description>
            </field>
          </fields>
        </class>
        <!-- /BuildProfile support -->
        <class locationTracker="locations">
          <name>InputLocation</name>
          <version>2.0.0+</version>
          <fields>
            <!-- line, column and source fields are auto-generated by Modello -->
          </fields>
          <codeSegments>
            <codeSegment>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util_test.go

    					IstioMetadataKey: {
    						Fields: map[string]*structpb.Value{
    							"other-config": {
    								Kind: &structpb.Value_StringValue{
    									StringValue: "other-config",
    								},
    							},
    						},
    					},
    				},
    			},
    			&core.Metadata{
    				FilterMetadata: map[string]*structpb.Struct{
    					IstioMetadataKey: {
    						Fields: map[string]*structpb.Value{
    							"other-config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/size.go

    	if t.Noalg() {
    		t.setAlg(ANOALG)
    	}
    	if len(fields) == 1 && !fields[0].Sym.IsBlank() {
    		// One-field struct is same as that one field alone.
    		t.setAlg(fields[0].Type.alg)
    	} else {
    		for i, f := range fields {
    			a := f.Type.alg
    			switch a {
    			case ANOEQ, ANOALG:
    			case AMEM:
    				// Blank fields and padded fields need a special compare.
    				if f.Sym.IsBlank() || IsPaddedField(t, i) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    							Type: "object",
    							Properties: map[string]apiextensions.JSONSchemaProps{
    								"field1": {
    									Type: "string",
    								},
    								"field2": {
    									Type: "string",
    								},
    							},
    						},
    					},
    					SelectableFields: []apiextensions.SelectableField{
    						{
    							JSONPath: ".field1",
    						},
    						{
    							JSONPath: ".field2",
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_builder_test.go

    	}
    	tests := []struct {
    		name   string
    		proxy  *model.Proxy
    		fields fields
    		want   fields
    	}{
    		{
    			name:  "patch add inbound and outbound listener",
    			proxy: sidecarProxy,
    			fields: fields{
    				OutboundListeners: []*listener.Listener{
    					{
    						Name: "outbound-listener",
    					},
    				},
    			},
    			want: fields{
    				InboundListeners: []*listener.Listener{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    }
    
    // objectMetaFieldsSet returns a fields that represent the ObjectMeta.
    func objectMetaFieldsSet(objectMeta metav1.Object, namespaceScoped bool) fields.Set {
    	if namespaceScoped {
    		return fields.Set{
    			"metadata.name":      objectMeta.GetName(),
    			"metadata.namespace": objectMeta.GetNamespace(),
    		}
    	}
    	return fields.Set{
    		"metadata.name": objectMeta.GetName(),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    					ResourceVersion: 2,
    				},
    				{
    					Type:            watch.Modified,
    					PrevObject:      &v1.Pod{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "2"}},
    					PrevObjFields:   fields.Set{"spec.nodeName": ""},
    					Object:          &v1.Pod{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "3"}},
    					ObjFields:       fields.Set{"spec.nodeName": "host"},
    					ResourceVersion: 3,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    }
    
    func (strategy) NamespaceScoped() bool {
    	return false
    }
    
    // GetResetFields returns the set of fields that get reset by the strategy
    // and should not be modified by the user.
    func (strategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"apiextensions.k8s.io/v1": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top