Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,756 for valid (0.2 sec)

  1. pilot/pkg/config/kube/gateway/testdata/http.status.yaml.golden

    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: All references resolved
          reason: ResolvedRefs
          status: "True"
          type: ResolvedRefs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/rules/RuleSourceBackedRuleActionTest.groovy

                                                          "Method theRule(java.util.List<java.lang.Integer>) is not a valid rule method: First parameter of a rule method must be of type java.util.List<java.lang.String>",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultConfigurableFilePermissionsTest.java

            assertInvalidUnixPermission("rwx|wxrwx", "'rwx|wxrwx' isn't a proper Unix permission. '|' is not a valid Unix permission READ flag, must be 'r' or '-'.");
            assertInvalidUnixPermission("rwxrwx|wx", "'rwxrwx|wx' isn't a proper Unix permission. '|' is not a valid Unix permission READ flag, must be 'r' or '-'.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_body/test_tutorial001.py

            {
                "detail": [
                    {
                        "type": "float_parsing",
                        "loc": ["body", "price"],
                        "msg": "Input should be a valid number, unable to parse string as a number",
                        "input": "twenty",
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_body/test_tutorial001_py310.py

            {
                "detail": [
                    {
                        "type": "float_parsing",
                        "loc": ["body", "price"],
                        "msg": "Input should be a valid number, unable to parse string as a number",
                        "input": "twenty",
                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. pkg/apis/discovery/validation/validation_test.go

    					Protocol: protocolPtr(api.ProtocolTCP),
    				}},
    				Endpoints: []discovery.Endpoint{{
    					Addresses: generateIPAddresses(1),
    					Hostname:  utilpointer.String("valid-123"),
    					NodeName:  utilpointer.String("valid-node-name"),
    				}},
    			},
    		},
    
    		// expected failures
    		"bad-node-name": {
    			expectedErrors: 1,
    			endpointSlice: &discovery.EndpointSlice{
    				ObjectMeta:  standardMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				return claim
    			},
    		},
    		"valid-add-allocation": {
    			oldClaim: validClaim,
    			update: func(claim *resource.ResourceClaim) *resource.ResourceClaim {
    				claim.Status.DriverName = "valid"
    				claim.Status.Allocation = &resource.AllocationResult{
    					ResourceHandles: []resource.ResourceHandle{
    						{
    							DriverName: "valid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxyTest.groovy

        }
    
        def "returns parameter invalid when more than one getter for property"() {
            when:
            ToolingParameterProxy.validateParameter(InvalidParameter7)
    
            then:
            IllegalArgumentException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. internal/jwt/parser.go

    func (c *StandardClaims) SetAccessKey(accessKey string) {
    	c.Subject = accessKey
    	c.AccessKey = accessKey
    }
    
    // Valid - implements https://godoc.org/github.com/golang-jwt/jwt#Claims compatible
    // claims interface, additionally validates "accessKey" fields.
    func (c *StandardClaims) Valid() error {
    	if err := c.StandardClaims.Valid(); err != nil {
    		return err
    	}
    
    	if c.AccessKey == "" && c.Subject == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. pkg/webhooks/validation/server/server_test.go

    				Object:    runtime.RawExtension{Raw: valid},
    				Operation: kube.Create,
    			},
    			allowed: true,
    		},
    		{
    			name:  "valid update",
    			admit: wh.validate,
    			in: &kube.AdmissionRequest{
    				Kind:      metav1.GroupVersionKind{Kind: collections.Mock.Kind()},
    				Object:    runtime.RawExtension{Raw: valid},
    				Operation: kube.Update,
    			},
    			allowed: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top