Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 245 for Yaml (0.07 sec)

  1. tests/go.mod

    	github.com/pmezard/go-difflib v1.0.0 // indirect
    	github.com/rogpeppe/go-internal v1.12.0 // indirect
    	golang.org/x/crypto v0.27.0 // indirect
    	golang.org/x/text v0.18.0 // indirect
    	gopkg.in/yaml.v3 v3.0.1 // indirect
    )
    
    replace gorm.io/gorm => ../
    
    replace github.com/jackc/pgx/v5 => github.com/jackc/pgx/v5 v5.4.3
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Sep 18 12:03:35 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

                        } catch (IOException e) {
                            throw new IORuntimeException(e);
                        }
                    } else if (url.contains("plugin/repo.yaml")) {
                        try (InputStream is = ResourceUtil.getResourceAsStream(url)) {
                            return new String(InputStreamUtil.getBytes(is), Constants.UTF_8);
                        } catch (IOException e) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 12:38:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. docs/ru/docs/alternatives.md

    Он работает так - Вы записываете определение схем, используя формат YAML, внутри докстринга каждой функции, обрабатывающей маршрут.
    
    Используя эти докстринги, он генерирует схему OpenAPI.
    
    Так это работает для Flask, Starlette, Responder и т.п.
    
    Но теперь у нас возникает новая проблема - наличие постороннего микро-синтаксиса внутри кода Python (большие YAML).
    
    Редактор кода не особо может помочь в такой парадигме.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  4. docs/tr/docs/alternatives.md

    Flask, Starlette, Responder ve benzerlerinde bu şekilde çalışıyor.
    
    Fakat sonrasında yine mikro sözdizimi problemiyle karşılaşıyoruz. Python metinlerinin içinde koskoca bir YAML oluyor.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. docs/ru/docs/contributing.md

    ```
    docs/en/mkdocs.yml
    ```
    
    * Найдите в файле конфигурации место, где расположена строка `docs/features.md`. Похожее на это:
    
    ```YAML hl_lines="8"
    site_name: FastAPI
    # More stuff
    nav:
    - FastAPI: index.md
    - Languages:
      - en: /
      - es: /es/
    - features.md
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. docs/uk/docs/alternatives.md

    Принцип роботи полягає в тому, що ви пишете визначення схеми, використовуючи формат YAML, у docstring кожної функції, що обробляє маршрут.
    
    І він генерує схеми OpenAPI.
    
    Так це працює у Flask, Starlette, Responder тощо.
    
    Але потім ми знову маємо проблему наявності мікросинтаксису всередині Python строки (великий YAML).
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. docs/sts/dex.md

    ## Prerequisites
    
    Install Dex by following [Dex Getting Started Guide](https://dexidp.io/docs/getting-started/)
    
    ### Start Dex
    
    ```
    ~ ./bin/dex serve dex.yaml
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. docs/em/docs/contributing.md

    docs/en/mkdocs.yml
    ```
    
    * 🔎 🥉 🌐❔ 👈 `docs/features.md` 🔎 📁 📁. 👱 💖:
    
    ```YAML hl_lines="8"
    site_name: FastAPI
    # More stuff
    nav:
    - FastAPI: index.md
    - Languages:
      - en: /
      - es: /es/
    - features.md
    ```
    
    * 📂 ⬜ 📁 📁 🇪🇸 👆 ✍, ✅:
    
    ```
    docs/es/mkdocs.yml
    ```
    
    * 🚮 ⚫️ 📤 ☑ 🎏 🗺 ⚫️ 🇪🇸, ✅:
    
    ```YAML hl_lines="8"
    site_name: FastAPI
    # More stuff
    nav:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. .github/actions/people/app/main.py

        people_old_content = people_path.read_text(encoding="utf-8")
        github_sponsors_old_content = github_sponsors_path.read_text(encoding="utf-8")
        new_people_content = yaml.dump(
            people, sort_keys=False, width=200, allow_unicode=True
        )
        new_github_sponsors_content = yaml.dump(
            github_sponsors, sort_keys=False, width=200, allow_unicode=True
        )
        if (
            people_old_content == new_people_content
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 17 04:13:50 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. scripts/docs.py

    from importlib import metadata
    from multiprocessing import Pool
    from pathlib import Path
    from typing import Any, Dict, List, Optional, Union
    
    import mkdocs.utils
    import typer
    import yaml
    from jinja2 import Template
    from ruff.__main__ import find_ruff_bin
    
    logging.basicConfig(level=logging.INFO)
    
    app = typer.Typer()
    
    mkdocs_name = "mkdocs.yml"
    
    missing_translation_snippet = """
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 08 11:01:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top