Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for customizations (0.22 sec)

  1. .devcontainer/devcontainer.json

        "CARGO_HOME": "/home/.cargo",
        "RUSTUP_HOME": "/home/.rustup"
      },
      "features": {
        "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
        "ghcr.io/mpriscella/features/kind:1": {}
      },
      "customizations": {
        "vscode": {
          "extensions": [
            "golang.go",
            "rust-lang.rust-analyzer",
            "eamodio.gitlens",
            "zxh404.vscode-proto3",
            "ms-azuretools.vscode-docker",
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 879 bytes
    - Viewed (1)
  2. .devcontainer/devcontainer.json

    {
      "image": "mcr.microsoft.com/devcontainers/java:17-bookworm",
      "features": {
          "ghcr.io/devcontainers/features/java:1": {
              "version": "17"
          }
      },
      "customizations": {
          "vscode": {
              "settings": {
                  "java.server.launchMode": "Standard"
              },
              "extensions": [
                  "vscjava.vscode-java-pack",
                  "vscjava.vscode-gradle"
              ]
          }
      }
    Json
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Apr 14 14:24:05 GMT 2024
    - 429 bytes
    - Viewed (0)
  3. istioctl/pkg/tag/revision.go

    	Name           string                     `json:"name"`
    	Profile        string                     `json:"profile"`
    	Components     []string                   `json:"components,omitempty"`
    	Customizations []IopDiff                  `json:"customizations,omitempty"`
    }
    
    type IopDiff struct {
    	Path  string `json:"path"`
    	Value string `json:"value"`
    }
    
    // MutatingWebhookConfigInfo represents a tiny subset of fields from
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Jan 28 13:16:05 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  4. manifests/charts/UPDATING-CHARTS.md

    The `values.yaml` API is intended to maintain a *minimal core set of configuration* that most users will use.
    For bespoke use cases, [Helm Chart Customization](https://istio.io/latest/docs/setup/additional-setup/customize-installation-helm/#advanced-helm-chart-customization) can be used
    to allow arbitrary customizations.
    
    If the change truly is generally purpose, it is generally preferred to have broader APIs. For example, instead of providing
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 27 18:28:55 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

          }
    
        /**
         * Add all of the host platform's trusted root certificates. This set varies by platform
         * (Android vs. Java), by platform release (Android 4.4 vs. Android 9), and with user
         * customizations.
         *
         * Most TLS clients that connect to hosts on the public Internet should call this method.
         * Otherwise it is necessary to manually prepare a comprehensive set of trusted roots.
         *
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.5K bytes
    - Viewed (1)
  6. docs/en/docs/alternatives.md

    !!! check "Inspired **FastAPI** to"
        * Have a simple and intuitive API.
        * Use HTTP method names (operations) directly, in a straightforward and intuitive way.
        * Have sensible defaults, but powerful customizations.
    
    
    ### <a href="https://swagger.io/" class="external-link" target="_blank">Swagger</a> / <a href="https://github.com/OAI/OpenAPI-Specification/" class="external-link" target="_blank">OpenAPI</a>
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  7. Makefile.core.mk

    	# copy istio-discovery values, but apply some local customizations
    	cp manifests/charts/istio-control/istio-discovery/values.yaml manifests/charts/istiod-remote/
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/schema-extra-example.md

    Você pode declarar um `example` para um modelo Pydantic usando `Config` e `schema_extra`, conforme descrito em <a href="https://docs.pydantic.dev/latest/concepts/json_schema/#schema-customization" class="external-link" target="_blank">Documentação do Pydantic: Schema customization</a>:
    
    ```Python hl_lines="15-23"
    {!../../../docs_src/schema_extra_example/tutorial001.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  9. operator/README.md

    ```
    
    ### New API customization
    
    The [new platform level installation API](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto)
    defines install time parameters like component and enablement and namespace, and K8s settings like resources, HPA spec etc. in a structured way.
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/RepositorySessionDecorator.java

     * under the License.
     */
    package org.apache.maven.project;
    
    import org.eclipse.aether.RepositorySystemSession;
    
    /**
     * Component interface that allows per-project customization of Aether repository system sessions.
     *
     * <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
     * @since 3.2.4
     */
    public interface RepositorySessionDecorator {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.4K bytes
    - Viewed (0)
Back to top