Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 871 for Reports (0.18 sec)

  1. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    }
    
    // HeaderValuesContainsToken reports whether any string in values
    // contains the provided token, ASCII case-insensitively.
    func HeaderValuesContainsToken(values []string, token string) bool {
    	for _, v := range values {
    		if headerValueContainsToken(v, token) {
    			return true
    		}
    	}
    	return false
    }
    
    // isOWS reports whether b is an optional whitespace byte, as defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/lex.go

    	// Text returns the original string representation of the token.
    	Text() string
    	// File reports the source file name of the token.
    	File() string
    	// Base reports the position base of the token.
    	Base() *src.PosBase
    	// SetBase sets the position base.
    	SetBase(*src.PosBase)
    	// Line reports the source line number of the token.
    	Line() int
    	// Col reports the source column number of the token.
    	Col() int
    	// Close does any teardown required.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskExecutionResultCrossVersionSpec.groovy

        def events = ProgressEvents.create()
    
        def "reports no execution reasons for skipped tasks"() {
            given:
            buildFile << """
                task disabledTask {
                    enabled = false
                }
            """
    
            when:
            runBuild('disabledTask')
    
            then:
            taskSkippedResult(':disabledTask')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsersTest.groovy

            then:
            thrown(UnsupportedNotationException)
        }
    
        def "reports missing keys for map notation"() {
            when:
            multiParser("").parseNotation([name: "bar", version: "1.0"])
    
            then:
            thrown(InvalidUserDataException)
        }
    
        def "reports wrong keys for map notation"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/JvmInstallationProblemReporterTest.groovy

        def "only reports problems once"() {
            when:
            problemReporter.reportProblemIfNeeded(logger, InstallationLocation.userDefined(location, "source"), "message")
            problemReporter.reportProblemIfNeeded(logger, InstallationLocation.userDefined(location, "source"), "message")
            then:
            1 * logger.log(LogLevel.WARN, "message")
        }
    
        def "reports different problems"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. Jenkinsfile.s390x

                            } finally {
                                // in ITs test we need only reports from test itself
                                // test projects can contain reports with tested failed builds
                                junit testResults: '**/core-it-suite/target/surefire-reports/*.xml,**/core-it-support/**/target/surefire-reports/*.xml', allowEmptyResults: true
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

    import org.gradle.util.GradleVersion
    
    @TargetGradleVersion('>=5.1')
    class TaskOriginCrossVersionSpec extends ToolingApiSpecification {
    
        def events = ProgressEvents.create()
    
        def "reports task origin for script plugins"() {
            given:
            file("script.gradle") << """
                task b { dependsOn('a') }
            """
            buildFile << """
                apply from: 'script.gradle'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

                    ivy {
                        url "${ivyHttpRepo.uri}"
                    }
                }
                configurations { compile }
            """
            failedResolve.prepare("compile")
        }
    
        def "reports Ivy descriptor that cannot be parsed"() {
            given:
            buildFile << """
    dependencies {
        compile 'group:projectA:1.2'
    }
    """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typeparams/termlist.go

    	}
    	return buf.String()
    }
    
    // isEmpty reports whether the termlist xl represents the empty set of types.
    func (xl termlist) isEmpty() bool {
    	// If there's a non-nil term, the entire list is not empty.
    	// If the termlist is in normal form, this requires at most
    	// one iteration.
    	for _, x := range xl {
    		if x != nil {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    [[jacoco_report_aggregation_plugin]]
    = The JaCoCo Report Aggregation Plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top