Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for Reports (0.49 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In the above example, do you get a `toArchive/reports` directory, or does everything in `reports` go straight into `toArchive`?
    The answer is the latter. If a directory is part of the `from()` path, then it _won't_ appear in the destination.
    
    So how do you ensure that `reports` itself is copied across, but not any other directory in `${layout.buildDirectory}`?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			}
    		}
    	}
    	return prefix
    }
    
    // anonymousStructTypedef reports whether dt is a C typedef for an anonymous
    // struct.
    func (c *typeConv) anonymousStructTypedef(dt *dwarf.TypedefType) bool {
    	st, ok := dt.Type.(*dwarf.StructType)
    	return ok && st.StructName == ""
    }
    
    // badPointerTypedef reports whether dt is a C typedef that should not be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/testing/testing.go

    // as "changed by a cmd/link -X option".
    var testBinary = "0"
    
    // Testing reports whether the current code is being run in a test.
    // This will report true in programs created by "go test",
    // false in programs created by "go build".
    func Testing() bool {
    	return testBinary == "1"
    }
    
    // CoverMode reports what the test coverage mode is set to. The
    // values are "set", "count", or "atomic". The return value will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top