Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Requirement (0.34 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * When enabled, additional parameters are added to search result URLs.
         */
        @Size(max = 10)
        public String appendQueryParameter;
    
        /**
         * Enable or disable login requirement for search access.
         * When enabled, users must authenticate before performing searches.
         */
        @Size(max = 10)
        public String loginRequired;
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/first-steps.md

    * `@app.trace()`
    
    /// tip
    
    You are free to use each operation (HTTP method) as you wish.
    
    **FastAPI** doesn't enforce any specific meaning.
    
    The information here is presented as a guideline, not a requirement.
    
    For example, when using GraphQL you normally perform all the actions using only `POST` operations.
    
    ///
    
    ### Step 4: define the **path operation function** { #step-4-define-the-path-operation-function }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        /** Property key for virtual host value configuration. */
        public static final String VIRTUAL_HOST_VALUE_PROPERTY = "virtual.host.value";
    
        /** Property key for login requirement configuration. */
        public static final String LOGIN_REQUIRED_PROPERTY = "login.required";
    
        /** Property key for result collapse configuration. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        || descriptor.getRequiredMavenVersion().trim().isEmpty();
    
                if (isBlankVersion) {
                    // only take value from underlying POM if plugin descriptor has no explicit Maven requirement
                    descriptor.setRequiredMavenVersion(artifact.getProperty("requiredMavenVersion", null));
                }
    
                return descriptor;
            });
    
            pluginDescriptor.setPlugin(plugin);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
  5. requirements.txt

    -e .[all]
    -r requirements-tests.txt
    -r requirements-docs.txt
    -r requirements-translations.txt
    prek==0.2.22
    # For generating screenshots
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 19 12:44:55 UTC 2025
    - 147 bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    * ⬆ Update pre-commit requirement from <4.0.0,>=2.17.0 to >=2.17.0,<5.0.0. PR [#12749](https://github.com/fastapi/fastapi/pull/12749) by [@dependabot[bot]](https://github.com/apps/dependabot).
    * ⬆ Bump typer from 0.12.3 to 0.12.5. PR [#12748](https://github.com/fastapi/fastapi/pull/12748) by [@dependabot[bot]](https://github.com/apps/dependabot).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
  7. requirements-tests.txt

    -e .[all]
    -r requirements-docs-tests.txt
    pytest >=7.1.3,<9.0.0
    coverage[toml] >= 6.5.0,< 8.0
    mypy ==1.14.1
    dirty-equals ==0.9.0
    sqlmodel==0.0.27
    flask >=1.1.2,<4.0.0
    strawberry-graphql >=0.200.0,< 1.0.0
    anyio[trio] >=3.2.1,<5.0.0
    PyJWT==2.9.0
    pyyaml >=5.3.1,<7.0.0
    pwdlib[argon2] >=0.2.1
    inline-snapshot>=0.21.1
    pytest-codspeed==4.2.0
    # types
    types-ujson ==5.10.0.20240515
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 394 bytes
    - Viewed (0)
  8. requirements-docs.txt

    -e .
    -r requirements-docs-tests.txt
    mkdocs-material==9.7.0
    mdx-include >=1.4.1,<2.0.0
    mkdocs-redirects>=1.2.1,<1.3.0
    typer == 0.16.0
    pyyaml >=5.3.1,<7.0.0
    # For Material for MkDocs, Chinese search
    jieba==0.42.1
    # For image processing by Material for MkDocs
    pillow==11.3.0
    # For image processing by Material for MkDocs
    cairosvg==2.8.2
    mkdocstrings[python]==0.30.1
    griffe-typingdoc==0.3.0
    griffe-warnings-deprecated==1.1.0
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 14:39:10 UTC 2025
    - 554 bytes
    - Viewed (0)
  9. requirements-translations.txt

    Sebastián Ramírez <******@****.***> 1765558453 -0800
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 12 16:54:13 UTC 2025
    - 54 bytes
    - Viewed (0)
  10. .github/workflows/build-docs.yml

            uses: astral-sh/setup-uv@v7
            with:
              version: "0.4.15"
              enable-cache: true
              cache-dependency-glob: |
                requirements**.txt
                pyproject.toml
          - name: Install docs extras
            run: uv pip install -r requirements-docs.txt
          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(python ./scripts/docs.py langs-json)" >> $GITHUB_OUTPUT
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 3.3K bytes
    - Viewed (0)
Back to top