Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CheckResult (0.04 sec)

  1. guava-tests/test/com/google/common/base/JoinerTest.java

        checkResult(skipNulls, iterable1, "1");
        checkResult(skipNulls, iterable12, "1-2");
        checkResult(skipNulls, iterable123, "1-2-3");
        checkResult(J, UNDERREPORTING_SIZE_LIST, "1-2-3");
        checkResult(J, OVERREPORTING_SIZE_LIST, "1-2-3");
        checkResult(skipNulls, iterableNull1, "1");
        checkResult(skipNulls, iterable1Null, "1");
        checkResult(skipNulls, iterable1Null2, "1-2");
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/JoinerTest.java

        checkResult(skipNulls, iterable1, "1");
        checkResult(skipNulls, iterable12, "1-2");
        checkResult(skipNulls, iterable123, "1-2-3");
        checkResult(J, UNDERREPORTING_SIZE_LIST, "1-2-3");
        checkResult(J, OVERREPORTING_SIZE_LIST, "1-2-3");
        checkResult(skipNulls, iterableNull1, "1");
        checkResult(skipNulls, iterable1Null, "1");
        checkResult(skipNulls, iterable1Null2, "1-2");
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            runKotlinBinaryCompatibilityCheck(v1, v2) {
                assertBinaryCompatible()
                block()
            }
    
        internal
        fun checkNotBinaryCompatibleKotlin(@Language("kotlin") v1: String = "", @Language("kotlin") v2: String, block: CheckResult.() -> Unit = {}): CheckResult =
            runKotlinBinaryCompatibilityCheck(v1, v2) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 18K bytes
    - Viewed (0)
  4. cmd/os-readdir_test.go

    	sort.Strings(entries)
    
    	// Add entries slice for this test directory.
    	testResults = append(testResults, result{dir, entries})
    	return testResults
    }
    
    // checkResult - checks whether entries are got are same as expected entries.
    func checkResult(expected []string, got []string) bool {
    	// If length of expected and got slice are different, the test actually failed.
    	if len(expected) != len(got) {
    		return false
    	}
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue May 27 15:19:03 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top