Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 446 for pos5 (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java

         *
         * @param body the request body containing data config information
         * @return JSON response with result status
         */
        // POST /api/admin/dataconfig/setting
        @Execute
        public JsonResponse<ApiResult> post$setting(final CreateBody body) {
            validateApi(body, messages -> {});
            body.crudMode = CrudMode.CREATE;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

        private static final String DOC_ID_FIELD = "doc_id";
    
        /**
         * The GET method.
         */
        protected static final String GET = "GET";
    
        /**
         * The POST method.
         */
        protected static final String POST = "POST";
    
        /**
         * The MIME type.
         */
        protected String mimeType = "application/json";
    
        /**
         * Constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java

            requestBody.put("interval_time", 1000);
            requestBody.put("boost", 100.0);
            requestBody.put("available", true);
            requestBody.put("sort_order", 1);
            checkMethodBase(requestBody).post("/api/admin/webconfig/setting")
                    .then()
                    .body("response.created", equalTo(true))
                    .body("response.status", equalTo(0));
        }
    
        String getWebConfigId() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        @Required
        @Size(max = 1000)
        public String reading;
    
        /** Part of speech tag for the token */
        @Required
        @Size(max = 1000)
        public String pos;
    
        /**
         * Initializes the form with default values for creating a new Kuromoji dictionary entry.
         */
        public void initialize() {
            crudMode = CrudMode.CREATE;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/cors.md

    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”— โšซ๏ธ ๐Ÿ‘† **FastAPI** ๐Ÿˆธ โš™๏ธ `CORSMiddleware`.
    
    * ๐Ÿ—„ `CORSMiddleware`.
    * โœ ๐Ÿ“‡ โœ” ๐Ÿ‡จ๐Ÿ‡ณ (๐ŸŽป).
    * ๐Ÿšฎ โšซ๏ธ "๐Ÿ› ๏ธ" ๐Ÿ‘† **FastAPI** ๐Ÿˆธ.
    
    ๐Ÿ‘† ๐Ÿ’ช โœ” ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ‘ฉโ€๐Ÿ’ป โœ”:
    
    * ๐ŸŽ“ (โœ” ๐ŸŽš, ๐Ÿช, โ™’๏ธ).
    * ๐ŸŽฏ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ‘ฉโ€๐Ÿ”ฌ (`POST`, `PUT`) โš–๏ธ ๐ŸŒ ๐Ÿ‘ซ โฎ๏ธ ๐Ÿƒ `"*"`.
    * ๐ŸŽฏ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐ŸŽš โš–๏ธ ๐ŸŒ ๐Ÿ‘ซ โฎ๏ธ ๐Ÿƒ `"*"`.
    
    {* ../../docs_src/cors/tutorial001.py hl[2,6:11,13:19] *}
    
    ๐Ÿ”ข ๐Ÿ”ข โš™๏ธ `CORSMiddleware` ๐Ÿ› ๏ธ ๐Ÿšซ ๐Ÿ”ข, ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ’ช ๐ŸŽฏ ๐Ÿ› ๏ธ ๐ŸŽฏ ๐Ÿ‡จ๐Ÿ‡ณ, ๐Ÿ‘ฉโ€๐Ÿ”ฌ, โš–๏ธ ๐ŸŽš, โœ” ๐Ÿ–ฅ โœ” โš™๏ธ ๐Ÿ‘ซ โœ–๏ธ-๐Ÿ†” ๐Ÿ”‘.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java

         *
         * @param body the label type data to create
         * @return JSON response containing the created label type setting ID
         */
        // POST /api/admin/labeltype/setting
        @Execute
        public JsonResponse<ApiResult> post$setting(final CreateBody body) {
            validateApi(body, messages -> {});
            body.crudMode = CrudMode.CREATE;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/response-status-code.md

    ใƒฌใ‚นใƒใƒณใ‚นใƒขใƒ‡ใƒซใ‚’ๆŒ‡ๅฎšใ™ใ‚‹ใฎใจๅŒใ˜ๆ–นๆณ•ใงใ€ใƒฌใ‚นใƒใƒณใ‚นใซไฝฟ็”จใ•ใ‚Œใ‚‹HTTPใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰ใ‚’ไปฅไธ‹ใฎ*path operations*ใฎใ„ใšใ‚Œใ‹ใฎ`status_code`ใƒ‘ใƒฉใƒกใƒผใ‚ฟใงๅฎฃ่จ€ใ™ใ‚‹ใ“ใจใ‚‚ใงใใพใ™ใ€‚
    
    * `@app.get()`
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    * ใชใฉใ€‚
    
    {* ../../docs_src/response_status_code/tutorial001.py hl[6] *}
    
    /// note | ๅ‚™่€ƒ
    
    `status_code`ใฏใ€Œใƒ‡ใ‚ณใƒฌใƒผใ‚ฟใ€ใƒกใ‚ฝใƒƒใƒ‰๏ผˆ`get`ใ€`post`ใชใฉ๏ผ‰ใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใงใ‚ใ‚‹ใ“ใจใซๆณจๆ„ใ—ใฆใใ ใ•ใ„ใ€‚ใ™ในใฆใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใ‚„ใƒœใƒ‡ใ‚ฃใฎใ‚ˆใ†ใซใ€*path operation้–ขๆ•ฐ*ใฎใ‚‚ใฎใงใฏใ‚ใ‚Šใพใ›ใ‚“ใ€‚
    
    ///
    
    `status_code`ใƒ‘ใƒฉใƒกใƒผใ‚ฟใฏHTTPใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰ใ‚’ๅซใ‚€ๆ•ฐๅ€คใ‚’ๅ—ใ‘ๅ–ใ‚Šใพใ™ใ€‚
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

        public static EsStatusPostcard droppedInto(Postbox postbox, MPCall<EsStatusPostcard> postcardLambda) {
            EsStatusPostcard postcard = new EsStatusPostcard();
            postcardLambda.write(postcard);
            postbox.post(postcard);
            return postcard;
        }
    
        // ===================================================================================
        //                                                                           Meta Data
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/login/newpassword.jsp

    				<%-- Message --%>
    				<div>
    					<la:info id="msg" message="false">
    						<div class="alert alert-info">${msg}</div>
    					</la:info>
    					<la:errors />
    				</div>
    				<la:form styleId="newPassword" method="post">
    					<div class="input-group mb-3">
    						<c:set var="ph_new_password">
    							<la:message key="labels.login.placeholder_new_password" />
    						</c:set>
    						<la:password property="password" class="form-control"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/SecureKeyManager.java

            int pos = 0;
            System.arraycopy(baseKey, 0, input, pos, baseKey.length);
            pos += baseKey.length;
            System.arraycopy(labelBytes, 0, input, pos, labelBytes.length);
            pos += labelBytes.length;
            if (context != null) {
                System.arraycopy(context, 0, input, pos, context.length);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 21.5K bytes
    - Viewed (0)
Back to top