Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 160 for Shards (0.12 sec)

  1. cmd/erasure-decode.go

    				// Reading first time on this disk, hence the buffer needs to be allocated.
    				// Subsequent reads will reuse this buffer.
    				p.buf[bufIdx] = make([]byte, p.shardSize)
    			}
    			// For the last shard, the shardsize might be less than previous shard sizes.
    			// Hence the following statement ensures that the buffer size is reset to the right size.
    			p.buf[bufIdx] = p.buf[bufIdx][:p.shardSize]
    			n, err := rr.ReadAt(p.buf[bufIdx], p.offset)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 21 14:36:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. manifests/charts/UPDATING-CHARTS.md

    # Updating charts and values.yaml
    
    ## Acceptable Pull Requests
    
    Helm charts `values.yaml` represent a complex user facing API that tends to grow uncontrollably over time
    due to design choices in Helm.
    The underlying Kubernetes resources we configure have 1000s of fields; given enough users and bespoke use cases,
    eventually someone will want to customize every one of those fields.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. samples/cicd/skaffold/skaffold.yaml

              - name: istio-base
                chartPath: ../../../manifests/charts/base
                namespace: istio-system
                createNamespace: true
      - name: run
        activation:
          - command: run
        deploy:
          helm:
            releases:
              - name: istio-base
                remoteChart: base
                repo: https://istio-release.storage.googleapis.com/charts
                namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 12:12:08 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. manifests/charts/install-OpenShift.md

    ```console
     helm install -n istio-system istiod manifests/charts/istio-control/istio-discovery --set profile=openshift
    ```
    
    4) `gateways` charts install a load balancer with `ingress` and `egress`.
    
    Ingress secrets and access should be separated from the control plane.
    
    ```console
    helm install -n istio-system istio-ingress manifests/charts/gateways/istio-ingress --set profile=openshift
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:01:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. manifests/charts/gateway/README.md

    #### Legacy Gateway Helm charts
    
    Istio historically offered two different charts - `manifests/charts/gateways/istio-ingress` and `manifests/charts/gateways/istio-egress`.
    These are replaced by this chart.
    While not required, it is recommended all new users use this chart, and existing users migrate when possible.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. manifests/helm-profiles/README.md

    This folder provides a variety of "profiles" for helm installation.
    While a user can just explicitly pass this with `--values/-f`.
    
    However, Istio also provides a feature to bundle these with the charts, which is convenient when installing from remote charts.
    For details, see `copy-templates` Makefile target, and `manifests/zzz_profile.yaml`.
    
    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 708 bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1beta3/conversion_test.go

    				Type: v1beta3.PriorityLevelEnablementLimited,
    				Limited: &v1beta3.LimitedPriorityLevelConfiguration{
    					NominalConcurrencyShares: shares,
    					LimitResponse: v1beta3.LimitResponse{
    						Type: v1beta3.LimitResponseTypeReject,
    					},
    				},
    			},
    		}
    	}
    
    	outObjFn := func(shares int32, annotations map[string]string) *flowcontrol.PriorityLevelConfiguration {
    		return &flowcontrol.PriorityLevelConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. test/utf.go

    // Test UTF-8 in strings and character constants.
    
    package main
    
    import "unicode/utf8"
    
    func main() {
    	var chars [6]rune
    	chars[0] = 'a'
    	chars[1] = 'b'
    	chars[2] = 'c'
    	chars[3] = '\u65e5'
    	chars[4] = '\u672c'
    	chars[5] = '\u8a9e'
    	s := ""
    	for i := 0; i < 6; i++ {
    		s += string(chars[i])
    	}
    	var l = len(s)
    	for w, i, j := 0, 0, 0; i < l; i += w {
    		var r rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top