Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for DescribeTo (0.2 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/ModelRuleDescriptor.java

     */
    public interface ModelRuleDescriptor {
        /**
         * This method is expected to be idempotent.
         *
         * @param appendable where to write the description to.
         */
        void describeTo(Appendable appendable);
    
        ModelRuleDescriptor append(ModelRuleDescriptor child);
    
        ModelRuleDescriptor append(String child);
    
        @FormatMethod
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/RejectedVersion.java

        public RejectedVersion(ModuleComponentIdentifier id) {
            this.id = id;
        }
    
        public ModuleComponentIdentifier getId() {
            return id;
        }
    
        public void describeTo(TreeFormatter builder) {
            builder.node(id.getVersion());
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top