Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,182 for Reports (0.13 sec)

  1. .teamcity/src/main/kotlin/promotion/BasePublishGradleDistribution.kt

            **/build/distributions/*.zip => promote-build-distributions
            **/build/website-checkout/data/releases.xml
            **/build/git-checkout/build/reports/integTest/** => distribution-tests
            **/smoke-tests/build/reports/tests/** => post-smoke-tests
            **/build/version-info.properties => version-info.properties
            """.trimIndent()
    
            dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 17:05:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemReporter.java

        /**
         * Notifies the build user of whatever problems have been collected. May report problems to the console, or generate a report
         * or fail with one or more exceptions, or all of the above.
         *
         * @param reportDir The base directory that reports can be generated into.
         * @param validationFailures Collects any validation failures.
         */
        void report(File reportDir, ProblemConsumer validationFailures);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typeset.go

    }
    
    // IsEmpty reports whether type set s is the empty set.
    func (s *_TypeSet) IsEmpty() bool { return s.terms.isEmpty() }
    
    // IsAll reports whether type set s is the set of all types (corresponding to the empty interface).
    func (s *_TypeSet) IsAll() bool { return s.IsMethodSet() && len(s.methods) == 0 }
    
    // IsMethodSet reports whether the interface t is fully described by its method set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                }
    
                test {
                    useJUnitPlatform()
                }
            }
            """
        }
    
        @TargetGradleVersion(">=8.8")
        def "reports display names of class and method"() {
            file("src/test/java/org/example/SimpleTests.java") << """package org.example;
    
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // isUint64PowerOfTwo reports whether uint64(n) is a power of 2.
    func isUint64PowerOfTwo(in int64) bool {
    	n := uint64(in)
    	return n > 0 && n&(n-1) == 0
    }
    
    // isUint32PowerOfTwo reports whether uint32(n) is a power of 2.
    func isUint32PowerOfTwo(in int64) bool {
    	n := uint64(uint32(in))
    	return n > 0 && n&(n-1) == 0
    }
    
    // is32Bit reports whether n can be represented as a signed 32 bit integer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/DefaultJavaPluginConventionTest.groovy

            expect:
            convention.testReportDir == new File(project.buildDir, 'reports/tests')
    
            when:
            project.reporting.baseDir = 'other-reports-dir'
            convention.testReportDirName = 'other-test-dir'
    
            then:
            convention.testReportDir == new File(project.projectDir, 'other-reports-dir/other-test-dir')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/go/types/typeset.go

    }
    
    // IsEmpty reports whether type set s is the empty set.
    func (s *_TypeSet) IsEmpty() bool { return s.terms.isEmpty() }
    
    // IsAll reports whether type set s is the set of all types (corresponding to the empty interface).
    func (s *_TypeSet) IsAll() bool { return s.IsMethodSet() && len(s.methods) == 0 }
    
    // IsMethodSet reports whether the interface t is fully described by its method set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/os/path_plan9.go

    // license that can be found in the LICENSE file.
    
    package os
    
    const (
    	PathSeparator     = '/'    // OS-specific path separator
    	PathListSeparator = '\000' // OS-specific path list separator
    )
    
    // IsPathSeparator reports whether c is a directory separator character.
    func IsPathSeparator(c uint8) bool {
    	return PathSeparator == c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 443 bytes
    - Viewed (0)
  9. src/cmp/cmp.go

    // An operator such as == or < will always report false when
    // comparing a NaN value with any other value, NaN or not.
    // See the [Compare] function for a consistent way to compare NaN values.
    type Ordered interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // Less reports whether x is less than y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameSpockCrossVersionSpec.groovy

                    testImplementation "org.spockframework:spock-core:2.1-groovy-3.0"
                }
    
                test {
                    useJUnitPlatform()
                }
            }
            """
        }
    
        def "reports display names of class and method"() {
            file("src/test/groovy/org/example/SimpleTests.groovy") << """package org.example
    
    import spock.lang.Specification
    
    class SimpleTests extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top