Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,099 for RELEASE (0.19 sec)

  1. RELEASE.md

    * TensorRT support: this is the last release supporting TensorRT. It will be
    removed in the next release.
    * NumPy 2.0 support: TensorFlow is going to support NumPy 2.0 in the next
    release. It may break some edge cases of TensorFlow API usage.
    
    ## Keras
    
    <INSERT SMALL BLURB ABOUT RELEASE FOCUS AREA AND POTENTIAL TOOLCHAIN CHANGES>
    
    ### Breaking Changes
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  2. build/lib/release.sh

      kube::release::package_src_tarball &
      kube::release::package_client_tarballs &
      kube::release::package_kube_manifests_tarball &
      kube::util::wait-for-jobs || { kube::log::error "previous tarball phase failed"; return 1; }
    
      # _node and _server tarballs depend on _src tarball
      kube::release::package_node_tarballs &
      kube::release::package_server_tarballs &
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. 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)
  4. build/release.sh

    # limitations under the License.
    
    # Build a Kubernetes release.  This will build the binaries, create the Docker
    # images and other build artifacts.
    #
    # For pushing these artifacts publicly to Google Cloud Storage or to a registry
    # please refer to the kubernetes/release repo at
    # https://github.com/kubernetes/release.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:27:43 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. prow/release-test.sh

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -eux
    
    DRY_RUN=true "${ROOT}"/prow/release-commit.sh || {
      tools/dump-docker-logs.sh
      exit 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 11 20:58:15 UTC 2022
    - 768 bytes
    - Viewed (0)
Back to top