Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for Reports (0.26 sec)

  1. 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)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            then:
            testDirectory.file('out/reports/configuration-cache').isDirectory()
            resolveConfigurationCacheReportDirectory(testDirectory.file('out'), output) == null
        }
    
        def "link to report is shown with --info if there are no-CC problems"() {
            def reportDir = testDirectory.file('out/reports/configuration-cache')
            file("build.gradle") << """
                buildDir = 'out'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    }
    
    // IsPtr reports whether t is a regular Go pointer type.
    // This does not include unsafe.Pointer.
    func (t *Type) IsPtr() bool {
    	return t.kind == TPTR
    }
    
    // IsPtrElem reports whether t is the element of a pointer (to t).
    func (t *Type) IsPtrElem() bool {
    	return t.cache.ptr != nil
    }
    
    // IsUnsafePtr reports whether t is an unsafe pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                rootProject.name = "myLib"
            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable 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
    - 50K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/issue4510.go",  // types2 reports different (but ok) line numbers
    	"fixedbugs/issue7525b.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525c.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525d.go", // types2 reports init cycle error on different line - ok otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	SplitPathList func(list string) []string
    
    	// IsAbsPath reports whether path is an absolute path.
    	// If IsAbsPath is nil, Import uses filepath.IsAbs.
    	IsAbsPath func(path string) bool
    
    	// IsDir reports whether the path names a directory.
    	// If IsDir is nil, Import calls os.Stat and uses the result's IsDir method.
    	IsDir func(path string) bool
    
    	// HasSubdir reports whether dir is lexically a subdirectory of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	String() string
    
    	// Kind returns the specific kind of this type.
    	Kind() Kind
    
    	// Implements reports whether the type implements the interface type u.
    	Implements(u Type) bool
    
    	// AssignableTo reports whether a value of the type is assignable to type u.
    	AssignableTo(u Type) bool
    
    	// ConvertibleTo reports whether a value of the type is convertible to type u.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.set((Provider) null)
    
            then:
            def e = thrown(IllegalArgumentException)
            e.message == 'Cannot set the value of a property using a null provider.'
        }
    
        def "reports failure to query value from provider and property has display name"() {
            given:
            def property = propertyWithNoValue()
            property.set(brokenSupplier())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.plugins.quality.Checkstyle.reports(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Checkstyle.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    	if len(cs.pkgMods) > 0 {
    		return true, cs.pkgMods[0]
    	}
    
    	return false, cs.mod
    }
    
    // checkPackageProblems reloads packages for the given patterns and reports
    // missing and ambiguous package errors. It also reports retractions and
    // deprecations for resolved modules and modules needed to build named packages.
    // It also adds a sum for each updated module in the build list if we had one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top