Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 459 for Reports (0.1 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiInvocationValidationIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsToolingApiInvocationValidationIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
        def "reports cross project access from build script when fetching custom tooling model"() {
            given:
            settingsFile << """
                include('a')
                include('b')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    }
    
    // Run generates and uploads reports
    func (u *uploader) Run() error {
    	if telemetry.DisabledOnPlatform {
    		return nil
    	}
    	todo := u.findWork()
    	ready, err := u.reports(&todo)
    	if err != nil {
    		u.logger.Printf("Error building reports: %v", err)
    		return fmt.Errorf("reports failed: %v", err)
    	}
    	u.logger.Printf("Uploading %d reports", len(ready))
    	for _, f := range ready {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/junit-xml-results/kotlin/build.gradle.kts

    // tag::configure-location-task[]
    tasks.test {
        reports {
            junitXml.outputLocation = layout.buildDirectory.dir("test-junit-xml")
        }
    }
    // end::configure-location-task[]
    
    // tag::configure-location-convention[]
    java.testResultsDir = layout.buildDirectory.dir("junit-xml")
    // end::configure-location-convention[]
    
    // tag::configure-content[]
    tasks.test {
        reports {
            junitXml.apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 802 bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4LoggingOutputCaptureIntegrationTest.groovy

        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:05 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    uploads reports. There will be only one report, named YYYY-MM-DD.json,
    for a given day.
    
    First phase. Look at the localdir (os.UserConfigdir()/go/telemetry/local)
    and find all .count and .json files. Find the count files that are no
    longer active by looking at their metadata.
    
    Second phase. Group the inactive count files by their expiry date, and
    for each date generate the local report and the upload report. (The upload
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		}
    	}
    
    	return false
    }
    
    // hasBasicType reports whether x's type is a types.Basic with the given kind.
    func hasBasicType(info *types.Info, x ast.Expr, kind types.BasicKind) bool {
    	t := info.Types[x].Type
    	if t != nil {
    		t = t.Underlying()
    	}
    	b, ok := t.(*types.Basic)
    	return ok && b.Kind() == kind
    }
    
    // isReflectHeader reports whether t is reflect.SliceHeader or reflect.StringHeader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

            }
        }
    
        def "does not report transform progress events when TRANSFORM operations are not requested"() {
            given:
            withFileSizerTransform()
    
            when:
            runBuild("resolve", EnumSet.complementOf(EnumSet.of(OperationType.TRANSFORM)))
    
            then:
            events.operations.findAll { it.transform }.empty
        }
    
        def "reports dependencies of transform operations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl.isolated
    
    
    import spock.lang.Issue
    
    class IsolatedProjectsAccessFromKotlinDslIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
        def "reports problem when build script uses #block block to apply plugins to another project"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/loong64.go

    	}
    	return false
    }
    
    // IsLoong64CMP reports whether the op (as defined by an loong64.A* constant) is
    // one of the CMP instructions that require special handling.
    func IsLoong64CMP(op obj.As) bool {
    	switch op {
    	case loong64.ACMPEQF, loong64.ACMPEQD, loong64.ACMPGEF, loong64.ACMPGED,
    		loong64.ACMPGTF, loong64.ACMPGTD:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/go/types/typeterm.go

    	}
    	return y
    }
    
    // includes reports whether t ∈ x.
    func (x *term) includes(t Type) bool {
    	// easy cases
    	switch {
    	case x == nil:
    		return false // t ∈ ∅ == false
    	case x.typ == nil:
    		return true // t ∈ 𝓤 == true
    	}
    	// ∅ ⊂ x ⊂ 𝓤
    
    	u := t
    	if x.tilde {
    		u = under(u)
    	}
    	return Identical(x.typ, u)
    }
    
    // subsetOf reports whether x ⊆ y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top