Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Shardz (0.1 sec)

  1. src/run.bash

    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # Environment variables that control run.bash:
    #
    # GO_TEST_SHARDS: number of "dist test" test shards that the
    # $GOROOT/test directory will be sliced up into for parallel
    # execution. Defaults to 1, unless GO_BUILDER_NAME is also specified,
    # in which case it defaults to 10.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "hard": {
          "hardKey": "0"
        },
        "scopes": [
          "scopesValue"
        ],
        "scopeSelector": {
          "matchExpressions": [
            {
              "scopeName": "scopeNameValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      hard:
        hardKey: "0"
      scopeSelector:
        matchExpressions:
        - operator: operatorValue
          scopeName: scopeNameValue
          values:
          - valuesValue
      scopes:
      - scopesValue
    status:
      hard:
        hardKey: "0"
      used:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/internal/coverage/rtcov/rtcov.go

    // meta-data blob of length 'dlen' for the package in question, 'hash'
    // is a compiler-computed md5.sum for the blob, 'pkpath' is the
    // package path, 'pkid' is the hard-coded ID that the compiler is
    // using for the package (or -1 if the compiler doesn't think a
    // hard-coded ID is needed), and 'cmode'/'cgran' are the coverage
    // counter mode and granularity requested by the user. Return value is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/syscall/rlimit.go

    var origRlimitNofile atomic.Pointer[Rlimit]
    
    // Some systems set an artificially low soft limit on open file count, for compatibility
    // with code that uses select and its hard-coded maximum file descriptor
    // (limited by the size of fd_set).
    //
    // Go does not use select, so it should not be subject to these limits.
    // On some systems the limit is 256, which is very easy to run into,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/templates/resourcequota.yaml

    {{- if .Values.cni.resourceQuotas.enabled }}
    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: {{ template "name" . }}-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    *Script Plugins* are simple and easy to write.
    They are written in Kotlin DSL or Groovy DSL.
    They are suitable for small, one-off tasks or for quick experimentation.
    However, they can become hard to maintain as the build script grows in size and complexity.
    
    *Precompiled Script Plugins* are Kotlin or Groovy DSL scripts compiled into Java class files packaged in a library.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. .gitignore

    docs/debugging/hash-set/hash-set
    docs/debugging/healing-bin/healing-bin
    docs/debugging/inspect/inspect
    docs/debugging/pprofgoparser/pprofgoparser
    docs/debugging/reorder-disks/reorder-disks
    docs/debugging/populate-hard-links/populate-hardlinks
    docs/debugging/xattr/xattr
    hash-set
    healing-bin
    inspect
    pprofgoparser
    reorder-disks
    s3-check-md5
    s3-verify
    xattr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/testFixtures/groovy/org/gradle/util/WindowsSymbolicLinkUtil.groovy

            assert ["cmd.exe", "/d", "/c", "mklink", "/j", link, target].execute().waitFor() == 0
        }
    
        static void createWindowsHardLinks(File link, File target) {
            assert target.isFile(), "Windows hard links only works on files"
            assertAdministrator()
            assert ["cmd.exe", "/d", "/c", "mklink", "/h", link, target].execute().waitFor() == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top