Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for matchesSafely (0.34 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    TYPE_FINDER; private final Matcher subMatcher; private final String featureDescription; private final String featureName; public void FeatureMatcher(Matcher, String, String); protected abstract Object featureValueOf(Object); protected boolean matchesSafely(Object, Description); public final void describeTo(Description); static void <clinit>(); } org/hamcrest/Matcher.class package org.hamcrest; public abstract interface Matcher extends SelfDescribing { public abstract boolean matches(Object); public...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    CustomTypeSafeMatche&lt;String&gt;("a non empty string") { * public boolean matchesSafely(String string) { * return !string.isEmpty(); * } * public void describeMismatchSafe(String string, Description mismatchDescription) { * mismatchDescription.appendText("was empty"); * } * }; * </pre> * This is a variant of {@link CustomMatcher} that first type checks * the argument being matched. By the time {@link TypeSafeMatcher#matchesSafely} is * is called the argument is guaranteed to be non-null and of the correct...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    org.hamcrest.TypeSafeMatcher Methods made final to prevent accidental override. matchesSafely(T, Description) - Method in class org.hamcrest.core.CombinableMatcher matchesSafely(Iterable<T>, Description) - Method in class org.hamcrest.core.Every matchesSafely(Iterable<? super T>, Description) - Method in class org.hamcrest.core.IsCollectionContaini matchesSafely(String) - Method in class org.hamcrest.core.SubstringMatcher matchesSafely(T, Description) - Method in class org.hamcrest.FeatureMatcher matchesSafely(T,...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

          return object : TypeSafeMatcher<PlatformVersion>() {
            override fun describeTo(description: Description) {
              description.appendText("JDK with version from $version")
            }
    
            override fun matchesSafely(item: PlatformVersion): Boolean {
              return item.majorVersion >= version
            }
          }
        }
    
        fun onMajor(version: Int): Matcher<PlatformVersion> {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    org.junit.runner.Runner getRunner(); } org/junit/experimental/results/ResultMatchers$4.class package org.junit.experimental.results; final synchronized class ResultMatchers$4 extends org.hamcrest.TypeSafeMatcher { void ResultMatchers$4(String); public boolean matchesSafely(PrintableResult); public void describeTo(org.hamcrest.Description); } org/junit/experimental/results/ResultMatchers$2.class package org.junit.experimental.results; final synchronized class ResultMatchers$2 extends org.hamcrest.BaseMatcher { void...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top