- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 148 for 1016 (0.04 sec)
-
src/bufio/bufio_test.go
} } func createTestInput(n int) []byte { input := make([]byte, n) for i := range input { // 101 and 251 are arbitrary prime numbers. // The idea is to create an input sequence // which doesn't repeat too frequently. input[i] = byte(i % 251) if i%101 == 0 { input[i] ^= byte(i / 101) } } return input } func TestReaderWriteTo(t *testing.T) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Nov 01 21:52:12 UTC 2024 - 51.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
- github.com/creack/pty: [v1.1.11 → v1.1.18](https://github.com/creack/pty/compare/v1.1.11...v1.1.18) - github.com/docker/docker: [v20.10.18+incompatible → v20.10.21+incompatible](https://github.com/docker/docker/compare/v20.10.18...v20.10.21) - github.com/go-errors/errors: [v1.0.1 → v1.4.2](https://github.com/go-errors/errors/compare/v1.0.1...v1.4.2)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (1) -
docs/ja/docs/deployment/docker.md
``` . ├── Dockerfile ├── main.py └── requirements.txt ``` そうすれば、`Dockerfile`の中にファイルをコピーするために、対応するパスを変更するだけでよいです: ```{ .dockerfile .annotate hl_lines="10 13" } FROM python:3.9 WORKDIR /code COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (1) COPY ./main.py /code/ # (2)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 44.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.21.md
### Changed - sigs.k8s.io/kustomize/api: v0.8.5 → v0.8.8 - sigs.k8s.io/kustomize/cmd/config: v0.9.7 → v0.9.10 - sigs.k8s.io/kustomize/kustomize/v4: v4.0.5 → v4.1.2 - sigs.k8s.io/kustomize/kyaml: v0.10.15 → v0.10.17 ### Removed _Nothing has changed._ # v1.21.0 [Documentation](https://docs.k8s.io) ## Downloads for v1.21.0 ### Source Code
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Fri Oct 14 07:03:14 UTC 2022 - 367.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.22.md
- sigs.k8s.io/kustomize/api: v0.8.5 → v0.8.8 - sigs.k8s.io/kustomize/cmd/config: v0.9.7 → v0.9.10 - sigs.k8s.io/kustomize/kustomize/v4: v4.0.5 → v4.1.2 - sigs.k8s.io/kustomize/kyaml: v0.10.15 → v0.10.17 - sigs.k8s.io/structured-merge-diff/v4: v4.1.0 → v4.1.1 ### Removed
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Dec 13 12:43:45 UTC 2022 - 454.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
- cloud.google.com/go/iap: v1.7.1 → v1.8.1 - cloud.google.com/go/ids: v1.3.0 → v1.4.1 - cloud.google.com/go/iot: v1.6.0 → v1.7.1 - cloud.google.com/go/kms: v1.10.1 → v1.15.0 - cloud.google.com/go/language: v1.9.0 → v1.10.1 - cloud.google.com/go/lifesciences: v0.8.0 → v0.9.1 - cloud.google.com/go/longrunning: v0.4.1 → v0.5.1 - cloud.google.com/go/managedidentities: v1.5.0 → v1.6.1
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Oct 23 04:37:31 UTC 2024 - 375.1K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.24.md
- github.com/docker/distribution: [v2.7.1+incompatible → v2.8.1+incompatible](https://github.com/docker/distribution/compare/v2.7.1...v2.8.1) - github.com/docker/docker: [v20.10.7+incompatible → v20.10.12+incompatible](https://github.com/docker/docker/compare/v20.10.7...v20.10.12) - github.com/godbus/dbus/v5: [v5.0.4 → v5.0.6](https://github.com/godbus/dbus/v5/compare/v5.0.4...v5.0.6)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Aug 24 00:02:43 UTC 2023 - 473.4K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<glob pattern="*.fvt"/> </mime-type> <mime-type type="video/vnd.hns.video"/> <mime-type type="video/vnd.iptvforum.1dparityfec-1010"/> <mime-type type="video/vnd.iptvforum.1dparityfec-2005"/> <mime-type type="video/vnd.iptvforum.2dparityfec-1010"/> <mime-type type="video/vnd.iptvforum.2dparityfec-2005"/> <mime-type type="video/vnd.iptvforum.ttsavc"/> <mime-type type="video/vnd.iptvforum.ttsmpeg2"/>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Sep 21 06:46:43 UTC 2023 - 298.5K bytes - Viewed (0) -
cmd/site-replication.go
ctx, cancel := globalLeaderLock.GetLock(ctx) defer cancel() healTimer := time.NewTimer(siteHealTimeInterval) defer healTimer.Stop() var maxRefreshDurationSecondsForLog float64 = 10 // 10 seconds.. for { select { case <-healTimer.C: c.RLock() enabled := c.enabled c.RUnlock() if enabled { refreshStart := time.Now()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 185.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.13.md
# Kubernetes 1.13 Release Notes ## Security Content
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 273.1K bytes - Viewed (0)