Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 629 for fieldsV1 (0.14 sec)

  1. chainable_api.go

    	tx.Statement.Distinct = true
    	if len(args) > 0 {
    		tx = tx.Select(args[0], args[1:]...)
    	}
    	return
    }
    
    // Select specify fields that you want when querying, creating, updating
    //
    // Use Select when you only want a subset of the fields. By default, GORM will select all fields.
    // Select accepts both string arguments and arrays.
    //
    //	// Select name and age of user using multiple arguments
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Top-level and per-version columns are mutually exclusive.
    	// +optional
    	AdditionalPrinterColumns []CustomResourceColumnDefinition
    	// selectableFields specifies paths to fields that may be used as field selectors.
    	// A maximum of 8 selectable fields are allowed.
    	// See https://kubernetes.io/docs/concepts/overview/working-with-objects/field-selectors
    	// Top-level and per-version columns are mutually exclusive.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_body/test_tutorial001.py

                "detail": [
                    {
                        "type": "model_attributes_type",
                        "loc": ["body"],
                        "msg": "Input should be a valid dictionary or object to extract fields from",
                        "input": "name=Foo&price=50.5",
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
                "detail": [
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_body/test_tutorial001_py310.py

                "detail": [
                    {
                        "type": "model_attributes_type",
                        "loc": ["body"],
                        "msg": "Input should be a valid dictionary or object to extract fields from",
                        "input": "name=Foo&price=50.5",
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
                "detail": [
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. cmd/signature-v4-parser_test.go

    			expectedAuthField: signValues{},
    			expectedErrCode:   ErrSignatureVersionNotSupported,
    		},
    		// Test case - 3.
    		// Test case with missing fields.
    		// A valid authorization string should have 3 fields.
    		{
    			inputV4AuthStr:    signV4Algorithm,
    			expectedAuthField: signValues{},
    			expectedErrCode:   ErrMissingFields,
    		},
    		// Test case - 4.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    	if _, ok := metadata.FilterMetadata[IstioMetadataKey]; !ok {
    		metadata.FilterMetadata[IstioMetadataKey] = &structpb.Struct{
    			Fields: map[string]*structpb.Value{},
    		}
    	}
    	metadata.FilterMetadata[IstioMetadataKey].Fields["config"] = &structpb.Value{
    		Kind: &structpb.Value_StringValue{
    			StringValue: s,
    		},
    	}
    	return metadata
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    // * RawExtension: for every schema with `x-kubernetes-embedded-resource: true`, `x-kubernetes-preserve-unknown-fields: true` and `type: object` are set
    // * IntOrString: for `x-kubernetes-int-or-string: true` either `type` is empty under `anyOf` and `allOf` or the schema structure is one of these:
    //
    //  1. anyOf:
    //     - type: integer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

    - Rule source classes must directly extend org.gradle.model.RuleSource
    - Field field1 is not valid: Fields must be static final.
    - Field field2 is not valid: Fields must be static final.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  9. pkg/bootstrap/instance_test.go

    	delete(got.Node.Metadata.Fields, annotation.SidecarStatsInclusionPrefixes.Name)
    	delete(want.Node.Metadata.Fields, annotation.SidecarStatsInclusionPrefixes.Name)
    	delete(got.Node.Metadata.Fields, annotation.SidecarStatsInclusionSuffixes.Name)
    	delete(want.Node.Metadata.Fields, annotation.SidecarStatsInclusionSuffixes.Name)
    	delete(got.Node.Metadata.Fields, annotation.SidecarStatsInclusionRegexps.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. fastapi/security/oauth2.py

        for an OAuth2 password flow.
    
        The OAuth2 specification dictates that for a password flow the data should be
        collected using form data (instead of JSON) and that it should have the specific
        fields `username` and `password`.
    
        All the initialization parameters are extracted from the request.
    
        Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top