Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for tagtests (0.13 sec)

  1. src/cmd/go/testdata/script/reuse_git.txt

    ! stdout '"(TagPrefix|TagSum|Ref|Hash)"'
    
    # go mod download vcstest/tagtests should invoke git, print origin info
    go mod download -x -json vcs-test.golang.org/git/tagtests.git@latest
    stderr 'git( .*)* fetch'
    cp stdout tagtests.json
    stdout '"Version": "v0.2.2"'
    stdout '"Query": "latest"'
    stdout '"VCS": "git"'
    stdout '"URL": ".*/git/tagtests"'
    ! stdout '"TagPrefix"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

            result.assertTestClassesExecuted('TagATests', 'TagADTests', 'MixedTests')
            result.testClass("TagATests").assertTestCount(4, 0, 0)
            result.testClass("TagATests").assertTestsExecuted('tagAOk1', 'tagAOk2', 'tagAOk3', 'tagAOk4')
            result.testClass("TagADTests").assertTestCount(3, 0, 0)
            result.testClass("TagADTests").assertTestsExecuted('tagAOk1', 'tagAOk2', 'tagDOk4')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

        @Nullable @Optional @Input
        public List<String> getTaglets() {
            return taglets.getValue();
        }
    
        public void setTaglets(@Nullable List<String> taglets) {
            this.taglets.setValue(taglets);
        }
    
        public StandardJavadocDocletOptions taglets(List<String> taglets) {
            this.taglets.getValue().addAll(taglets);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. src/cmd/vet/vet_test.go

    			t.Parallel()
    			t.Logf("-tags=%s", tag)
    			cmd := vetCmd(t, "-tags="+tag, "tagtest")
    			output, err := cmd.CombinedOutput()
    
    			want := fmt.Sprintf("file%d.go", wantFile)
    			dontwant := fmt.Sprintf("file%d.go", 3-wantFile)
    
    			// file1 has testtag and file2 has !testtag.
    			if !bytes.Contains(output, []byte(filepath.Join("tagtest", want))) {
    				t.Errorf("%s: %s was excluded, should be included", tag, want)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

            root.file("src/test/groovy/org/gradle/Class1.groovy") << "package org.gradle; class TestClass1 { @org.junit.Test void ok() { } }"
            withTests()
        }
    
        private void badTests(TestFile root = testDirectory) {
            root.file("src/test/groovy/org/gradle/Class1.groovy") << "package org.gradle; class TestClass1 { @org.junit.Test void broken() { throw new RuntimeException() } }"
            withTests()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/TableCollectionTest.java

            List<Cell<String, Integer, Character>> insertionOrder) {
          return insertionOrder;
        }
      }
    
      private abstract static class MapTests extends MapInterfaceTest<String, Integer> {
    
        MapTests(
            boolean allowsNullValues,
            boolean supportsPut,
            boolean supportsRemove,
            boolean supportsClear,
            boolean supportsIteratorRemove) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

            for (int i=0; i<numberOfComponents; i++) {
                def generatedId = generatedProjectName + i
                def sourceProperties = [:]
                def includes = []
                sourceProperties.hasTests = true
                sourceProperties.generatedId = generatedId
    
                def deps = []
                if (i % 2 == 0) {
                    // even components depend on another projects' component with index 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git_test.go

    		testenv.SkipFlaky(t, 59940)
    	}
    	return NewRepo(ctx, vcsName, remote)
    }
    
    func TestTags(t *testing.T) {
    	t.Parallel()
    
    	type tagsTest struct {
    		repo   string
    		prefix string
    		tags   []Tag
    	}
    
    	runTest := func(tt tagsTest) func(*testing.T) {
    		return func(t *testing.T) {
    			t.Parallel()
    			ctx := testContext(t)
    
    			r, err := testRepo(ctx, t, tt.repo)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. src/go/constant/value_test.go

    	`0x12.34P-10 = 0x1234/0x40000`,
    
    	`0Xdead_cafep+1 = 0xdeadcafep+1`,
    	`0x_1234P-10 = 0x1234p-10`,
    
    	`0X_dead_cafe.p-10 = 0xdeadcafe.p-10`,
    	`0x12_34.P1_2_3 = 0x1234.p123`,
    }
    
    var imagTests = []string{
    	`1_234i = 1234i`,
    	`1_234_567i = 1234567i`,
    
    	`0.i = 0i`,
    	`123.i = 123i`,
    	`0123.i = 123i`,
    
    	`0.e+1i = 0i`,
    	`123.E-1_0i = 123e-10i`,
    	`01_23.e123i = 123e123i`,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    //     least one top-level function, type, variable, or constant declaration
    //     other than the example function.
    func Examples(testFiles ...*ast.File) []*Example {
    	var list []*Example
    	for _, file := range testFiles {
    		hasTests := false // file contains tests, fuzz test, or benchmarks
    		numDecl := 0      // number of non-import declarations in the file
    		var flist []*Example
    		for _, decl := range file.Decls {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top