Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,496 for Reports (0.14 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':resolvableConfigurations'
            reportsCompleteAbsenceOfResolvableConfigurations()
        }
    
        def "if only consumable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. src/image/geom.go

    	if r.Max.X < s.Max.X {
    		r.Max.X = s.Max.X
    	}
    	if r.Max.Y < s.Max.Y {
    		r.Max.Y = s.Max.Y
    	}
    	return r
    }
    
    // Empty reports whether the rectangle contains no points.
    func (r Rectangle) Empty() bool {
    	return r.Min.X >= r.Max.X || r.Min.Y >= r.Max.Y
    }
    
    // Eq reports whether r and s contain the same set of points. All empty
    // rectangles are considered equal.
    func (r Rectangle) Eq(s Rectangle) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

            styledTextOutputFactory.create(_) >> outputProbe
    
            task = project.tasks.create("test", TestShowToolchainsTask.class, javaInstallationRegistry, styledTextOutputFactory, toolchainConfiguration)
        }
    
        def "reports toolchains in right order"() {
            given:
            defineJdks(
                jdk("14", "+2", "14"),
                jdk("15-ea", "+2", "15"),
                jdk("9", "+2", "15"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/DeclarativeDslProjectSettingsIntegrationSpec.groovy

            when:
            run(":help")
    
            then:
            def schemaFile = file(".gradle/declarative-schema/settings.dcl.schema")
            schemaFile.isFile() && schemaFile.text != ""
        }
    
        def 'reports #kind errors in settings'() {
            given:
            file("settings.gradle.dcl") << """
                rootProject.name = "test"
                $code
            """
    
            when:
            def failure = fails(":help")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:21:50 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelMapDslIntegrationTest.groovy

                }
            }
        }
    }
    '''
            when:
            succeeds "show"
    
            then:
            outputContains("value = [foo, [test:foo]]")
        }
    
        def "reports nested rule location for failure in initialization action"() {
            buildFile << '''
    model {
        things {
            main(Thing) {
                unknown = 12
            }
        }
    }
    '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // enclosing loop variables from within nested functions.
    //
    // # Analyzer loopclosure
    //
    // loopclosure: check references to loop variables from within nested functions
    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pkg/test/echo/common/scheme/scheme.go

    	TCP       Instance = "tcp"
    	UDP       Instance = "udp"
    	// TLS sends a TLS connection and reports back the properties of the TLS connection
    	// This is similar to `openssl s_client`
    	// Response data is not returned; only information about the TLS handshake.
    	TLS Instance = "tls"
    	// DNS does a DNS query and reports back the results.
    	DNS Instance = "dns"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/mips.go

    		return true
    	}
    	return false
    }
    
    // IsMIPSCMP reports whether the op (as defined by an mips.A* constant) is
    // one of the CMP instructions that require special handling.
    func IsMIPSCMP(op obj.As) bool {
    	switch op {
    	case mips.ACMPEQF, mips.ACMPEQD, mips.ACMPGEF, mips.ACMPGED,
    		mips.ACMPGTF, mips.ACMPGTD:
    		return true
    	}
    	return false
    }
    
    // IsMIPSMUL reports whether the op (as defined by an mips.A* constant) is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

                }
            }
        }
    
        def "does not report project configuration progress events when PROJECT_CONFIGURATION operations are not requested"() {
            when:
            runBuild("tasks", EnumSet.complementOf(EnumSet.of(OperationType.PROJECT_CONFIGURATION)))
    
            then:
            !events.operations.any { it.projectConfiguration }
        }
    
        def "reports plugin configuration results for binary plugins"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/unicode/letter.go

    		return is32(r32, uint32(r))
    	}
    	return false
    }
    
    // IsUpper reports whether the rune is an upper case letter.
    func IsUpper(r rune) bool {
    	// See comment in IsGraphic.
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pLmask == pLu
    	}
    	return isExcludingLatin(Upper, r)
    }
    
    // IsLower reports whether the rune is a lower case letter.
    func IsLower(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top