Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 118 for Field6 (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // APIVersion field. It is necessary to track the version of a field
      // set because it cannot be automatically converted.
      optional string apiVersion = 3;
    
      // Time is the timestamp of when the ManagedFields entry was added. The
      // timestamp will also be updated if a field is added, the manager
      // changes any of the owned fields value or removes a field. The
      // timestamp does not update when a field is removed from the entry
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K 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

    // isPaddedField reports whether the i'th field of struct type t is followed
    // by padding.
    func isPaddedField(t Type, i int) bool {
    	field := t.Field(i)
    	if i+1 < t.NumField() {
    		return field.Offset+field.Type.Size() != t.Field(i+1).Offset
    	}
    	return field.Offset+field.Type.Size() != t.Size()
    }
    
    // StructOf returns the struct type containing fields.
    // The Offset and Index fields are ignored and computed as they would be
    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

                fields will be ignored at serialization time.
                """
            ),
        ] = None,
        convert_underscores: Annotated[
            bool,
            Doc(
                """
                Automatically convert underscores to hyphens in the parameter field name.
    
                Read more about it in the
    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. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final Map<String, String[]> fields = new HashMap<>();
                for (final Map.Entry<String, String[]> entry : request.getParameterMap().entrySet()) {
                    final String key = entry.getKey();
                    if (key.startsWith("fields.")) {
                        final String[] value = simplifyArray(entry.getValue());
                        fields.put(key.substring("fields.".length()), value);
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    status subresource: {\"rule\": \"self.status.actual \u003c= self.spec.maxDesired\"}\n\nIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via `self.field` and field presence can be checked via `has(self.field)`. Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via `self[mapKey]`, map containment can be checked...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					"change field to an invalid string",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": "asd",
    					}}},
    				applyPatchOperation{
    					"change field to a valid byte string",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": "dGhpcyBpcyBwYXNzd29yZA==",
    					}},
    				patchMyCRDV1Beta1Schema{
    					"change `field`'s format to date-time",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. src/go/printer/nodes.go

    	typeTParam
    )
    
    func (p *printer) parameters(fields *ast.FieldList, mode paramMode) {
    	openTok, closeTok := token.LPAREN, token.RPAREN
    	if mode != funcParam {
    		openTok, closeTok = token.LBRACK, token.RBRACK
    	}
    	p.setPos(fields.Opening)
    	p.print(openTok)
    	if len(fields.List) > 0 {
    		prevLine := p.lineFor(fields.Opening)
    		ws := indent
    		for i, par := range fields.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top