Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 260 for testslice (0.16 sec)

  1. android/guava-tests/test/com/google/common/collect/SetsTest.java

      private static final Comparator<Integer> SOME_COMPARATOR = Collections.reverseOrder();
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(SetsTest.class);
    
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/merge-probers.yaml

                command:
                - cat
                - /tmp/healthy
            resources: {}
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            livenessProbe:
              httpGet:
                path: /testLive
                port: 8008
            name: new
            ports:
            - containerPort: 8008
              name: http
            readinessProbe:
              exec:
                command:
                - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 02:54:48 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    [source]
    ----
        - org.gradle.category              = verification   // <1>
        - org.gradle.testsuite.type        = unit-test      // <2>
        - org.gradle.verificationtype      = jacoco-results   // <3>
    ----
    <1> Category attribute; value is fixed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Tests for {@code TreeRangeMap}.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible // NavigableMap
    public class TreeRangeMapTest extends TestCase {
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(TreeRangeMapTest.class);
        suite.addTest(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

    import org.gradle.plugins.ide.internal.IdeArtifactRegistry;
    import org.gradle.plugins.ide.internal.IdePlugin;
    import org.gradle.plugins.ide.internal.configurer.UniqueProjectNameProvider;
    import org.gradle.testing.base.TestSuite;
    import org.gradle.testing.base.TestingExtension;
    import org.gradle.testing.base.plugins.TestSuiteBasePlugin;
    
    import javax.inject.Inject;
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Collection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/JUnitTestClassExecutionResult.groovy

            testClassNode.testcase.find { it.@name == name || it.@name == "$name()"}
        }
    
        private def findTests() {
            if (!checked) {
                assertThat(testClassNode.name(), CoreMatchers.equalTo('testsuite'))
                assertThat(******@****.***(), CoreMatchers.equalTo(testClassDisplayName))
                assertThat(******@****.***(), CoreMatchers.not(CoreMatchers.equalTo('')))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/merge-probers.yaml.injected

            - name: ISTIO_KUBE_APP_PROBERS
              value: '{"/app-health/hello/livez":{"httpGet":{"port":80}},"/app-health/hello/readyz":{"httpGet":{"port":3333}},"/app-health/new/livez":{"httpGet":{"path":"/testLive","port":8008}},"/app-health/world/livez":{"httpGet":{"port":90}}}'
            image: gcr.io/istio-testing/proxyv2:latest
            lifecycle:
              postStart:
                exec:
                  command:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	tg.t.Helper()
    	if tg.ran {
    		tg.t.Fatal("internal testsuite error: call to parallel after run")
    	}
    	for _, e := range tg.env {
    		if strings.HasPrefix(e, "GOROOT=") || strings.HasPrefix(e, "GOPATH=") || strings.HasPrefix(e, "GOBIN=") {
    			val := e[strings.Index(e, "=")+1:]
    			if strings.HasPrefix(val, "testdata") || strings.HasPrefix(val, "./testdata") {
    				tg.t.Fatalf("internal testsuite error: call to parallel with testdata in environment (%s)", e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/AbstractTableReadTest.java

      }
    
      public void testIsEmpty() {
        assertTrue(table.isEmpty());
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertFalse(table.isEmpty());
      }
    
      public void testSize() {
        assertSize(0);
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertSize(3);
      }
    
      public void testEquals() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ListsTest.java

          return String.valueOf(n);
        }
    
        private static final long serialVersionUID = 0;
      }
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(ListsTest.class);
    
        suite.addTest(
            ListTestSuiteBuilder.using(
                    new TestStringListGenerator() {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top