Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 818 for Reports (0.15 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    	enable  bool   // when true, list is for “enable and report” (when false, “disable and report”)
    	list    []cond // conditions; later ones win over earlier ones
    }
    
    // A cond is a single condition in the matcher.
    // Given an input id, if id&mask == bits, return the result.
    type cond struct {
    	mask   uint64
    	bits   uint64
    	result bool
    }
    
    // Verbose reports whether the reports will be shown to users
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

        @Shared
        private def disallowedServiceTypesAtExecution = [Project, ProjectInternal, Gradle, GradleInternal]
    
        def "reports in task when injected service of #serviceType accessed at execution time"() {
            given:
            buildFile << """
                abstract class Foo extends DefaultTask {
    
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. src/go/build/constraint/expr.go

    type Expr interface {
    	// String returns the string form of the expression,
    	// using the boolean syntax used in //go:build lines.
    	String() string
    
    	// Eval reports whether the expression evaluates to true.
    	// It calls ok(tag) as needed to find out whether a given build tag
    	// is satisfied by the current build configuration.
    	Eval(ok func(tag string) bool) bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    [source]
    ----
    tasks.register<Zip>("zip-reports") {
        from 'Reports/'
        include '*'
        archiveName 'Reports.zip'
        destinationDir(file('/dir'))
    }
    ----
    
    You may have seen usage of the link:{javadocPath}/org/gradle/api/tasks/TaskContainer.html[`TaskContainer.create(java.lang.String)`] method *which should be avoided*:
    
    [source]
    ----
    tasks.create<Zip>("zip-reports") {
        from 'Reports/'
        include '*'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/object.go

    }
    
    // Anonymous reports whether the variable is an embedded field.
    // Same as Embedded; only present for backward-compatibility.
    func (obj *Var) Anonymous() bool { return obj.embedded }
    
    // Embedded reports whether the variable is an embedded field.
    func (obj *Var) Embedded() bool { return obj.embedded }
    
    // IsField reports whether the variable is a struct field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

            '''
    
            when:
            run 'show'
    
            then:
            output.contains("thingA = thing a from rule")
            output.contains("thingA.address = modified address")
        }
    
        def "reports exception thrown by @Rules method"() {
            buildFile << '''
                class MyPlugin extends RuleSource {
                    @Model
                    void strings(List<String> s) {}
    
                    @Rules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	end = parseExtension(&scan)
    	if end != len(s) {
    		return "", ErrSyntax
    	}
    	return string(scan.b), nil
    }
    
    // HasVariants reports whether t has variants.
    func (t Tag) HasVariants() bool {
    	return uint16(t.pVariant) < t.pExt
    }
    
    // HasExtensions reports whether t has extensions.
    func (t Tag) HasExtensions() bool {
    	return int(t.pExt) < len(t.str)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/arm64.go

    		return opd
    	}
    	return arm64.SPOP_END
    }
    
    // IsARM64ADR reports whether the op (as defined by an arm64.A* constant) is
    // one of the comparison instructions that require special handling.
    func IsARM64ADR(op obj.As) bool {
    	switch op {
    	case arm64.AADR, arm64.AADRP:
    		return true
    	}
    	return false
    }
    
    // IsARM64CMP reports whether the op (as defined by an arm64.A* constant) is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

                    }
                }
            """
    
            when:
            succeeds("jacocoTestCoverageVerification")
    
            then:
            def report = new JacocoReportXmlFixture(file("build/reports/jacoco/test/jacocoTestReport.xml"))
            report.assertHasClassCoverage("test.gradle.MyPlugin")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/go/types/object.go

    }
    
    // Anonymous reports whether the variable is an embedded field.
    // Same as Embedded; only present for backward-compatibility.
    func (obj *Var) Anonymous() bool { return obj.embedded }
    
    // Embedded reports whether the variable is an embedded field.
    func (obj *Var) Embedded() bool { return obj.embedded }
    
    // IsField reports whether the variable is a struct field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top