Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 923 for tagged (0.04 sec)

  1. src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java

            this.targetClass = targetClass;
            this.methodName = methodName;
            this.methodArgClasses = methodArgClasses;
        }
    
        /**
         * Returns the {@link Class} of the target.
         *
         * @return {@link Class} of the target
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * Returns the method name.
         *
         * @return Method name
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

            JobLog jobLog = new JobLog();
            jobLog.setId("test-log-1");
            jobLog.setJobName("Test Job");
            jobLog.setEndTime(null);
    
            MonitorTarget target = new MonitorTarget(jobLog);
            try {
                target.expired();
                // If it succeeds, check that lastUpdated is set
                assertNotNull(jobLog.getLastUpdated());
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/middleware.md

    proprietary headers can be added <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers" class="external-link" target="_blank">using the 'X-' prefix</a>.
    
    But if you have custom headers that you want a client in a browser to be able to see, you need to add them to your CORS configurations ([CORS (Cross-Origin Resource Sharing)](cors.md){.internal-link target=_blank}) using the parameter `expose_headers` documented in <a href="https://www.starlette.io/middleware/#corsmiddleware"...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/body.md

    โฎ๏ธ ๐Ÿ–ผ โœŠ โฎ๏ธ <a href="https://code.visualstudio.com" class="external-link" target="_blank">๐ŸŽ™ ๐ŸŽ™ ๐Ÿ“Ÿ</a>.
    
    โœ‹๏ธ ๐Ÿ‘† ๐Ÿ”œ ๐Ÿคš ๐ŸŽ ๐Ÿ‘จโ€๐ŸŽจ ๐Ÿ•โ€๐Ÿฆบ โฎ๏ธ <a href="https://www.jetbrains.com/pycharm/" class="external-link" target="_blank">๐Ÿ—’</a> &amp; ๐ŸŒ… ๐ŸŽ ๐Ÿ ๐Ÿ‘จโ€๐ŸŽจ:
    
    <img src="/img/tutorial/body/image05.png">
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. docs/tr/docs/tutorial/first-steps.md

    ### Kontrol Edelim
    
    Tarayฤฑcฤฑnฤฑzฤฑ aรงฤฑp <a href="http://127.0.0.1:8000" class="external-link" target="_blank">http://127.0.0.1:8000</a> baฤŸlantฤฑsฤฑna gidin.
    
    ลžu ลŸekilde bir JSON yanฤฑtฤฑ ile karลŸฤฑlaลŸacaฤŸฤฑz:
    
    ```JSON
    {"message": "Hello World"}
    ```
    
    ### EtkileลŸimli API Dokรผmantasyonu
    
    ลžimdi <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a> baฤŸlantฤฑsฤฑnฤฑ aรงalฤฑm.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java

            this.targetClass = targetClass;
            this.methodName = methodName;
            this.argTypes = argTypes;
        }
    
        /**
         * Returns the target class.
         *
         * @return the target class
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * Returns the method name.
         *
         * @return the method name
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. cmd/admin-handlers-config-kv.go

    	vars := mux.Vars(r)
    	key := vars["key"]
    
    	var subSys, target string
    	{
    		ws := strings.SplitN(key, madmin.SubSystemSeparator, 2)
    		subSys = ws[0]
    		if len(ws) == 2 {
    			if ws[1] == "" {
    				target = madmin.Default
    			} else {
    				target = ws[1]
    			}
    		}
    	}
    
    	subSysConfigs, err := cfg.GetSubsysInfo(subSys, target, true)
    	if err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/websockets.md

    ///
    
    ## More info { #more-info }
    
    To learn more about the options, check Starlette's documentation for:
    
    * <a href="https://www.starlette.io/websockets/" class="external-link" target="_blank">The `WebSocket` class</a>.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java

            this.targetClass = targetClass;
            this.paramTypes = paramTypes;
            methodArgs = null;
        }
    
        /**
         * Returns the target class.
         *
         * @return Target class
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * Returns the array of arguments.
         *
         * @return Array of arguments
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  10. docs/em/docs/deployment/versions.md

    **FastAPI** โช โž– โš™๏ธ ๐Ÿญ ๐Ÿ“š ๐Ÿˆธ &amp; โš™๏ธ. &amp; ๐Ÿ’ฏ ๐Ÿ’ฐ ๐Ÿšง 1๏ธโƒฃ0๏ธโƒฃ0๏ธโƒฃ ๐Ÿ’ฏ. โœ‹๏ธ ๐Ÿšฎ ๐Ÿ› ๏ธ ๐Ÿšš ๐Ÿ”œ.
    
    ๐Ÿ†• โš’ ๐Ÿšฎ ๐Ÿ›Ž, ๐Ÿ› ๐Ÿ”ง ๐Ÿ›Ž, &amp; ๐Ÿ“Ÿ ๐Ÿ” ๐Ÿ“‰.
    
    ๐Ÿ‘ˆ โšซ๏ธโ” โฎ๏ธ โฌ `0.x.x`, ๐Ÿ‘‰ ๐ŸŽจ ๐Ÿ‘ˆ ๐Ÿ”  โฌ ๐Ÿ’ช โš  โœ”๏ธ ๐Ÿ’” ๐Ÿ”€. ๐Ÿ‘‰ โฉ <a href="https://semver.org/" class="external-link" target="_blank">โš› ๐Ÿ› ๏ธ</a> ๐Ÿ›.
    
    ๐Ÿ‘† ๐Ÿ’ช โœ ๐Ÿญ ๐Ÿˆธ โฎ๏ธ **FastAPI** โ–ถ๏ธ๏ธ ๐Ÿ”œ (&amp; ๐Ÿ‘† โœ”๏ธ ๐ŸŽฒ ๐Ÿ”จ โšซ๏ธ ๐Ÿ•ฐ), ๐Ÿ‘† โœ”๏ธ โš’ ๐Ÿ’ญ ๐Ÿ‘ˆ ๐Ÿ‘† โš™๏ธ โฌ ๐Ÿ‘ˆ ๐Ÿ‘ท โ˜‘ โฎ๏ธ ๐ŸŽ‚ ๐Ÿ‘† ๐Ÿ“Ÿ.
    
    ## ๐Ÿ“Œ ๐Ÿ‘† `fastapi` โฌ
    
    ๐Ÿฅ‡ ๐Ÿ‘œ ๐Ÿ‘† ๐Ÿ”œ "๐Ÿ“Œ" โฌ **FastAPI** ๐Ÿ‘† โš™๏ธ ๐ŸŽฏ ๐Ÿ“ฐ โฌ ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ญ ๐Ÿ‘ท โ˜‘ ๐Ÿ‘† ๐Ÿˆธ.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top