- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,073 for _100 (0.03 sec)
-
tensorflow/c/eager/immediate_execution_tensor_handle.cc
if (!SummarizeValue(value_string).ok()) { value_string = "<error computing value>"; } if (value_string.length() > 100) { // The default NumPy-style output can be distractingly long in error // messages. value_string = absl::StrCat(value_string.substr(0, 100), " [...]"); } absl::Status s; const char* device_name = DeviceName(&s); if (!s.ok()) { device_name = "<error fetching device name>";
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:24:07 UTC 2024 - 2.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashingInputStreamTest.java
} public void testRead_putByteArrayOutOfBound() throws Exception { byte[] buf = new byte[100]; byte[] expectedBytes = buf.clone(); System.arraycopy(testBytes, 0, expectedBytes, 0, testBytes.length); HashingInputStream in = new HashingInputStream(hashFunction, buffer); int numOfByteRead = in.read(buf, 0, 100); assertEquals(4, numOfByteRead); for (int i = 0; i < numOfByteRead; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 02 16:24:50 UTC 2020 - 5K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashingInputStreamTest.java
} public void testRead_putByteArrayOutOfBound() throws Exception { byte[] buf = new byte[100]; byte[] expectedBytes = buf.clone(); System.arraycopy(testBytes, 0, expectedBytes, 0, testBytes.length); HashingInputStream in = new HashingInputStream(hashFunction, buffer); int numOfByteRead = in.read(buf, 0, 100); assertEquals(4, numOfByteRead); for (int i = 0; i < numOfByteRead; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 02 16:24:50 UTC 2020 - 5K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java
assertVersionEqual("1-SNAPSHOT", "1.0-SNAPSHOT"); assertVersionEqual("1-SNAPSHOT", "1.0.0-SNAPSHOT"); assertVersionOlder("1.0-SNAPSHOT", "1.1-SNAPSHOT"); assertVersionOlder("1.1-SNAPSHOT", "1.2-SNAPSHOT"); assertVersionOlder("1.0.0-SNAPSHOT", "1.1-SNAPSHOT"); assertVersionOlder("1.1-SNAPSHOT", "1.2.0-SNAPSHOT");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.5K bytes - Viewed (0) -
internal/s3select/simdj/testdata/parking-citations-10.json.zst
:"PA","Color":"BR","Location":"721 S WESTLAKE","Route":"2A75","Agency":1,"ViolationCode":"8069AA","ViolationDescr":"NO STOP/STAND AM","Fine":93,"Latitude":99999,"Longitude":99999} {"Ticket":1106506413,"IssueData":"2015-12-22T00:00:00","IssueTime":"1100","RPState":"CA","PlateExpiry":"201701","Make":"NISS","BodyStyle":"PA","Color":"SI","Location":"1159 HUNTLEY DR","Route":"2A75","Agency":1,"ViolationCode":"8069AA","ViolationDescr":"NO STOP/STAND AM","Fine":93,"Latitude":99999,"Longitude":99999}...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 693 bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt
} @Test fun cancelWhileExecutingPreventsRepeat() { redQueue.schedule("task", 100.µs) { log += "run@${taskFaker.nanoTime}" redQueue.cancelAll() return@schedule 100.µs } taskFaker.advanceUntil(0.µs) assertThat(log).isEmpty() taskFaker.advanceUntil(100.µs) assertThat(log).containsExactly("run@100000") taskFaker.assertNoMoreTasks()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 29 00:33:04 UTC 2024 - 23K bytes - Viewed (0) -
src/test/resources/plugin/repo3/fess-crawler-parent/maven-metadata.xml
<version>3.7.2</version> <version>3.8.0</version> <version>3.8.1</version> <version>3.8.2</version> <version>3.9.0</version> <version>3.9.1</version> <version>3.10.0</version> <version>3.10.1</version> <version>3.11.0</version> <version>3.11.1</version> <version>3.11.2</version> <version>3.12.0</version> <version>3.12.1</version>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 4.2K bytes - Viewed (0) -
src/test/resources/plugin/repo3/fess-crawler/maven-metadata.xml
<version>3.7.2</version> <version>3.8.0</version> <version>3.8.1</version> <version>3.8.2</version> <version>3.9.0</version> <version>3.9.1</version> <version>3.10.0</version> <version>3.10.1</version> <version>3.11.0</version> <version>3.11.1</version> <version>3.11.2</version> <version>3.12.0</version> <version>3.12.1</version>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 4.2K bytes - Viewed (0) -
src/test/resources/plugin/repo3/fess-crawler-lasta/maven-metadata.xml
<version>3.7.2</version> <version>3.8.0</version> <version>3.8.1</version> <version>3.8.2</version> <version>3.9.0</version> <version>3.9.1</version> <version>3.10.0</version> <version>3.10.1</version> <version>3.11.0</version> <version>3.11.1</version> <version>3.11.2</version> <version>3.12.0</version> <version>3.12.1</version>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 4.3K bytes - Viewed (0) -
internal/dsync/drwmutex_test.go
foo /= 2 } rwm.RUnlock(context.Background()) } } _ = foo }) } // Borrowed from rwmutex_test.go func BenchmarkRWMutexWrite100(b *testing.B) { benchmarkRWMutex(b, 0, 100) } // Borrowed from rwmutex_test.go func BenchmarkRWMutexWrite10(b *testing.B) { benchmarkRWMutex(b, 0, 10) } // Borrowed from rwmutex_test.go func BenchmarkRWMutexWorkWrite100(b *testing.B) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 24 03:49:07 UTC 2022 - 9.7K bytes - Viewed (0)