Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 698 for releasem (0.15 sec)

  1. src/runtime/lockrank_off.go

    	acquirem()
    }
    
    func unlockWithRank(l *mutex) {
    	unlock2(l)
    }
    
    // This function may be called in nosplit context and thus must be nosplit.
    //
    //go:nosplit
    func releaseLockRankAndM(rank lockRank) {
    	releasem(getg().m)
    }
    
    func lockWithRankMayAcquire(l *mutex, rank lockRank) {
    }
    
    //go:nosplit
    func assertLockHeld(l *mutex) {
    }
    
    //go:nosplit
    func assertRankHeld(r lockRank) {
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. Dockerfile.release

        chmod +x /go/bin/minio
    
    # Download mc binary and signature file
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
        curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
        chmod +x /go/bin/mc
    
    RUN if [ "$TARGETARCH" = "amd64" ]; then \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 29 19:10:49 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. Dockerfile.release.fips

    FROM registry.access.redhat.com/ubi9/ubi-micro:latest
    
    ARG RELEASE
    
    LABEL name="MinIO" \
          vendor="MinIO Inc <******@****.***>" \
          maintainer="MinIO Inc <******@****.***>" \
          version="${RELEASE}" \
          release="${RELEASE}" \
          summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. build/release-images.sh

    # limitations under the License.
    
    # Build Kubernetes release images. This will build the server target binaries,
    # and create wrap them in Docker images, see `make release` for full releases
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    source "${KUBE_ROOT}/build/lib/release.sh"
    
    CMD_TARGETS="${KUBE_SERVER_IMAGE_TARGETS[*]}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. Dockerfile.release.old_cpu

        chmod +x /go/bin/minio
    
    # Download mc binary and signature file
    RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
        curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
        chmod +x /go/bin/mc
    
    RUN if [ "$TARGETARCH" = "amd64" ]; then \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. prow/release-commit.sh

    ${PROXY_OVERRIDE:-}
    EOF
    )
    
    # "Temporary" hacks
    export PATH=${GOPATH}/bin:${PATH}
    
    go install "istio.io/release-builder@${BUILDER_SHA}"
    
    release-builder build --manifest <(echo "${MANIFEST}")
    
    release-builder validate --release "${WORK_DIR}/out"
    
    if [[ -z "${DRY_RUN:-}" ]]; then
      release-builder publish --release "${WORK_DIR}/out" \
        --gcsbucket "${GCS_BUCKET}" --gcsaliases "${TAG},${NEXT_VERSION}-dev,latest" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. releasenotes/notes/release-channels.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - https://github.com/istio/enhancements/issues/173
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 261 bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BaselineVersionResolver.groovy

            GradleDistribution best = null
            for (GradleDistribution release : releases.all) {
                if (release.version.version == requested) {
                    return release
                }
                if (!release.version.snapshot && release.version.baseVersion.version == requested && (best == null || best.version < release.version)) {
                    best = release
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ProjectLeaseRegistry.java

         * While blocking to reacquire the project lock, all worker leases held by the thread will be released and reacquired once the project lock is obtained.
         */
        <T> T runAsIsolatedTask(Factory<T> action);
    
        /**
         * Releases any project state locks or task execution locks currently held by the current thread and executes the {@link Factory}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. releasenotes/notes/release-channels-remote-cluster.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - https://github.com/istio/enhancements/issues/173
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 19:46:57 UTC 2024
    - 297 bytes
    - Viewed (0)
Back to top