- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 48 for Seq (0.02 sec)
-
internal/grid/connection.go
// No need to return result PutByteBuffer(b) return } if debugReqs { fmt.Println(m.MuxID, c.StringReverse(), "RESPONDING") } m = message{ MuxID: m.MuxID, Seq: m.Seq, Op: OpResponse, Flags: FlagEOF, } if err != nil { m.Flags |= FlagPayloadIsErr m.Payload = []byte(*err) } else { m.Payload = b m.setZeroPayloadFlag() }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 46.7K bytes - Viewed (0) -
cmd/endpoint-ellipses.go
for _, ss := range setCounts { var symmetry bool for _, argPattern := range argPatterns { for _, p := range argPattern { if uint64(len(p.Seq)) > ss { symmetry = uint64(len(p.Seq))%ss == 0 } else { symmetry = ss%uint64(len(p.Seq)) == 0 } } } // With no arg patterns, it is expected that user knows // the right symmetry, so either ellipses patterns are
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 14.7K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Ascii.java
truncationIndicator.length()); if (seq.length() <= maxLength) { String string = seq.toString(); if (string.length() <= maxLength) { return string; } // if the length of the toString() result was > maxLength for some reason, truncate that seq = string; } return new StringBuilder(maxLength) .append(seq, 0, truncationLength) .append(truncationIndicator)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 21.7K bytes - Viewed (0) -
test-site/build.sbt
resolvers += ( "Local Maven Repository" at "file://"+Path.userHome.absolutePath+"/.m2/repository" ) scalaVersion := "2.11.1" libraryDependencies ++= Seq( javaJdbc, javaEbean, cache, javaWs ) libraryDependencies += "org.codelibs" % "elasticsearch-cluster-runner" % "2.1.2.0" libraryDependencies += "org.codelibs" % "elasticsearch-fess-suggest" % "2.1.2"
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Fri Apr 01 05:40:58 UTC 2016 - 968 bytes - Viewed (0) -
internal/grid/msg_gen.go
err = msgp.ArrayError{Wanted: 7, Got: zb0001} return } z.MuxID, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "MuxID") return } z.Seq, err = dc.ReadUint32() if err != nil { err = msgp.WrapError(err, "Seq") return } z.DeadlineMS, err = dc.ReadUint32() if err != nil { err = msgp.WrapError(err, "DeadlineMS") return } { var zb0002 uint8
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jul 25 21:07:21 UTC 2024 - 22.4K bytes - Viewed (0) -
buildscripts/verify-healing-empty-erasure-set.sh
function start_minio_3_node() { export MINIO_ROOT_USER=minio export MINIO_ROOT_PASSWORD=minio123 export MINIO_ERASURE_SET_DRIVE_COUNT=6 export MINIO_CI_CD=1 start_port=$1 args="" for i in $(seq 1 3); do
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 3.7K bytes - Viewed (0) -
guava/src/com/google/common/base/Ascii.java
truncationIndicator.length()); if (seq.length() <= maxLength) { String string = seq.toString(); if (string.length() <= maxLength) { return string; } // if the length of the toString() result was > maxLength for some reason, truncate that seq = string; } return new StringBuilder(maxLength) .append(seq, 0, truncationLength) .append(truncationIndicator)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 21.7K bytes - Viewed (0) -
ci/official/containers/linux_arm64/build.sh
docker pull "$AR_IMAGE" || true # Due to some flakiness of resources pulled in the build, allow the docker # command to reattempt build a few times in the case of failure (b/302558736) set +e for i in $(seq 1 5) do docker build \ --build-arg REQUIREMENTS_FILE=jax.requirements.txt \ --target=$target \ --cache-from "$AR_IMAGE" \ -t "$AR_IMAGE" . && break done final=$?
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 01 15:44:57 UTC 2024 - 2.4K bytes - Viewed (0) -
buildscripts/heal-inconsistent-versions.sh
if ! ps -p ${pid} 1>&2 >/dev/null; then echo "server1 log:" cat "${WORK_DIR}/server1.log" echo "FAILED" purge "$WORK_DIR" exit 1 fi "${PWD}/mc" mb --with-versioning minio/bucket for i in $(seq 1 4); do "${PWD}/mc" cp /etc/hosts minio/bucket/testobj sudo chown -R root. "${WORK_DIR}/disk${i}" "${PWD}/mc" cp /etc/hosts minio/bucket/testobj sudo chown -R ${USER}. "${WORK_DIR}/disk${i}" done
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 26 05:07:25 UTC 2023 - 1.9K bytes - Viewed (0) -
buildscripts/minio-upgrade.sh
if [ "${expected}" != "${got}" ]; then echo "mismatch - expected ${expected}, got ${got}" exit 1 fi echo "matches - ${expected}, got ${got}" } add_alias() { for i in $(seq 1 4); do echo "... attempting to add alias $i" until (mc alias set minio http://127.0.0.1:9000 minioadmin minioadmin); do echo "...waiting... for 5secs" && sleep 5 done done echo "Sleeping for nginx"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 2.6K bytes - Viewed (0)