Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,605 for describeTo (0.26 sec)

  1. 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)
  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. 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)
  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. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptorTest.groovy

        }
    
        def "inner classes are described"() {
            when:
            def sb = new StringBuilder()
            MethodModelRuleDescriptor.of(weakMethod(Outer.Inner, "noArgs")).describeTo(sb)
    
            then:
            sb.toString() == 'MethodModelRuleDescriptorTest.Outer.Inner#noArgs()'
        }
    
        private WeaklyTypeReferencingMethod weakMethod(Class type, String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/internal/ModelNodeRendererTest.groovy

    import org.gradle.model.internal.core.ModelNode
    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor
    import spock.lang.Specification
    
    
    class ModelNodeRendererTest extends Specification {
    
        def "should filter rules removing duplicates and excluding creators"() {
            ModelRuleDescriptor creator = Mock()
            creator.describeTo(_) >> { Appendable a ->
                a.append("creator")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 01 02:14:13 UTC 2019
    - 1.5K 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. 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)
  9. 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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/ModelRuleDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core.rule.describe;
    
    import com.google.errorprone.annotations.FormatMethod;
    import com.google.errorprone.annotations.FormatString;
    
    /**
     * Describes a method rule.
     * All implementations of this class are expected to implement the equals and hashCode method
     */
    public interface ModelRuleDescriptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top