- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for S1 (0.03 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
} } return location != null ? new org.apache.maven.model.InputLocation(location) : null; } private static boolean equals(String s1, String s2) { String c1 = s1 == null ? "" : s1.trim(); String c2 = s2 == null ? "" : s2.trim(); return c1.equals(c2); } private static Severity getSeverity(ModelBuildingRequest request, int errorThreshold) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
tensorflow/c/c_api_function_test.cc
} void AssertEqual(TF_Function* f1, TF_Function* f2) { string s1, s2; tensorflow::FunctionDef fdef1, fdef2; ASSERT_TRUE(GetFunctionDef(f1, &fdef1)); ASSERT_TRUE(GetFunctionDef(f2, &fdef2)); SerializeToStringDeterministic(fdef1, &s1); SerializeToStringDeterministic(fdef2, &s2); ASSERT_EQ(s1, s2); } string GetName(TF_Function* func) { tensorflow::FunctionDef fdef;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Jul 20 22:08:54 UTC 2023 - 63.6K bytes - Viewed (0) -
src/bufio/bufio_test.go
// to accumulate the text of a file. func readLines(b *Reader) string { s := "" for { s1, err := b.ReadString('\n') if err == io.EOF { break } if err != nil && err != iotest.ErrTimeout { panic("GetLines: " + err.Error()) } s += s1 } return s } // Call Read to accumulate the text of a file func reads(buf *Reader, m int) string {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Nov 01 21:52:12 UTC 2024 - 51.6K bytes - Viewed (0)