Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for virtual (0.03 sec)

  1. docs/en/docs/virtual-environments.md

    # Virtual Environments { #virtual-environments }
    
    When you work in Python projects you probably should use a **virtual environment** (or a similar mechanism) to isolate the packages you install for each project.
    
    /// info
    
    If you already know about virtual environments, how to create them and use them, you might want to skip this section. ๐Ÿค“
    
    ///
    
    /// tip
    
    A **virtual environment** is different than an **environment variable**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  2. docs/ja/docs/virtual-environments.md

    $ deactivate
    
    // Activate the virtual environment in prisoner-of-azkaban/.venv ๐Ÿš€
    $ source .venv/bin/activate
    
    // Now when you run python, it will find the package sirius installed in this virtual environment โœจ
    $ python main.py
    
    I solemnly swear ๐Ÿบ
    ```
    
    </div>
    
    ## ไปฃๆ›ฟๆ‰‹ๆฎต
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Mar 19 12:22:33 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  3. docs/ko/docs/virtual-environments.md

    # ๊ฐ€์ƒ ํ™˜๊ฒฝ
    
    Python ํ”„๋กœ์ ํŠธ๋ฅผ ์ž‘์—…ํ•  ๋•Œ๋Š” **๊ฐ€์ƒ ํ™˜๊ฒฝ** (๋˜๋Š” ์ด์™€ ์œ ์‚ฌํ•œ ๋„๊ตฌ)์„ ์‚ฌ์šฉํ•˜๋Š” ๊ฒƒ์ด ์ข‹์Šต๋‹ˆ๋‹ค. ๊ฐ ํ”„๋กœ์ ํŠธ ๋งˆ๋‹ค ์„ค์น˜ํ•˜๋Š” ํŒจํ‚ค์ง€๋ฅผ ๋ถ„๋ฆฌํ•˜์—ฌ ๊ด€๋ฆฌํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    /// info | ์ •๋ณด
    
    ์ด๋ฏธ ๊ฐ€์ƒ ํ™˜๊ฒฝ์— ๋Œ€ํ•ด ์ž˜ ์•Œ๊ณ  ์žˆ๋‹ค๋ฉด, ์ด ์„น์…˜์€ ๊ฑด๋„ˆ ๋›ฐ์–ด๋„ ๊ดœ์ฐฎ์Šต๋‹ˆ๋‹ค. ๐Ÿค“
    
    ///
    
    /// tip | ํŒ
    
    **๊ฐ€์ƒ ํ™˜๊ฒฝ(Virtual Environment)** ์€ **ํ™˜๊ฒฝ ๋ณ€์ˆ˜(Environment Variable)** ์™€ ๋‹ค๋ฆ…๋‹ˆ๋‹ค.
    
    **ํ™˜๊ฒฝ ๋ณ€์ˆ˜**๋Š” ์‹œ์Šคํ…œ์— ์กด์žฌํ•˜๋ฉฐ, ํ”„๋กœ๊ทธ๋žจ์ด ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ๋Š” ๋ณ€์ˆ˜์ž…๋‹ˆ๋‹ค.
    
    **๊ฐ€์ƒ ํ™˜๊ฒฝ**์€ ๋ช‡๋ช‡ ํŒŒ์ผ๋กœ ๊ตฌ์„ฑ๋œ ํ•˜๋‚˜์˜ ๋””๋ ‰ํ„ฐ๋ฆฌ์ž…๋‹ˆ๋‹ค.
    
    ///
    
    /// info | ์ •๋ณด
    
    ์ด ํŽ˜์ด์ง€์—์„œ๋Š” **๊ฐ€์ƒ ํ™˜๊ฒฝ**์˜ ์‚ฌ์šฉ ๋ฐฉ๋ฒ•๊ณผ ์ž‘๋™ ๋ฐฉ์‹์„ ์„ค๋ช…ํ•ฉ๋‹ˆ๋‹ค.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:10:41 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

            }, page);
        }
    
        /**
         * Gets the base path for virtual host based on the virtual host key and page.
         *
         * @param s The virtual host key
         * @param page The HTML page
         * @return The base path for the virtual host
         */
        protected String getVirtualHostBasePath(final String s, final HtmlNext page) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            return relatedQueryMap.size();
        }
    
        /**
         * Extracts the virtual host key from a RelatedQuery entity.
         * If the virtual host is blank or null, returns an empty string.
         *
         * @param entity the RelatedQuery entity to extract the host key from
         * @return the virtual host key, or empty string if blank or null
         */
        protected String getHostKey(final RelatedQuery entity) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

        }
    
        /**
         * Extracts the virtual host key from a RelatedContent entity.
         * If the virtual host is blank or null, returns an empty string.
         * This key is used to organize related content by virtual host.
         *
         * @param entity the RelatedContent entity to extract the host key from
         * @return the virtual host key, or empty string if not specified
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/request-forms-and-files.md

    /// info
    
    To receive uploaded files and/or form data, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Import `File` and `Form` { #import-file-and-form }
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. docs/en/docs/environment-variables.md

    <div class="termy">
    
    ```console
    $ C:\opt\custompython\bin\python
    ```
    
    </div>
    
    ////
    
    This information will be useful when learning about [Virtual Environments](virtual-environments.md){.internal-link target=_blank}.
    
    ## Conclusion { #conclusion }
    
    With this you should have a basic understanding of what **environment variables** are and how to use them in Python.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/manually.md

    Just keep in mind that when you read "server" in general, it could refer to one of those two things.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java

            mockBhv.setTestData(testData);
    
            int count = relatedQueryHelper.load();
            assertEquals(1, count); // One virtual host key (empty)
    
            String[] results = relatedQueryHelper.getRelatedQueries("java");
            assertEquals(3, results.length);
            assertEquals("programming", results[0]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16.3K bytes
    - Viewed (0)
Back to top