Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 709 for Shards (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. releasenotes/notes/helm_chart_pilot_extraargsvolumes

    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
    - https://github.com/cert-manager/istio-csr/issues/113
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Pilot Helm charts for configuring additional container arguments, volumeMounts, and volumes. Can be used in conjunction with cert-manager istio-csr.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 15:25:03 UTC 2023
    - 430 bytes
    - Viewed (0)
  8. releasenotes/notes/helm_chart_gateway_serviceaccount_annotations.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    
    # issue is a list of GitHub issues resolved in this note.
    issue: []
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Gateway Helm charts for configuring annotations on the ServiceAccount.  Can be used to enable [IAM Roles for Service Accounts](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html) on AWS EKS.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 23 21:35:49 UTC 2021
    - 450 bytes
    - Viewed (0)
  9. .gitattributes

    *.pb.html linguist-generated=true
    *.pb.go linguist-generated=true
    *.gen.go linguist-generated=true
    *.gen.yaml linguist-generated=true
    *.gen.json linguist-generated=true
    *_pb2.py linguist-generated=true
    manifests/charts/**/profile*.yaml linguist-generated=true
    go.sum merge=union
    vendor/**  linguist-vendored
    common/**  linguist-vendored
    archive/**  linquist-vendored
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 01 19:15:39 UTC 2024
    - 545 bytes
    - Viewed (0)
  10. bin/update_crds.sh

      echo "Generated Custom Resource Definitions file does not exist in the commit SHA ${SHA}. Not updating the CRD file."
      exit
    fi
    rm -f "${ROOTDIR}/manifests/charts/base/crds/crd-all.gen.yaml"
    cp "${API_TMP}/kubernetes/customresourcedefinitions.gen.yaml" "${ROOTDIR}/manifests/charts/base/crds/crd-all.gen.yaml"
    
    cd "${ROOTDIR}"
    
    GATEWAY_VERSION=$(grep "gateway-api" go.mod | awk '{ print $2 }')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 14:28:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top