Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for DescribeTo (0.17 sec)

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

    extends BaseMatcher { private final String fixedDescription; public void CustomMatcher(String); public final void describeTo(Description); } org/hamcrest/CustomTypeSafeMatche.class package org.hamcrest; public abstract synchronized class CustomTypeSafeMatche extends TypeSafeMatcher { private final String fixedDescription; public void CustomTypeSafeMatche(String); public final void describeTo(Description); } org/hamcrest/Description$NullDescription.class package org.hamcrest; public final synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 44K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/util/Matchers.java

                    return matcher.matches(string.replace(SystemProperties.getInstance().getLineSeparator(), "\n"));
                }
    
                @Override
                public void describeTo(Description description) {
                    matcher.describeTo(description);
                    description.appendText(" (normalize line separators)");
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/NestedModelRuleDescriptor.java

            this.parent = parent;
            this.child = child;
        }
    
        @Override
        public void describeTo(Appendable appendable) {
            parent.describeTo(appendable);
            try {
                appendable.append(" > ");
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
            child.describeTo(appendable);
        }
    
        @Override
        public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/TaskDependencyMatchers.java

                        matcher.describeTo(description);
                        System.out.println(String.format("expected %s, got %s.", description.toString(), names));
                    }
                    return matches;
                }
    
                @Override
                public void describeTo(Description description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 15:16:36 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/internal/ModelNodeRendererTest.groovy

        def "should filter rules removing duplicates and excluding creators"() {
            ModelRuleDescriptor creator = Mock()
            creator.describeTo(_) >> { Appendable a ->
                a.append("creator")
            }
    
            ModelRuleDescriptor mutator = Mock()
            mutator.describeTo(_) >> { Appendable a ->
                a.append("mutator")
            }
    
            ModelNode modelNode = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 01 02:14:13 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/node_matchers.cc

            input_matchers->front().DescribeTo(&ss);
            printed_something = true;
            *os << "matching " << ss.str();
          } else {
            int edge_idx = 0;
            for (const ::testing::Matcher<OutEdge>& matcher : (*input_matchers)) {
              *os << "\n  [" << edge_idx << "] matching (";
              ::std::stringstream ss;
              matcher.DescribeTo(&ss);
              printed_something = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRuleExecutionException.java

            descriptor.describeTo(builder);
            return builder.toString();
        }
    
        private static String toMessage(ModelRuleDescriptor descriptor, String error) {
            StringBuilder builder = new StringBuilder("error executing model rule: ");
            descriptor.describeTo(builder);
            builder.append(" - ");
            builder.append(error);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptorTest.groovy

    class MethodModelRuleDescriptorTest extends Specification {
    
        def "check description"() {
            when:
            def sb = new StringBuilder()
            MethodModelRuleDescriptor.of(weakMethod(getClass(), method)).describeTo(sb)
    
            then:
            sb.toString() == ModelType.of(getClass()).displayName + "#" + desc
    
            where:
            method        | desc
            "noArgs"      | 'noArgs()'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

            if (versionMatcher.matches(PlatformVersion)) {
              val description = StringDescription()
              versionMatcher.describeTo(description)
              description.appendText(" expected to fail with exception that ")
              failureMatcher.describeTo(description)
    
              fail<Any>(description.toString())
            }
          }
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    ing item, Description mismatchDescription) void SubstringMatcher.describeTo(Description description) void IsSame.describeTo(Description description) void IsNull.describeTo(Description description) void IsNot.describeTo(Description description) void IsInstanceOf.describeTo(Description description) void IsEqual.describeTo(Description description) void IsCollectionContaini.describeTo(Description description) void IsAnything.describeTo(Description description) void Is.describeTo(Description description)...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
Back to top