Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 835 for jsconf (0.03 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/jsconf.js

    !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){"use strict";a.formUtils.registerLoadedModule("jsconf"),a.setupValidation=function(b){var c=a(b.form||"form");a.each(b.validate||b.validation||{},function(b,d){var e;e="#"===b[0]?a(b):"."===b[0]?c.find(b):c.find('*[name="'+b+'"]'),e.attr("data-validation",d.validation),a.each(d,function(a,b){"valida...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 867 bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/bin/m2.conf

    # under the License.
    
    set maven.mainClass default org.apache.maven.cling.MavenCling
    
    main is ${maven.mainClass} from plexus.core
    
    set maven.conf default ${maven.home}/conf
    set maven.installation.conf default ${maven.conf}
    
    [plexus.core]
    load       ${maven.conf}/logging
    optionally ${maven.home}/lib/ext/redisson/*.jar
    optionally ${maven.home}/lib/ext/hazelcast/*.jar
    optionally ${user.home}/.m2/ext/*.jar
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 28 07:45:35 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

            assertTrue(result2 instanceof MatchAllQueryBuilder);
    
            // Both should generate the same JSON
            String json1 = result1.toString().replaceAll("[\\s\\n]", "");
            String json2 = result2.toString().replaceAll("[\\s\\n]", "");
            assertEquals(json1, json2);
        }
    
        public void test_execute_withVeryLargeBoost() {
            // Test execute method with very large boost value
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  4. .github/renovate.json

    {
      "$schema": "https://docs.renovatebot.com/renovate-schema.json",
      "extends": [
        "config:recommended",
        ":dependencyDashboard"
      ],
      "semanticCommits": "disabled",
      "labels": [
        "renovate"
      ],
      "ignoreDeps": [
        "com.squareup.okhttp3:okhttp",
        "com.squareup.okhttp3:okhttp-tls",
        "com.squareup.okhttp3:mockwebserver"
      ],
      "packageRules": [
        {
          "groupName": "bnd",
          "matchPackageNames": [
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu May 22 14:38:52 UTC 2025
    - 1K bytes
    - Viewed (0)
  5. docs/ko/docs/tutorial/encoder.md

    Pydantic 모델과 같은 객체를 받고 JSON 호환 가능한 버전으로 반환합니다:
    
    {* ../../docs_src/encoder/tutorial001.py hl[5,22] *}
    
    이 예시는 Pydantic 모델을 `dict`로, `datetime` 형식을 `str`로 변환합니다.
    
    이렇게 호출한 결과는 파이썬 표준인 <a href="https://docs.python.org/3/library/json.html#json.dumps" class="external-link" target="_blank">`json.dumps()`</a>로 인코딩 할 수 있습니다.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. docs/ko/docs/tutorial/request-forms.md

    <abbr title="specification">사양</abbr>에서는 필드 이름이 `username` 및 `password`로 정확하게 명명되어야 하고, JSON이 아닌 폼 필드로 전송해야 합니다.
    
    `Form`을 사용하면 유효성 검사, 예제, 별칭(예: `username` 대신 `user-name`) 등을 포함하여 `Body`(및 `Query`, `Path`, `Cookie`)와 동일한 구성을 선언할 수 있습니다.
    
    /// info | 정보
    
    `Form`은 `Body`에서 직접 상속되는 클래스입니다.
    
    ///
    
    /// tip | 팁
    
    폼 본문을 선언할 때, 폼이 없으면 매개변수가 쿼리 매개변수나 본문(JSON) 매개변수로 해석(interpret)되기 때문에 `Form`을 명시적으로 사용해야 합니다.
    
    ///
    
    ## "폼 필드"에 대해
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 09 12:42:55 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. docs/ko/docs/tutorial/security/simple-oauth2.md

    ///
    
    {* ../../docs_src/security/tutorial003.py hl[85] *}
    
    /// tip | 팁
    
    사양에 따라 이 예제와 동일하게 `access_token` 및 `token_type`이 포함된 JSON을 반환해야 합니다.
    
    이는 코드에서 직접 수행해야 하며 해당 JSON 키를 사용해야 합니다.
    
    사양을 준수하기 위해 스스로 올바르게 수행하기 위해 거의 유일하게 기억해야 하는 것입니다.
    
    나머지는 **FastAPI**가 처리합니다.
    
    ///
    
    ## 의존성 업데이트하기
    
    이제 의존성을 업데이트를 할 겁니다.
    
    이 사용자가 활성화되어 있는 *경우에만* `current_user`를 가져올 겁니다.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Feb 15 11:19:12 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess_config.crawling_info/crawling_info.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 246 bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_config.crawling_info_param/crawling_info_param.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 247 bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess_config.data_config/data_config.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 859 bytes
    - Viewed (0)
Back to top