Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 709 for Shards (0.19 sec)

  1. pkg/kubelet/kuberuntime/helpers_linux.go

    }
    
    // sharesToMilliCPU converts CpuShares (cpu.shares) to milli-CPU value
    // TODO(vinaykul,InPlacePodVerticalScaling): Address issue that sets min req/limit to 2m/10m before beta
    // See: https://github.com/kubernetes/kubernetes/pull/102884#discussion_r662552642
    func sharesToMilliCPU(shares int64) int64 {
    	milliCPU := int64(0)
    	if shares >= int64(cm.MinShares) {
    		milliCPU = int64(math.Ceil(float64(shares*milliCPUToCPU) / float64(cm.SharesPerCPU)))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java

          chars.add(randomAlpha());
        }
        for (int i = 0; i < nonAlpha; i++) {
          chars.add(randomNonAlpha());
        }
        Collections.shuffle(chars, random);
        char[] array = Chars.toArray(chars);
        this.testString = new String(array);
      }
    
      private char randomAlpha() {
        return ALPHA.charAt(random.nextInt(ALPHA.length()));
      }
    
      private char randomNonAlpha() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.8K bytes
    - Viewed (0)
  3. samples/ambient-argo/istio/control-plane-appset.yaml

        spec:
          project: default
          sources:
          - repoURL: 'https://istio-release.storage.googleapis.com/charts'
            targetRevision: '{{version}}'
            helm:
              valuesObject:
                revision: '{{revision}}'
              valueFiles:
                - >-
                  $values/manifests/charts/istio-control/istio-discovery/ambient-values.yaml
            chart: istiod
          - repoURL: 'https://github.com/istio/istio.git'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1006 bytes
    - Viewed (0)
  4. manifests/addons/gen.sh

      --set fullnameOverride=kiali \
      kiali-server \
      --repo https://kiali.org/helm-charts \
      -f "${WD}/values-kiali.yaml"
    } > "${ADDONS}/kiali.yaml"
    
    # Set up prometheus
    helm3 template prometheus prometheus \
      --namespace istio-system \
      --version 25.21.0 \
      --repo https://prometheus-community.github.io/helm-charts \
      -f "${WD}/values-prometheus.yaml" \
      > "${ADDONS}/prometheus.yaml"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. .gitignore

    vendor
    # Contains the built artifacts
    out/
    etc/
    var/
    # Go compiled tests
    *.test
    # Profiles
    *.prof
    # MacOS extended attributes
    ._*
    # MacOS Desktop Services Store
    .DS_Store
    /manifests/charts/**/charts/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. samples/ambient-argo/istio/cni.yaml

          - CreateNamespace=true
      sources:
        - repoURL: 'https://istio-release.storage.googleapis.com/charts'
          targetRevision: 1.18.5
          helm:
            valuesObject:
              revision: rapid
              cni:
                cniBinDir: "/home/kubernetes/bin"
            valueFiles:
              - >-
                $values/manifests/charts/istio-cni/ambient-values.yaml
          chart: cni
        - repoURL: 'https://github.com/istio/istio.git'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 811 bytes
    - Viewed (0)
  7. operator/scripts/update_version.sh

        # Update version string in global.yaml.
        sed -i "s|hub: gcr.io/istio-release|hub: ${DOCKER_HUB}|g" "${RELEASE_DIR}"/charts/global.yaml
        sed -i "s|tag: .*-latest-daily|tag: ${DOCKER_TAG}|g"      "${RELEASE_DIR}"/charts/global.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 14 23:24:30 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. manifests/charts/base/README.md

    helm repo update
    ```
    
    _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation._
    
    ## Installing the Chart
    
    To install the chart with the release name `istio-base`:
    
    ```console
    kubectl create namespace istio-system
    helm install istio-base istio/base -n istio-system
    ```
    
    ### Profiles
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. tests/integration/helm/upgrade/util.go

    		sanitycheck.RunTrafficTestClientServer(t, oldClient, oldServer)
    
    		// install the charts from this branch with revision set to "latest"
    		// helm upgrade istio-base ../manifests/charts/base --namespace istio-system -f values.yaml
    		// helm install istiod-latest ../manifests/charts/istio-control/istio-discovery -f values.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. manifests/charts/ztunnel/README.md

    # Istio Ztunnel Helm Chart
    
    This chart installs an Istio ztunnel.
    
    ## Setup Repo Info
    
    ```console
    helm repo add istio https://istio-release.storage.googleapis.com/charts
    helm repo update
    ```
    
    _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation._
    
    ## Installing the Chart
    
    To install the chart:
    
    ```console
    helm install ztunnel istio/ztunnel
    ```
    
    ## Uninstalling the Chart
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top