Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for fieldsV1 (0.27 sec)

  1. pkg/volume/csi/csi_mounter_test.go

    			c := &csiMountMgr{
    				plugin:              tt.fields.plugin,
    				driverName:          tt.fields.driverName,
    				volumeLifecycleMode: tt.fields.volumeLifecycleMode,
    				volumeID:            tt.fields.volumeID,
    				specVolumeID:        tt.fields.specVolumeID,
    				readOnly:            tt.fields.readOnly,
    				needSELinuxRelabel:  tt.fields.supportsSELinux,
    				spec:                tt.fields.spec,
    				pod:                 tt.fields.pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    		in            *api.Pod
    		fieldSelector fields.Selector
    		expectMatch   bool
    	}{
    		{
    			in: &api.Pod{
    				Spec: api.PodSpec{NodeName: "nodeA"},
    			},
    			fieldSelector: fields.ParseSelectorOrDie("spec.nodeName=nodeA"),
    			expectMatch:   true,
    		},
    		{
    			in: &api.Pod{
    				Spec: api.PodSpec{NodeName: "nodeB"},
    			},
    			fieldSelector: fields.ParseSelectorOrDie("spec.nodeName=nodeA"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. src/reflect/type.go

    	case Struct:
    		t := (*structType)(unsafe.Pointer(T))
    		v := (*structType)(unsafe.Pointer(V))
    		if len(t.Fields) != len(v.Fields) {
    			return false
    		}
    		if t.PkgPath.Name() != v.PkgPath.Name() {
    			return false
    		}
    		for i := range t.Fields {
    			tf := &t.Fields[i]
    			vf := &v.Fields[i]
    			if tf.Name.Name() != vf.Name.Name() {
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. fastapi/param_functions.py

            Union[str, None],
            Doc(
                """
                'Blacklist' validation step. The vanilla parameter field will be the
                single one of the alias' or set of aliases' fields and all the other
                fields will be ignored at serialization time.
                """
            ),
        ] = None,
        title: Annotated[
            Optional[str],
            Doc(
                """
                Human-readable title.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/minio-dashboard.json

            "colorMode": "value",
            "graphMode": "none",
            "justifyMode": "auto",
            "orientation": "auto",
            "reduceOptions": {
              "calcs": [
                "mean"
              ],
              "fields": "",
              "values": false
            },
            "showPercentChange": false,
            "text": {},
            "textMode": "auto",
            "wideLayout": true
          },
          "pluginVersion": "10.4.0",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    			json: &structpb.Struct{
    				Fields: map[string]*structpb.Value{
    					"key1": {Kind: &structpb.Value_StringValue{StringValue: "%REQ_WITHOUT_QUERY(key1:val1)%"}},
    				},
    			},
    			expected: []*core.TypedExtensionConfig{
    				reqWithoutQueryFormatter,
    			},
    		},
    		{
    			name: "with-metadata",
    			json: &structpb.Struct{
    				Fields: map[string]*structpb.Value{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"otherField": "hello world",
    					}},
    				// (This test shows an array cannpt be correlated by index with its old value)
    				expectError{applyPatchOperation{
    					"add new, valid fields to elements of the array, failing to ratchet unchanged old fields within the array elements by correlating by index due to atomic list",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"values": []interface{}{
    							map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    			return &r
    		}
    	case *ast.StructType:
    		changed := false
    		fields := *t.Fields
    		fields.List = nil
    		for _, f := range t.Fields.List {
    			ft := p.rewriteUnsafe(f.Type)
    			if ft == f.Type {
    				fields.List = append(fields.List, f)
    			} else {
    				fn := *f
    				fn.Type = ft
    				fields.List = append(fields.List, &fn)
    				changed = true
    			}
    		}
    		if changed {
    			r := *t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    		}
    	}
    }
    
    // Test to catch new fields in FilterChainMatch message.
    func TestFilterChainMatchFields(t *testing.T) {
    	fcm := listener.FilterChainMatch{}
    	e := reflect.ValueOf(&fcm).Elem()
    	// If this fails, that means new fields have been added to FilterChainMatch, filterChainMatchEqual function needs to be updated.
    	if e.NumField() != 14 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    						continue
    					}
    					i := fieldIndex(utyp.fields, check.pkg, key.Name, false)
    					if i < 0 {
    						var alt Object
    						if j := fieldIndex(fields, check.pkg, key.Name, true); j >= 0 {
    							alt = fields[j]
    						}
    						msg := check.lookupError(base, key.Name, alt, true)
    						check.error(kv.Key, MissingLitField, msg)
    						continue
    					}
    					fld := fields[i]
    					check.recordUse(key, fld)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top