Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for uoml (0.15 sec)

  1. src/mdo/reader-stax.vm

            entities.put("Otilde", "\u00d5");
            entities.put("Ouml", "\u00d6");
            entities.put("times", "\u00d7");
            entities.put("Oslash", "\u00d8");
            entities.put("Ugrave", "\u00d9");
            entities.put("Uacute", "\u00da");
            entities.put("Ucirc", "\u00db");
            entities.put("Uuml", "\u00dc");
            entities.put("Yacute", "\u00dd");
            entities.put("THORN", "\u00de");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    ====
    include::sample[dir="snippets/dependencyManagement/catalogs-toml/kotlin",files="settings.gradle.kts[tags=change_default_extension_name]"]
    include::sample[dir="snippets/dependencyManagement/catalogs-toml/groovy",files="settings.gradle[tags=change_default_extension_name]"]
    ====
    
    [[sub::toml-dependencies-format]]
    ==== The version catalog TOML file format
    
    The https://toml.io/[TOML] file consists of 4 major sections:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                contextualLabel == 'Unexpected end of line, expected \', ", \'\'\', """, a number, a boolean, a date/time, an array, or a table'
                details == 'TOML syntax invalid.'
                solutions == [ 'Fix the TOML file according to the syntax described at https://toml.io' ]
                additionalData.asMap.isEmpty()
            }
            verifyAll(receivedProblem(1)) {
                fqid == 'dependency-version-catalog:toml-syntax-error'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. docs/em/docs/advanced/behind-a-proxy.md

    ⤴️ ✍ 📁 `traefik.toml` ⏮️:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
      [providers.file]
        filename = "routes.toml"
    ```
    
    👉 💬 Traefik 👂 🔛 ⛴ 9️⃣9️⃣9️⃣9️⃣ & ⚙️ ➕1️⃣ 📁 `routes.toml`.
    
    !!! tip
        👥 ⚙️ ⛴ 9️⃣9️⃣9️⃣9️⃣ ↩️ 🐩 🇺🇸🔍 ⛴ 8️⃣0️⃣ 👈 👆 🚫 ✔️ 🏃 ⚫️ ⏮️ 📡 (`sudo`) 😌.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/behind-a-proxy.md

    Dann erstellen Sie eine Datei `traefik.toml` mit:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
      [providers.file]
        filename = "routes.toml"
    ```
    
    Dadurch wird Traefik angewiesen, Port 9999 abzuhören und eine andere Datei `routes.toml` zu verwenden.
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. docs/zh/docs/advanced/behind-a-proxy.md

    然后创建包含如下内容的 `traefik.toml` 文件:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
      [providers.file]
        filename = "routes.toml"
    ```
    
    这个文件把 Traefik 监听端口设置为 `9999`,并设置要使用另一个文件 `routes.toml`。
    
    !!! tip "提示"
    
        使用端口 9999 代替标准的 HTTP 端口 80,这样就不必使用管理员权限运行(`sudo`)。
    
    接下来,创建 `routes.toml`:
    
    ```TOML hl_lines="5  12  20"
    [http]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                    return definingLocation;
                })
                    .details("TOML syntax invalid.")
                    .solution("Fix the TOML file according to the syntax described at https://toml.io")
            )).forEach(internalReporter::report);
        }
    
        private String getProblemString(List<TomlParseError> errors) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/behind-a-proxy.md

    Then create a file `traefik.toml` with:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
      [providers.file]
        filename = "routes.toml"
    ```
    
    This tells Traefik to listen on port 9999 and to use another file `routes.toml`.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/mdo/reader.vm

            entities.put("Otilde", "\u00d5");
            entities.put("Ouml", "\u00d6");
            entities.put("times", "\u00d7");
            entities.put("Oslash", "\u00d8");
            entities.put("Ugrave", "\u00d9");
            entities.put("Uacute", "\u00da");
            entities.put("Ucirc", "\u00db");
            entities.put("Uuml", "\u00dc");
            entities.put("Yacute", "\u00dd");
            entities.put("THORN", "\u00de");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

        Reason: ${errors.join('\n    ')}.
    
        Possible solution: Fix the TOML file according to the syntax described at https://toml.io.
    
        ${documentation}"""
            }
        }
    
        static class NameClash extends InCatalog<NameClash> {
            private List<String> aliases = []
            private String getterName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top