- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 287 for describeTo (0.18 sec)
-
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...
Archive - Registered: 2023-12-03 03:35 - Last Modified: 2022-10-02 08:41 - 44K bytes - Viewed (0) -
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)...
Archive - Registered: 2023-12-03 03:35 - Last Modified: 2022-10-02 08:41 - 236.8K bytes - Viewed (0) -
okhttp-testing-support/src/jvmMain/kotlin/okhttp3/testing/PlatformRule.kt
override fun describeTo(description: Description) { description.appendText(platform) } override fun matches(item: Any?): Boolean { return getPlatformSystemProperty() == platform } } fun fromMajor(version: Int): Matcher<PlatformVersion> { return object : TypeSafeMatcher<PlatformVersion>() { override fun describeTo(description: Description) {
Plain Text - Registered: 2023-12-01 11:42 - Last Modified: 2023-05-04 11:53 - 14.5K bytes - Viewed (0) -
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...
Archive - Registered: 2023-12-03 03:35 - Last Modified: 2022-10-02 08:41 - 31.9K bytes - Viewed (0) -
maven-core/src/test/java/org/apache/maven/project/ProjectBuildingResultWithProblemMessageMatcher.java
} final ProjectBuildingResult r = (ProjectBuildingResult) o; return r.getProblems().stream().anyMatch(p -> p.getMessage().contains(problemMessage)); } @Override public void describeTo(Description description) { description.appendText("a ProjectBuildingResult with message ").appendValue(problemMessage); } @Override
Java - Registered: 2023-12-03 03:35 - Last Modified: 2022-12-26 15:12 - 2.7K bytes - Viewed (0) -
maven-core/src/test/java/org/apache/maven/project/ProjectBuildingResultWithLocationMatcher.java
return r.getProblems().stream() .anyMatch(p -> p.getLineNumber() == lineNumber && p.getColumnNumber() == columnNumber); } @Override public void describeTo(Description description) { description .appendText("a ProjectBuildingResult with location ") .appendText(formatLocation(columnNumber, lineNumber)); }
Java - Registered: 2023-12-03 03:35 - Last Modified: 2022-12-26 15:12 - 2.9K bytes - Viewed (0) -
okhttp/src/jvmTest/java/okhttp3/EventListenerTest.java
assertThat(listener.recordedEventTypes()).doesNotContain("ResponseBodyEnd"); } } private Matcher<Long> greaterThan(final long value) { return new BaseMatcher<Long>() { @Override public void describeTo(Description description) { description.appendText("> " + value); } @Override public boolean matches(Object o) { return ((Long) o) > value; } }; }
Java - Registered: 2023-12-01 11:42 - Last Modified: 2023-01-02 20:13 - 57.9K bytes - Viewed (0) -
docs/batch-jobs/README.md
A job is the basic unit of work for MinIO Batch Job. A job is a self describing YAML, once this YAML is submitted and evaluated - MinIO performs the requested actions on each of the objects obtained under the described criteria in job YAML file. ### Type Type describes the job type, such as replicating objects between MinIO sites. Each job performs a single type of operation across all objects that match the job description criteria. ## Batch Jobs via Commandline
Plain Text - Registered: 2023-12-03 19:28 - Last Modified: 2022-10-06 06:00 - 4.8K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
cmd := &cobra.Command{ Use: "pod <pod>", Aliases: []string{"po"}, Short: "Describe pods and their Istio configuration [kube-only]", Long: `Analyzes pod, its Services, DestinationRules, and VirtualServices and reports the configuration objects that affect that pod.`, Example: ` istioctl experimental describe pod productpage-v1-c7765c886-7zzd4`, RunE: func(cmd *cobra.Command, args []string) error {
Go - Registered: 2023-11-29 22:53 - Last Modified: 2023-09-11 15:29 - 45.3K bytes - Viewed (0) -
istioctl/pkg/describe/describe_test.go
func TestDescribe(t *testing.T) { productPageConfigPath := "testdata/describe/http_config.json" config, err := os.ReadFile(productPageConfigPath) if err != nil { t.Fatalf("failed to read %s: %v", productPageConfigPath, err) } cases := []execAndK8sConfigTestCase{ { // case 0 args: []string{}, expectedString: "Describe resource and related Istio configuration", }, { // case 2 no pod
Go - Registered: 2023-11-29 22:53 - Last Modified: 2023-08-29 14:53 - 16.9K bytes - Viewed (0)