Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for DescribeTo (0.27 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. 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)
  3. 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)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    n must be non null!"); } this.fixedDescription = description; } @Override public final void describeTo(Description description) { description.appendText(fixedDescription); } } org/hamcrest/Description.java org/hamcrest/Description.java package org.hamcrest; /** * A description of a Matcher. A Matcher will describe itself to a description * which can later be used for reporting. * * @see Matcher#describeTo(Description) */ public interface Description { /** * A description that consumes input but does...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentTypeModelRuleExtractor.java

                    StringBuilder sb = new StringBuilder();
                    ruleDefinition.getDescriptor().describeTo(sb);
                    sb.append(String.format(" is not a valid %s model rule method.", modelName));
                    return new InvalidModelRuleDeclarationException(sb.toString(), e);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            modelRegistry.transition(this, state, true);
        }
    
        private static String describe(ModelRuleDescriptor descriptor) {
            StringBuilder stringBuilder = new StringBuilder();
            descriptor.describeTo(stringBuilder);
            return stringBuilder.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

                this.version = version;
            }
    
    
            @Override
            public String getDisplayName() {
                TreeFormatter formatter = new TreeFormatter();
                version.describeTo(formatter);
                return "version " + formatter;
            }
        }
    
        private static class RejectedBySelectorReason implements Describable {
    
            private final Collection<String> rejectedVersions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/test/groovy/org/gradle/api/internal/file/pattern/PatternMatcherFactoryTest.java

        }
    
        private static Matcher<PatternMatcher> matches(final String[] segments, final boolean isFile) {
            return new BaseMatcher<PatternMatcher>() {
                public void describeTo(Description description) {
                    description.appendText("matches ").appendValue(Joiner.on("/").join(segments));
                }
    
                public boolean matches(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

                        return false
                    }
                    assertHasConsoleSummary(item.toString(), spec)
                    return true
                }
    
                @Override
                void describeTo(Description description) {
                    description.appendText("contains expected problems")
                }
            }
        }
    
        private static void assertNoProblemsSummary(String text) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                    if (!details.rule.getRuleDependencies().isEmpty()) {
                        StringBuilder message = new StringBuilder();
                        details.method.getDescriptor().describeTo(message);
                        message.append(" has dependencies on plugins: ");
                        message.append(details.rule.getRuleDependencies());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top