Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,182 for Reports (0.16 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameJUnit4CrossVersionSpec.groovy

                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies {
                    testImplementation("junit:junit:4.13.2")
                }
            }
            """
        }
    
        def "reports display names of class and method"() {
            file("src/test/java/org/example/SimpleTests.java") << """package org.example;
    
    import org.junit.Test;
    
    public class SimpleTests {
    
        @Test
        public void test() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/net/netip/netip.go

    		}
    		if za > zb {
    			return 1
    		}
    	}
    	return 0
    }
    
    // Less reports whether ip sorts before ip2.
    // IP addresses sort first by length, then their address.
    // IPv6 addresses with zones sort just after the same address without a zone.
    func (ip Addr) Less(ip2 Addr) bool { return ip.Compare(ip2) == -1 }
    
    // Is4 reports whether ip is an IPv4 address.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/version.go

    // If v is not a valid Go version, the result is the empty string.
    func asGoVersion(v string) goVersion {
    	return goVersion(version.Lang(v))
    }
    
    // isValid reports whether v is a valid Go version.
    func (v goVersion) isValid() bool {
    	return v != ""
    }
    
    // cmp returns -1, 0, or +1 depending on whether x < y, x == y, or x > y,
    // interpreted as Go versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/go/ast/filter.go

    					// - 2 imports exist but only one has a comment
    					// - 2 imports exist and they both have (possibly
    					//   different) comments
    					imports = append(imports, imp)
    					seen[path] = true
    				}
    			}
    		}
    	} else {
    		// Iterate over filenames for deterministic order.
    		for _, filename := range filenames {
    			f := pkg.Files[filename]
    			imports = append(imports, f.Imports...)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/build.gradle.kts

                tasks.register<JacocoReport>("${testTaskName}Coverage") {
                    dependsOn(testTaskName)
                    group = "Reporting"
                    description = "Generate Jacoco coverage reports on the ${sourceName.capitalize()} build."
                    classDirectories.from(
                        fileTree("${project.buildDir}/intermediates/classes/${sourcePath}") {
                            exclude(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    		loc := t.locale.Tag()
    		tag, _ = tag.SetTypeForKey("rg", strings.ToLower(loc.RegionID.String())+"zzzz")
    	}
    	return tag
    }
    
    // IsCompact reports whether this tag is fully defined in terms of ID.
    func (t *Tag) IsCompact() bool {
    	return t.full == nil
    }
    
    // MayHaveVariants reports whether a tag may have variants. If it returns false
    // it is guaranteed the tag does not have variants.
    func (t Tag) MayHaveVariants() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

         * }
         *
         * test {
         *     useTestNG() {
         *         // report generation delegated to TestNG library:
         *         useDefaultListeners = true
         *     }
         *
         *     // turn off Gradle's HTML report to avoid replacing the
         *     // reports generated by TestNG library:
         *     reports.html.required = false
         * }
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/internal/goroot/gccgo.go

    // license that can be found in the LICENSE file.
    
    //go:build gccgo
    
    package goroot
    
    import (
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    // IsStandardPackage reports whether path is a standard package,
    // given goroot and compiler.
    func IsStandardPackage(goroot, compiler, path string) bool {
    	switch compiler {
    	case "gc":
    		dir := filepath.Join(goroot, "src", path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 758 bytes
    - Viewed (0)
  9. src/go/types/version.go

    // If v is not a valid Go version, the result is the empty string.
    func asGoVersion(v string) goVersion {
    	return goVersion(version.Lang(v))
    }
    
    // isValid reports whether v is a valid Go version.
    func (v goVersion) isValid() bool {
    	return v != ""
    }
    
    // cmp returns -1, 0, or +1 depending on whether x < y, x == y, or x > y,
    // interpreted as Go versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

    Test suite '$testSuiteName' -> afterTest out
    Test suite '$testSuiteName' -> afterTest err
    """
        }
    
        def "can configure logging output inclusion in xml reports"() {
            given:
            buildFile.text = buildFile.text.replace("reports.junitXml.outputPerTestCase = true", """reports.junitXml {
                outputPerTestCase = true
                $includeSystemOutConf
                $includeSystemErrConf
            }""".stripIndent())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top