Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 146 for Green (0.02 sec)

  1. scripts/docs.py

        new_index_content = f"{missing_translation_snippet}\n\n{en_index_content}"
        new_index_path.write_text(new_index_content, encoding="utf-8")
        typer.secho(f"Successfully initialized: {new_path}", color=typer.colors.GREEN)
        update_languages()
    
    
    @app.command()
    def build_lang(
        lang: str = typer.Argument(
            ..., callback=lang_callback, autocompletion=complete_existing_lang
        ),
    ) -> None:
        """
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 08 11:01:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    	o := mc.o
    	o.debugf(color.Green("saveMetaCacheStream:")+" with options: %#v", o)
    
    	metaMu := &mc.mu
    	rpc := mc.rpc
    	cancel := mc.cancel
    	defer func() {
    		o.debugln(color.Green("saveMetaCacheStream:")+"err:", err)
    		if err != nil && !errors.Is(err, io.EOF) {
    			go mc.setErr(err.Error())
    			cancel()
    		}
    	}()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 16:23:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/sql-databases.md

    ### Executar o App
    
    Vocรช pode executar o app:
    
    <div class="termy">
    
    ```console
    $ fastapi dev main.py
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 15:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/EnumMultisetTest.java

                ? EnumMultiset.create(AnEnum.class)
                : EnumMultiset.create(asList(elements));
          }
        };
      }
    
      private enum Color {
        BLUE,
        RED,
        YELLOW,
        GREEN,
        WHITE
      }
    
      private enum Gender {
        MALE,
        FEMALE
      }
    
      public void testClassCreate() {
        Multiset<Color> ms = EnumMultiset.create(Color.class);
        ms.add(Color.RED);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. docs/em/docs/deployment/manually.md

    ////
    
    ## ๐Ÿƒ ๐Ÿ’ฝ ๐Ÿ“‹
    
    ๐Ÿ‘† ๐Ÿ’ช โคด๏ธ ๐Ÿƒ ๐Ÿ‘† ๐Ÿˆธ ๐ŸŽ ๐ŸŒŒ ๐Ÿ‘† โœ”๏ธ โŒ› ๐Ÿ”ฐ, โœ‹๏ธ ๐Ÿต `--reload` ๐ŸŽ›, โœ…:
    
    //// tab | Uvicorn
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --host 0.0.0.0 --port 80
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit)
    ```
    
    </div>
    
    ////
    
    //// tab | Hypercorn
    
    <div class="termy">
    
    ```console
    $ hypercorn main:app --bind 0.0.0.0:80
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/security/first-steps.md

    ๐Ÿ‘‰ โ†ฉ๏ธ **Oauth2๏ธโƒฃ** โš™๏ธ "๐Ÿ“จ ๐Ÿ“Š" ๐Ÿ“จ `username` &amp; `password`.
    
    ///
    
    ๐Ÿƒ ๐Ÿ–ผ โฎ๏ธ:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    ## โœ… โšซ๏ธ
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/main/config/openapi/openapi-user.yaml

                    properties:
                      data:
                        type: object
                        properties:
                          status:
                            type: string
                            example: green
                          timed_out:
                            type: boolean
                            example: false
            '400':
              $ref: '#/components/responses/BadRequest'
            '401':
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. docs/pt/docs/deployment/manually.md

    <div class="termy">
    
    ```console
    $ uvicorn main:app --host 0.0.0.0 --port 80
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit)
    ```
    
    </div>
    
    /// note | "Nota"
    
    O comando `uvicorn main:app` refere-se a:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 20 11:10:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/manually.md

    //// tab | Uvicorn
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --host 0.0.0.0 --port 80
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit)
    ```
    
    </div>
    
    ////
    
    //// tab | Hypercorn
    
    <div class="termy">
    
    ```console
    $ hypercorn main:app --bind 0.0.0.0:80
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. docs/ja/docs/how-to/conditional-openapi.md

    ใใ—ใฆใ€ใ“ใ‚Œใ‚’ `FastAPI` appใ‚’ไฝœใ‚‹้š›ใซไฝฟใ„ใพใ™ใ€‚
    
    ใใ‚Œใ‹ใ‚‰ใ€ไปฅไธ‹ใฎใ‚ˆใ†ใซ `OPENAPI_URL` ใจใ„ใ†็’ฐๅขƒๅค‰ๆ•ฐใ‚’็ฉบๆ–‡ๅญ—ๅˆ—ใซ่จญๅฎšใ™ใ‚‹ใ“ใจใซใ‚ˆใฃใฆOpenAPI (UIใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใ‚’ๅซใ‚€) ใ‚’็„กๅŠนๅŒ–ใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚
    
    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    ใ™ใ‚‹ใจใ€ไปฅไธ‹ใฎใ‚ˆใ†ใซ `/openapi.json`, `/docs`, `/redoc` ใฎใฉใฎURLใซใ‚ขใ‚ฏใ‚ปใ‚นใ—ใฆใ‚‚ใ€ `404 Not Found` ใ‚จใƒฉใƒผใŒ่ฟ”ใฃใฆใใ‚‹ใ‚ˆใ†ใซใชใ‚Šใพใ™ใ€‚
    
    ```JSON
    {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top