- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for result_type (0.06 seconds)
-
RELEASE.md
* Add ellipsis (...) support for `tf.einsum()`. * Add expand_composites argument to all `nest.*` methods. * Added `strings.byte_split`. * Add a new "result_type" parameter to `tf.strings.split`. * Add name argument to `tf.string_split` and `tf.strings_split`. * Extend `tf.strings.split` to support inputs with any rank. * Added `tf.random.binomial`.
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3) -
tests/query_test.go
dbName := DB.NamingStrategy.ColumnName("", name) resultType := reflect.ValueOf(first[dbName]).Type().Name() switch name { case "Name": if !strings.Contains(resultType, "string") { t.Errorf("invalid data type for %v, got %v %#v", dbName, resultType, first[dbName]) } case "Age": if !strings.Contains(resultType, "int") {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Tue Jul 22 06:21:04 GMT 2025 - 51K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
val store = SerializableTestResultStore(testBinaryResultsDir.toPath()) if (store.hasResults()) { store.forEachResult { result -> if (result.innerResult.resultType == TestResult.ResultType.FAILURE) { containingFailures = true } } } return containingFailures } /**Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1)