Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 221 - 230 of 308 for yams (0.06 seconds)

  1. docs/pt/docs/alternatives.md

    O jeito como ele funciona é que você escreve a definição do schema usando formato YAML dentro da docstring de cada função que lida com uma rota.
    
    E ele gera schemas OpenAPI.
    
    É assim como funciona no Flask, Starlette, Responder, etc.
    
    Mas então, temos novamente o problema de ter uma micro-sintaxe, dentro de uma string Python (um grande YAML).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 24.5K bytes
    - Click Count (0)
  2. .editorconfig

    ij_java_names_count_to_use_import_on_demand = 999
    ij_java_imports_layout = *,|,com.**,|,org.**,|,java.**,javax.**,|,$*
    
    [*.json]
    indent_size = 2
    
    [*.py]
    indent_size = 2
    
    [*.sh]
    indent_size = 2
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [*.{xsd,xml}]
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 10 14:05:55 GMT 2021
    - 9K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                    .get(stream -> stream.map(String::trim).toArray(n -> new String[n]));
        }
    
        /**
         * Loads artifacts from a YAML-based repository.
         *
         * @param url the URL of the YAML repository
         * @return a list of artifacts loaded from the repository
         * @throws PluginException if failed to parse the repository content
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  4. 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
    time="2020-07-12T20:45:50Z" level=info msg="config issuer: http://127.0.0.1:5556/dex"
    time="2020-07-12T20:45:50Z" level=info msg="config storage: sqlite3"
    time="2020-07-12T20:45:50Z" level=info msg="config static client: Example App"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  5. scripts/translate.py

    import secrets
    import subprocess
    from collections.abc import Iterable
    from functools import lru_cache
    from os import sep as pathsep
    from pathlib import Path
    from typing import Annotated
    
    import git
    import typer
    import yaml
    from doc_parsing_utils import check_translation
    from github import Github
    from pydantic_ai import Agent
    from rich import print
    
    non_translated_sections = (
        f"reference{pathsep}",
        "release-notes.md",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  6. docs/de/docs/alternatives.md

    Die Funktionsweise besteht darin, dass Sie die Definition des Schemas im YAML-Format im Docstring jeder Funktion schreiben, die eine Route verarbeitet.
    
    Und es generiert OpenAPI-Schemas.
    
    So funktioniert es in Flask, Starlette, Responder, usw.
    
    Aber dann haben wir wieder das Problem einer Mikrosyntax innerhalb eines Python-Strings (eines großen YAML).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 26K bytes
    - Click Count (0)
  7. guava-tests/test/com/google/common/collect/FluentIterableTest.java

      public void testOfToString() {
        assertThat(FluentIterable.of("yam", "bam", "jam", "ham").toString())
            .isEqualTo("[yam, bam, jam, ham]");
      }
    
      public void testToString() {
        assertThat(FluentIterable.from(emptyList()).toString()).isEqualTo("[]");
        assertThat(FluentIterable.<String>of().toString()).isEqualTo("[]");
    
        assertThat(FluentIterable.from(asList("yam", "bam", "jam", "ham")).toString())
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 31.2K bytes
    - Click Count (0)
  8. cmd/server-main.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/certs"
    	"github.com/minio/pkg/v3/env"
    	"gopkg.in/yaml.v2"
    )
    
    // ServerFlags - server command specific flags
    var ServerFlags = []cli.Flag{
    	cli.StringFlag{
    		Name:   "config",
    		Usage:  "specify server configuration via YAML configuration",
    		EnvVar: "MINIO_CONFIG",
    	},
    	cli.StringFlag{
    		Name:   "address",
    		Value:  ":" + GlobalMinioDefaultPort,
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 27 15:18:36 GMT 2025
    - 35.9K bytes
    - Click Count (4)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestApiTask.java

    import java.nio.file.Files;
    import java.util.function.Function;
    import java.util.stream.Collectors;
    
    import static org.elasticsearch.gradle.util.GradleUtils.getProjectPathFromTask;
    
    /**
     * Copies the files needed for the Rest YAML specs to the current projects test resources output directory.
     * This is intended to be be used from {@link RestResourcesPlugin} since the plugin wires up the needed
     * configurations and custom extensions.
     *
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 7.4K bytes
    - Click Count (0)
  10. scripts/people.py

    from collections import Counter
    from collections.abc import Container
    from datetime import datetime, timedelta, timezone
    from math import ceil
    from pathlib import Path
    from typing import Annotated, Any
    
    import httpx
    import yaml
    from github import Github
    from pydantic import BaseModel, BeforeValidator, SecretStr
    from pydantic_settings import BaseSettings
    
    github_graphql_url = "https://api.github.com/graphql"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:51:24 GMT 2026
    - 15K bytes
    - Click Count (0)
Back to Top