- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 122 for recv (1.68 sec)
-
bin/update_ztunnel.sh
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 11 17:50:01 UTC 2023 - 1.1K bytes - Viewed (0) -
ci/official/envs/nightly_upload
TFCI_ARTIFACT_FINAL_PYPI_ENABLE=1 TFCI_ARTIFACT_LATEST_GCS_URI="gs://tensorflow/nightly/latest/" TFCI_ARTIFACT_STAGING_GCS_ENABLE=1 TFCI_ARTIFACT_STAGING_GCS_URI="gs://tensorflow-ci-staging/staging/nightly/$(git rev-parse HEAD)/" # 2. The internal version numbers get changed TFCI_NIGHTLY_UPDATE_VERSION_ENABLE=1 # 3. Push results to public build cache (unique cache for MacOS) if [[ $(uname -s) == "Darwin" ]]; then
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Jun 17 20:45:36 UTC 2024 - 1.7K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/code_check_changed_files.bats
# bazel query $(paste -sd "+" $BATS_FILE_TMPDIR/changed_files) --keep_going # Only shows Added, Changed, Modified, Renamed, and Type-changed files if [[ "$(git rev-parse --abbrev-ref HEAD)" = "pull_branch" ]]; then # TF's CI runs 'git fetch origin "pull/PR#/merge:pull_branch"' # To get the as-merged branch during the CI tests
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 18 14:52:45 UTC 2023 - 3.6K bytes - Viewed (0) -
src/archive/tar/strconv.go
if n <= 0 { return "", "", s, ErrHeader } // Extract everything between the space and the final newline. rec, nl, rem := rest[:n-1], rest[n-1:n], rest[n:] if nl != "\n" { return "", "", s, ErrHeader } // The first equals separates the key from the value. k, v, ok = strings.Cut(rec, "=") if !ok { return "", "", s, ErrHeader } if !validPAXRecord(k, v) { return "", "", s, ErrHeader
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 01 14:28:42 UTC 2023 - 9K bytes - Viewed (0) -
istioctl/pkg/clioptions/control_plane.go
// limitations under the License. package clioptions import "github.com/spf13/cobra" // ControlPlaneOptions defines common options used by istioctl. type ControlPlaneOptions struct { // Revision is the istio.io/rev control plane revision Revision string } // AttachControlPlaneFlags attaches control-plane flags to a Cobra command. // (Currently just --revision)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 01 05:47:27 UTC 2021 - 1.1K bytes - Viewed (0) -
cmd/generic-handlers.go
defer func() { if rec := recover(); rec == logger.ErrCritical { // handle stack := debug.Stack() logger.Error("critical: \"%s %s\": %v\n%s", r.Method, r.URL, rec, string(stack)) writeErrorResponse(r.Context(), w, errorCodes.ToAPIErr(ErrInternalError), r.URL) return } else if rec != nil { stack := debug.Stack()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 20.5K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), type BpfProgram struct, Pad_cgo_0 [4]uint8 pkg syscall (freebsd-arm64), type BpfStat struct pkg syscall (freebsd-arm64), type BpfStat struct, Drop uint32 pkg syscall (freebsd-arm64), type BpfStat struct, Recv uint32 pkg syscall (freebsd-arm64), type BpfVersion struct pkg syscall (freebsd-arm64), type BpfVersion struct, Major uint16 pkg syscall (freebsd-arm64), type BpfVersion struct, Minor uint16
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), type BpfProgram struct, Pad_cgo_0 [4]uint8 pkg syscall (darwin-arm64), type BpfStat struct pkg syscall (darwin-arm64), type BpfStat struct, Drop uint32 pkg syscall (darwin-arm64), type BpfStat struct, Recv uint32 pkg syscall (darwin-arm64), type BpfVersion struct pkg syscall (darwin-arm64), type BpfVersion struct, Major uint16 pkg syscall (darwin-arm64), type BpfVersion struct, Minor uint16
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
.github/workflows/mint.yml
- name: setup-go-step uses: actions/setup-go@v5 with: go-version: 1.22.x - name: github sha short id: vars run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: build-minio run: | TAG="quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}" make docker - name: multipart uploads test run: |
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 04 15:12:57 UTC 2024 - 2.9K bytes - Viewed (0) -
ci/official/utilities/setup.sh
# (affects 'source $TFCI') set -euxo pipefail -o history -o allexport # Set TFCI_GIT_DIR, the root directory for all commands, to two directories # above the location of this file (setup.sh). We could also use "git rev-parse # --show-toplevel", but that wouldn't work for non-git repos (like if someone # downloaded TF as a zip archive). export TFCI_GIT_DIR=$(cd $(dirname "$0"); realpath ../../) cd "$TFCI_GIT_DIR"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 07 23:01:25 UTC 2024 - 6K bytes - Viewed (0)