Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 395 for div0 (0.11 sec)

  1. src/main/webapp/WEB-INF/orig/view/header.jsp

    							<span><la:message key="labels.index_help" /></span>
    						</la:link></li>
    				</ul>
    			</div>
    		</nav>
    	</header>
    	<div id="searchOptions" class="control-options">
    		<div class="container">
    			<jsp:include page="/WEB-INF/view/searchOptions.jsp" />
    			<div>
    				<button type="button" class="btn btn-light" id="searchOptionsClearButton">
    					<la:message key="labels.search_options_clear" />
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 24 03:00:28 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  2. docs/nl/docs/environment-variables.md

    ////
    
    Dus als je typt:
    
    <div class="termy">
    
    ```console
    $ python
    ```
    
    </div>
    
    //// tab | Linux, macOS
    
    Zal het systeem het `python`-programma in `/opt/custompython/bin` **vinden** en uitvoeren.
    
    Het zou ongeveer hetzelfde zijn als het typen van:
    
    <div class="termy">
    
    ```console
    $ /opt/custompython/bin/python
    ```
    
    </div>
    
    ////
    
    //// tab | Windows
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 20 11:13:32 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. docs/en/docs/environment-variables.md

    ////
    
    So, if you type:
    
    <div class="termy">
    
    ```console
    $ python
    ```
    
    </div>
    
    //// tab | Linux, macOS
    
    The system will **find** the `python` program in `/opt/custompython/bin` and run it.
    
    It would be roughly equivalent to typing:
    
    <div class="termy">
    
    ```console
    $ /opt/custompython/bin/python
    ```
    
    </div>
    
    ////
    
    //// tab | Windows
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Sep 08 20:36:53 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. tests/test_read_with_orm_mode.py

        def create_person(person: PersonCreate) -> Any:
            db_person = Person.model_validate(person)
            return db_person
    
        client = TestClient(app)
    
        person_data = {"name": "Dive", "lastname": "Wilson"}
        response = client.post("/people/", json=person_data)
        data = response.json()
        assert response.status_code == 200, response.text
        assert data["name"] == person_data["name"]
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/error/system.jsp

    </head>
    <body class="error">
    	<jsp:include page="../header.jsp" />
    	<main class="container">
    		<div class="text-center">
    			<h2>
    				<la:message key="labels.system_error_title" />
    			</h2>
    			<div class="errormessage"><la:message key="labels.contact_site_admin" /></div>
    		</div>
    	</main>
    	<jsp:include page="../footer.jsp" />
    	<input type="hidden" id="contextPath" value="${pageContext.request.contextPath}" />
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. docs/pt/docs/virtual-environments.md

    ///
    
    //// tab | Linux, macOS
    
    <div class="termy">
    
    ```console
    $ source .venv/bin/activate
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ .venv\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    //// tab | Windows Bash
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:37:13 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. docs/ja/docs/deployment/manually.md

    <div class="termy">
    
    ```console
    $ pip install hypercorn
    
    ---> 100%
    ```
    
    </div>
    
    ...または、これら以外のASGIサーバ。
    
    ////
    
    そして、チュートリアルと同様な方法でアプリケーションを起動して下さい。ただし、以下の様に`--reload` オプションは使用しないで下さい:
    
    //// tab | Uvicorn
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --host 0.0.0.0 --port 80
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. docs/ru/docs/contributing.md

    <div class="termy">
    
    ```console
    $ source ./env/Scripts/activate
    ```
    
    </div>
    
    ////
    
    Проверьте, что всё сработало:
    
    //// tab | Linux, macOS, Windows Bash
    
    <div class="termy">
    
    ```console
    $ which pip
    
    some/directory/fastapi/env/bin/pip
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. docs/de/docs/contributing.md

    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ .\env\Scripts\Activate.ps1
    ```
    
    </div>
    
    ////
    
    //// tab | Windows Bash
    
    Oder, wenn Sie Bash für Windows verwenden (z. B. <a href="https://gitforwindows.org/" class="external-link" target="_blank">Git Bash</a>):
    
    <div class="termy">
    
    ```console
    $ source ./env/Scripts/activate
    ```
    
    </div>
    
    ////
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_sql_databases/test_tutorial001.py

                    "id": 999,
                    "name": "Dead Pond",
                    "age": 30,
                    "secret_name": "Dive Wilson",
                },
            )
            assert response.status_code == 200, response.text
            assert response.json() == snapshot(
                {"age": 30, "secret_name": "Dive Wilson", "id": 999, "name": "Dead Pond"}
            )
    
            # Read a hero
            hero_id = response.json()["id"]
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top