Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 724 for Reports (0.29 sec)

  1. 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)
  2. src/sort/sort.go

    func Strings(x []string) { stringsImpl(x) }
    
    // IntsAreSorted reports whether the slice x is sorted in increasing order.
    //
    // Note: as of Go 1.22, this function simply calls [slices.IsSorted].
    func IntsAreSorted(x []int) bool { return intsAreSortedImpl(x) }
    
    // Float64sAreSorted reports whether the slice x is sorted in increasing order,
    // with not-a-number (NaN) values before any other values.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. 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)
  4. src/go/doc/comment/parse.go

    	// LookupPackage is still called for such names,
    	// in order to permit references to imports of other packages
    	// with the same package names.
    	//
    	// Setting LookupPackage to nil is equivalent to setting it to
    	// a function that always returns "", false.
    	LookupPackage func(name string) (importPath string, ok bool)
    
    	// LookupSym reports whether a symbol name or method name
    	// exists in the current package.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

            receivedInput == "Data"
        }
    
        def "reports cache miss on 404"() {
            server.expectGetMissing("/cache/${key.hashCode}")
    
            when:
            def fromCache = cache.load(key) { input ->
                throw new RuntimeException("That should never be called")
            }
    
            then:
            !fromCache
        }
    
        def "load reports recoverable error on http code #httpCode"(int httpCode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/extensions.kt

            build/report-* => $hiddenArtifactDestination
            build/tmp/teŝt files/** => $hiddenArtifactDestination/teŝt-files
            build/errorLogs/** => $hiddenArtifactDestination/errorLogs
            subprojects/internal-build-reports/build/reports/incubation/all-incubating.html => incubation-reports
            build/reports/dependency-verification/** => dependency-verification-reports
        """.trimIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

        Sample sample = new Sample(temporaryFolder)
    
        @UsesSample("testing/testReport/groovy")
        def "can generate report for subprojects"() {
            given:
            super.sample(sample)
    
            when:
            run "testReport"
    
            then:
            def htmlReport = new HtmlTestExecutionResult(sample.dir, "build/reports/allTests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  8. src/internal/bisect/bisect.go

    	result bool
    }
    
    // MarkerOnly reports whether it is okay to print only the marker for
    // a given change, omitting the identifying information.
    // MarkerOnly returns true when bisect is using the printed reports
    // only for an intermediate search step, not for showing to users.
    func (m *Matcher) MarkerOnly() bool {
    	return !m.verbose
    }
    
    // ShouldEnable reports whether the change with the given id should be enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. 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)
  10. src/net/http/response.go

    	_, ok := r.Body.(io.Writer)
    	return ok
    }
    
    // isProtocolSwitch reports whether the response code and header
    // indicate a successful protocol upgrade response.
    func (r *Response) isProtocolSwitch() bool {
    	return isProtocolSwitchResponse(r.StatusCode, r.Header)
    }
    
    // isProtocolSwitchResponse reports whether the response code and
    // response header indicate a successful protocol upgrade response.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top