Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 160 for Shards (0.08 sec)

  1. releasenotes/notes/remove-operator-httpfetch.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 16:13:50 UTC 2022
    - 141 bytes
    - Viewed (0)
  2. releasenotes/notes/helm_chart_pilot_deployment_affinity_tolerations.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    issue: []
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Pilot Helm charts for configuring affinity rules and tolerations on the Deployment.  Can be used for better placement of Istio pilot workloads.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 25 10:38:12 UTC 2022
    - 373 bytes
    - Viewed (0)
  3. helm-reindex.sh

    #!/bin/bash
    
    helm package helm/minio -d helm-releases/
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Aug 20 22:30:54 UTC 2021
    - 121 bytes
    - Viewed (0)
  4. samples/ambient-argo/istio/ztunnel.yaml

    kind: Application
    metadata:
      name: istio-ztunnel
      namespace: argocd
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      project: default
      source:
        repoURL: 'https://istio-release.storage.googleapis.com/charts'
        targetRevision: 1.18.5
        chart: ztunnel
        helm:
          valuesObject:
            revision: rapid
      destination:
        name: ambient-cluster
        namespace: istio-system
      syncPolicy:
        automated:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 547 bytes
    - Viewed (0)
  5. releasenotes/notes/44017.yaml

    issue:
      - 44017
    docs: []
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 00:02:18 UTC 2023
    - 281 bytes
    - Viewed (0)
  6. src/net/http/example_handle_test.go

    // license that can be found in the LICENSE file.
    
    package http_test
    
    import (
    	"fmt"
    	"log"
    	"net/http"
    	"sync"
    )
    
    type countHandler struct {
    	mu sync.Mutex // guards n
    	n  int
    }
    
    func (h *countHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    	h.mu.Lock()
    	defer h.mu.Unlock()
    	h.n++
    	fmt.Fprintf(w, "count is %d\n", h.n)
    }
    
    func ExampleHandle() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 02 16:59:25 UTC 2018
    - 560 bytes
    - Viewed (0)
  7. manifests/charts/default/files/profile-ambient.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The ambient profile enables ambient mode. The Istiod, CNI, and ztunnel charts must be deployed
    meshConfig:
      defaultConfig:
        proxyMetadata:
          ISTIO_META_ENABLE_HBONE: "true"
    global:
      variant: distroless
    pilot:
      env:
        PILOT_ENABLE_AMBIENT: "true"
    cni:
      ambient:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 610 bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/files/profile-ambient.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The ambient profile enables ambient mode. The Istiod, CNI, and ztunnel charts must be deployed
    meshConfig:
      defaultConfig:
        proxyMetadata:
          ISTIO_META_ENABLE_HBONE: "true"
    global:
      variant: distroless
    pilot:
      env:
        PILOT_ENABLE_AMBIENT: "true"
    cni:
      ambient:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 610 bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/files/profile-ambient.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The ambient profile enables ambient mode. The Istiod, CNI, and ztunnel charts must be deployed
    meshConfig:
      defaultConfig:
        proxyMetadata:
          ISTIO_META_ENABLE_HBONE: "true"
    global:
      variant: distroless
    pilot:
      env:
        PILOT_ENABLE_AMBIENT: "true"
    cni:
      ambient:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 610 bytes
    - Viewed (1)
  10. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

            String format;
            if (d > 0) {
                // Length 11+ chars
                format = "%d d %02d:%02d h";
            } else if (h > 0) {
                // Length 7 chars
                format = "%2$02d:%3$02d h";
            } else if (m > 0) {
                // Length 9 chars
                format = "%3$02d:%4$02d min";
            } else {
                // Length 7-8 chars
                format = "%4$d.%5$03d s";
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top