- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 738 for inputMs (0.09 sec)
-
src/archive/tar/reader.go
// Thus, this function will read from the raw io.Reader to fetch extra headers. // This method mutates blk in the process. func (tr *Reader) readOldGNUSparseMap(hdr *Header, blk *block) (sparseDatas, error) { // Make sure that the input format is GNU. // Unfortunately, the STAR format also has a sparse header format that uses // the same type flag but has a completely different layout. if blk.getFormat() != FormatGNU { return nil, ErrHeader }
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Fri Mar 08 01:59:14 UTC 2024 - 26.8K bytes - Viewed (0) -
src/archive/zip/reader_test.go
t.Fatalf("Error mismatch\n\tGot: %v\n\tWant: %v", err, ErrFormat) } }) } } func TestIssue54801(t *testing.T) { for _, input := range []string{"testdata/readme.zip", "testdata/dd.zip"} { z, err := OpenReader(input) if err != nil { t.Fatal(err) } defer z.Close() for _, f := range z.File { // Make file a directory f.Name += "/"
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Thu Jul 25 00:25:45 UTC 2024 - 55.6K bytes - Viewed (0) -
cmd/endpoint.go
} } for i := range endpoints { endpoints[i].IsLocal = endpointLocalMap[endpoints[i].Host] } return nil } // NewEndpoints - returns new endpoint list based on input args. func NewEndpoints(args ...string) (endpoints Endpoints, err error) { var endpointType EndpointType var scheme string uniqueArgs := set.NewStringSet() // Loop through args and adds to endpoint list.
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri Jun 21 22:22:24 UTC 2024 - 34.2K bytes - Viewed (0) -
src/main/resources/fess_label_ko.properties
labels.userInfo = 사용자 정보 labels.webApiJson = JSON 응답 labels.webConfigName = 웹 크롤링 설정 이름 labels.allLanguages = 모든 언어 labels.dictId = 사전 ID labels.docId = 문서 ID labels.endTime = 종료 시간 labels.hq = hq labels.inputs = 원본 labels.jobLogging = 로깅 labels.jobName = 이름 labels.jobStatus = 상태 labels.labelTypeIds = 레이블(Label) labels.lang = 언어 labels.outputs = 대상 labels.pos = 품사 labels.purgeJobLogDay = 이전 작업 로그 삭제
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 44K bytes - Viewed (0) -
docs/debugging/xl-meta/main.go
} // shardSize returns the shard size for a given block size and data blocks. func shardSize(blockSize, dataBlocks int) (sz int) { if dataBlocks == 0 { // do nothing on invalid input return } // Make denominator positive if dataBlocks < 0 { blockSize = -blockSize dataBlocks = -dataBlocks } sz = blockSize / dataBlocks
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Sep 05 11:57:44 UTC 2024 - 40.3K bytes - Viewed (0) -
docs/em/docs/tutorial/sql-databases.md
* ⚫️ 🚚 🌖 📟 & 👄 🌅 🏗. * 🛠️ ✔️ `async` 🔢. * 🚥 📤 📟 ⚫️ 👈 ✔️ "⌛" 🕸, ⚫️ 💪 "🍫" 👆 🈸 📤 & 📉 🎭 🍖. * 👐 ⚫️ 🎲 🚫 📶 ⚠ 📥 ⏮️ 🌌 `SQLAlchemy` 👷. * ✋️ 🚥 👆 🚮 🌖 📟 🛠️ 👈 ✔️ 📚 <abbr title="input and output">👤/🅾</abbr> ⌛, ⚫️ 💪 ⤴️ ⚠. * 🛠️ 🏃 *🔠* 📨. * , 🔗 🔜 ✍ 🔠 📨. * 🕐❔ *➡ 🛠️* 👈 🍵 👈 📨 🚫 💪 💽. /// tip ⚫️ 🎲 👍 ⚙️ 🔗 ⏮️ `yield` 🕐❔ 👫 🥃 ⚙️ 💼. /// /// info
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 25K bytes - Viewed (0) -
helm-releases/minio-2.0.1.tgz
myminio/$BUCKET > /dev/null 2>&1) return $? } # createBucket ($bucket, $policy, $purge) # Ensure bucket exists, purging if asked to createBucket() { BUCKET=$1 POLICY=$2 PURGE=$3 VERSIONING=$4 # Purge the bucket, if set & exists # Since PURGE is user input, check explicitly for `true` if [ $PURGE = true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET set -e ; # reset `e` as active else echo "Bucket '$BUCKET'...
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Aug 31 09:09:09 UTC 2021 - 13.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Web # ===== form.admin.max.input.size=10000 form.admin.label.in.config.enabled=false form.admin.default.template.name=__TEMPLATE__ osdd.link.enabled=auto clipboard.copy.icon.enabled=true # ----------------------------------------------------------
Registered: Mon Oct 28 08:04:08 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle_test.go
t.Run(fmt.Sprintf("Test_%d", i+1), func(t *testing.T) { lc, err := ParseLifecycleConfig(bytes.NewReader([]byte(tc.inputConfig))) if err != nil { t.Fatalf("Got unexpected error: %v", err) } // To ensure input lifecycle configurations are valid if err := lc.Validate(lock.Retention{}); err != nil { t.Fatalf("Invalid test case: %d %v", i+1, err) } if got := lc.HasActiveRules(tc.prefix); got != tc.want {
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu May 23 01:12:48 UTC 2024 - 55.1K bytes - Viewed (0) -
tensorflow/BUILD
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0)