Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for testDir (0.48 sec)

  1. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    import org.junit.Test;
                    import transitive.Divisor;
    
                    public class DivTest {
                        @Test
                        public void testDiv() {
                            Divisor divisor = new Divisor();
                            Assert.assertEquals(2, divisor.div(4, 2));
                        }
                    }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

                    }
                  };
                }
              };
          service.startAsync().awaitRunning();
          inGetNextSchedule.await();
          service.stopAsync();
        }
      }
    
      public void testBig() throws Exception {
        TestAbstractScheduledCustomService service =
            new TestAbstractScheduledCustomService() {
              @Override
              protected Scheduler scheduler() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

                    }
                  };
                }
              };
          service.startAsync().awaitRunning();
          inGetNextSchedule.await();
          service.stopAsync();
        }
      }
    
      public void testBig() throws Exception {
        TestAbstractScheduledCustomService service =
            new TestAbstractScheduledCustomService() {
              @Override
              protected Scheduler scheduler() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                    import org.junit.Test;
                    import transitive.Divisor;
    
                    public class DivTest {
                        @Test
                        public void testDiv() {
                            Divisor divisor = new Divisor();
                            Assert.assertEquals(2, divisor.div(4, 2));
                        }
                    }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    	if err != nil {
    		return nil, err
    	}
    	httpsURL, err := url.Parse(srv.HTTPS.URL)
    	if err != nil {
    		return nil, err
    	}
    	env := []string{
    		pathEnvName() + "=" + testBin + string(filepath.ListSeparator) + os.Getenv(pathEnvName()),
    		homeEnvName() + "=/no-home",
    		"CCACHE_DISABLE=1", // ccache breaks with non-existent HOME
    		"GOARCH=" + runtime.GOARCH,
    		"TESTGO_GOHOSTARCH=" + goHostArch,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            given:
            withBuildCache()
            file('inputFile').text = 'inputFile'
            buildScript """
                task copy(type:Copy) {
                   from 'inputFile'
                   into 'destDir'
                }
            """
            when:
            succeeds("copy")
    
            then:
            def copy = snapshotResults(":copy").inputFileProperties
    
            with(copy['rootSpec$1']) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. cmd/import-boss/main.go

    		// Discard packages which represent the <pkg>.test result.  They don't seem
    		// to hold any interesting source info.
    		if strings.HasSuffix(pkg.PkgPath, ".test") {
    			klog.V(3).Infof("ignoring testbin pkg: %q", pkg.PkgPath)
    			continue
    		}
    
    		// Packages which end in "_test" have tests which use the special "_test"
    		// package suffix.  Packages which have test files must be tests.  Don't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. src/math/big/nat_test.go

    				}
    			}
    		}
    	}
    }
    
    func testSqr(t *testing.T, x nat) {
    	got := make(nat, 2*len(x))
    	want := make(nat, 2*len(x))
    	got = got.sqr(x)
    	want = want.mul(x, x)
    	if got.cmp(want) != 0 {
    		t.Errorf("basicSqr(%v), got %v, want %v", x, got, want)
    	}
    }
    
    func TestSqr(t *testing.T) {
    	for _, a := range prodNN {
    		if a.x != nil {
    			testSqr(t, a.x)
    		}
    		if a.y != nil {
    			testSqr(t, a.y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. src/encoding/base64/base64_test.go

    package base64
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"math"
    	"reflect"
    	"runtime/debug"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    type testpair struct {
    	decoded, encoded string
    }
    
    var pairs = []testpair{
    	// RFC 3548 examples
    	{"\x14\xfb\x9c\x03\xd9\x7e", "FPucA9l+"},
    	{"\x14\xfb\x9c\x03\xd9", "FPucA9k="},
    	{"\x14\xfb\x9c\x03", "FPucAw=="},
    
    	// RFC 4648 examples
    	{"", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
      public void testNullPointers() {
        NullPointerTester tester = new NullPointerTester();
        tester.setDefault(BigInteger.class, ONE);
        tester.setDefault(int.class, 1);
        tester.setDefault(long.class, 1L);
        tester.testAllPublicStaticMethods(BigIntegerMath.class);
      }
    
      @GwtIncompatible // String.format
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top