- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for 072412 (0.06 sec)
-
CITATION.cff
given-names: Yuan - family-names: Zheng given-names: Xiaoqiang identifiers: - type: doi value: 10.5281/zenodo.4724125 description: The concept DOI for the collection containing all versions of the Citation File Format. date-released: "2015-11-09" license: "Apache-2.0" doi: 10.5281/zenodo.4724125
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 06 15:26:23 UTC 2021 - 3.5K bytes - Viewed (0) -
README.md
[![PyPI](https://badge.fury.io/py/tensorflow.svg)](https://badge.fury.io/py/tensorflow) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.4724125.svg)](https://doi.org/10.5281/zenodo.4724125) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/1486/badge)](https://bestpractices.coreinfrastructure.org/projects/1486)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 05 15:00:10 UTC 2023 - 11.9K bytes - Viewed (0) -
internal/s3select/jstream/scanner_test.go
package jstream import ( "bufio" "bytes" "fmt" "io" "sync/atomic" "testing" ) var ( smallInput = make([]byte, 1024*12) // 12K mediumInput = make([]byte, 1024*1024*12) // 12MB largeInput = make([]byte, 1024*1024*128) // 128MB ) func TestScanner(t *testing.T) { data := []byte("abcdefghijklmnopqrstuvwxyz0123456789") var i int r := bytes.NewReader(data) scanner := newScanner(r)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 3.2K bytes - Viewed (0) -
fuzzing/fuzzingserver-expected.txt
"12.3.4 UNIMPLEMENTED" "12.3.5 UNIMPLEMENTED" "12.3.6 UNIMPLEMENTED" "12.3.7 UNIMPLEMENTED" "12.3.8 UNIMPLEMENTED" "12.3.9 UNIMPLEMENTED" "12.4.1 UNIMPLEMENTED" "12.4.10 UNIMPLEMENTED" "12.4.11 UNIMPLEMENTED" "12.4.12 UNIMPLEMENTED" "12.4.13 UNIMPLEMENTED" "12.4.14 UNIMPLEMENTED" "12.4.15 UNIMPLEMENTED" "12.4.16 UNIMPLEMENTED" "12.4.17 UNIMPLEMENTED" "12.4.18 UNIMPLEMENTED" "12.4.2 UNIMPLEMENTED" "12.4.3 UNIMPLEMENTED"
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Mar 26 02:01:32 UTC 2019 - 6.7K bytes - Viewed (0) -
ci/official/requirements_updater/numpy1_requirements/requirements.in
# Requirements for NumPy 1.x numpy ~= 1.26.0 wheel ~= 0.41.2 h5py >= 3.10.0 lit ~= 17.0.2 opt_einsum == 3.3.0 astunparse == 1.6.3 dill == 0.3.7 astor == 0.7.1 typing_extensions == 4.8.0 gast == 0.4.0 termcolor == 2.3.0 wrapt == 1.16.0 tblib == 2.0.0 ml_dtypes >= 0.4.0, < 0.5.0 # Install tensorboard, and keras # Note that here we want the latest version that matches TF major.minor version
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Oct 11 22:42:53 UTC 2024 - 874 bytes - Viewed (0) -
guava/src/com/google/common/collect/Collections2.java
* * <p><i>Notes:</i> This is an implementation of the algorithm for Lexicographical Permutations * Generation, described in Knuth's "The Art of Computer Programming", Volume 4, Chapter 7, * Section 7.2.1.2. The iteration order follows the lexicographical order. This means that the * first permutation will be in ascending order, and the last will be in descending order. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 23.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.24.md
- [Changelog since v1.24.12](#changelog-since-v12412) - [Changes by Kind](#changes-by-kind-4) - [Feature](#feature-4) - [Bug or Regression](#bug-or-regression-4) - [Other (Cleanup or Flake)](#other-cleanup-or-flake-1) - [Dependencies](#dependencies-4) - [Added](#added-4) - [Changed](#changed-4) - [Removed](#removed-4) - [v1.24.12](#v12412) - [Downloads for v1.24.12](#downloads-for-v12412)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Aug 24 00:02:43 UTC 2023 - 473.4K bytes - Viewed (0) -
src/archive/tar/format.go
func (h *headerV7) mode() []byte { return h[100:][:8] } func (h *headerV7) uid() []byte { return h[108:][:8] } func (h *headerV7) gid() []byte { return h[116:][:8] } func (h *headerV7) size() []byte { return h[124:][:12] } func (h *headerV7) modTime() []byte { return h[136:][:12] } func (h *headerV7) chksum() []byte { return h[148:][:8] } func (h *headerV7) typeFlag() []byte { return h[156:][:1] }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 11.3K bytes - Viewed (0) -
src/archive/tar/strconv_test.go
input int64 width int ok bool }{ {-1, 1, false}, {-1, 2, false}, {-1, 3, false}, {0, 1, true}, {0 + 1, 1, false}, {0, 2, true}, {07, 2, true}, {07 + 1, 2, false}, {0, 4, true}, {0777, 4, true}, {0777 + 1, 4, false}, {0, 8, true}, {07777777, 8, true}, {07777777 + 1, 8, false}, {0, 12, true}, {077777777777, 12, true},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Feb 09 05:28:50 UTC 2021 - 14K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java
X2398, X2399, X2400, X2401, X2402, X2403, X2404, X2405, X2406, X2407, X2408, X2409, X2410, X2411, X2412, X2413, X2414, X2415, X2416, X2417, X2418, X2419, X2420, X2421, X2422, X2423, X2424, X2425, X2426,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:15:24 UTC 2024 - 29.4K bytes - Viewed (0)