Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for Required (0.27 sec)

  1. tests/test_tutorial/test_generate_clients/test_tutorial003.py

                        "title": "ResponseMessage",
                        "required": ["message"],
                        "type": "object",
                        "properties": {"message": {"title": "Message", "type": "string"}},
                    },
                    "User": {
                        "title": "User",
                        "required": ["username", "email"],
                        "type": "object",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
     * @author Shunji Makino
     * @author Keiichi Watanabe
     */
    public class CreateForm {
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 1000)
        public String regex;
    
        @Size(max = 1000)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_body_updates/test_tutorial001_py39.py

                        },
                        "summary": "Read Item",
                        "operationId": "read_item_items__item_id__get",
                        "parameters": [
                            {
                                "required": True,
                                "schema": {"title": "Item Id", "type": "string"},
                                "name": "item_id",
                                "in": "path",
                            }
                        ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java

            return type;
        }
    
        public void setType(String type) {
            this.type = type;
        }
    
        public boolean isRequired() {
            return required;
        }
    
        public void setRequired(boolean required) {
            this.required = required;
        }
    
        public String getDescription() {
            return description;
        }
    
        public void setDescription(String description) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_replace_readonly.txt

    -- go.mod --
    module m
    
    go 1.16
    -- go.mod.latest --
    module m
    
    go 1.16
    
    replace rsc.io/quote => ./quote
    
    require rsc.io/quote v1.5.2 // indirect
    -- go.mod.specific --
    module m
    
    go 1.16
    
    replace rsc.io/quote v1.0.0-doesnotexist => ./quote
    
    require rsc.io/quote v1.0.0-doesnotexist // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/mvs/graph.go

    // The reqs slice must not be modified after it is passed to Require.
    //
    // m must be reachable by some existing chain of requirements from g's target,
    // and Require must not have been called for it already.
    //
    // If any of the modules in reqs has the same path as g's target,
    // the target must have higher precedence than the version in req.
    func (g *Graph) Require(m module.Version, reqs []module.Version) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.h

    namespace tensorflow {
    
    // Runs quantization on `module_op`. `saved_model_bundle` is required to
    // retrieve information about the original model (e.g. signature def mapping)
    // because quantization requires exporting the intermediate `ModuleOp` back to
    // SavedModel for calibration. Similarly, `saved_model_dir` is required to
    // access the assets of the original model. `saved_model_tags` uniquely
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 02:44:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/CreateForm.java

    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    public class CreateForm {
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 10000)
        public String urlExpr;
    
        @Required
        @Size(max = 10000)
        public String boostExpr;
    
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/UploadForm.java

    package org.codelibs.fess.app.web.admin.dict.mapping;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * @author nullpos
     * @author ma2tani
     */
    public class UploadForm {
    
        @Required
        public String dictId;
    
        @Required
        public MultipartFormFile charMappingFile;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 960 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/UploadForm.java

    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * @author shinsuke
     * @author Keiichi Watanabe
     */
    public class UploadForm {
    
        @Required
        public String dictId;
    
        @Required
        public MultipartFormFile synonymFile;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 966 bytes
    - Viewed (0)
Back to top