Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 135 for nvalid (0.15 sec)

  1. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

                "type": "string"
              },
              "dryRun": {
                "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "dryRun": {
                "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "dryRun": {
                "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "dryRun": {
                "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                "type": "string"
              },
              "dryRun": {
                "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    			c.ctxt.Diag("invalid index shift amount: %v", p)
    		}
    	case AMOVW, AMOVWU, AFMOVS:
    		if amount != 2 && amount != 0 {
    			c.ctxt.Diag("invalid index shift amount: %v", p)
    		}
    	case AMOVD, AFMOVD:
    		if amount != 3 && amount != 0 {
    			c.ctxt.Diag("invalid index shift amount: %v", p)
    		}
    	default:
    		panic("invalid operation")
    	}
    }
    
    func (c *ctxt7) asmout(p *obj.Prog, o *Optab, out []uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String CONSTRAINTS_Size_MESSAGE = "{constraints.Size.message}";
    
        /** The key of the message: {item} is invalid credit card number. */
        public static final String CONSTRAINTS_CreditCardNumber_MESSAGE = "{constraints.CreditCardNumber.message}";
    
        /** The key of the message: {item} is invalid {type} barcode. */
        public static final String CONSTRAINTS_EAN_MESSAGE = "{constraints.EAN.message}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/reflect/value.go

    		u = u.Elem()
    	}
    
    	if !v.IsValid() || !u.IsValid() {
    		return v.IsValid() == u.IsValid()
    	}
    
    	if v.Kind() != u.Kind() || v.Type() != u.Type() {
    		return false
    	}
    
    	// Handle each Kind directly rather than calling valueInterface
    	// to avoid allocating.
    	switch v.Kind() {
    	default:
    		panic("reflect.Value.Equal: invalid Kind")
    	case Bool:
    		return v.Bool() == u.Bool()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    //	...
    //	if s.Valid {
    //	   // use s.String
    //	} else {
    //	   // NULL value
    //	}
    type NullString struct {
    	String string
    	Valid  bool // Valid is true if String is not NULL
    }
    
    // Scan implements the [Scanner] interface.
    func (ns *NullString) Scan(value any) error {
    	if value == nil {
    		ns.String, ns.Valid = "", false
    		return nil
    	}
    	ns.Valid = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. cmd/server_test.go

    }
    
    // TestPutBucketErrors - request for non valid bucket operation
    // and validate it with expected error result.
    func (s *TestSuiteCommon) TestPutBucketErrors(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// generating a HTTP request to create bucket.
    	// using invalid bucket name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top