Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for below (0.05 sec)

  1. src/math/big/float.go

    		// 0 < x < +Inf
    		if x.exp <= 0 {
    			// 0 < x < 1
    			return 0, Below
    		}
    		// 1 <= x < Inf
    		if x.exp <= 64 {
    			// u = trunc(x) fits into a uint64
    			u := msb64(x.mant) >> (64 - uint32(x.exp))
    			if x.MinPrec() <= 64 {
    				return u, Exact
    			}
    			return u, Below // x truncated
    		}
    		// x too large
    		return math.MaxUint64, Below
    
    	case zero:
    		return 0, Exact
    
    	case inf:
    		if x.neg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[compatibility]]
    = Compatibility Matrix
    
    The sections below describe Gradle's compatibility with several integrations.
    Versions not listed here may or may not work.
    
    == Java
    A Java version between 8 and 22 is required to execute Gradle.
    Java 23 and later versions are not yet supported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/build.gradle.kts

        // TODO Figure out why and fix it - Move the two deps below to implementation and api and run ProjectTheExtensionCrossVersionSpec
        compileOnly(libs.eclipseSisuPlexus) {
            exclude(module = "cdi-api") // To respect the Maven exclusion
        }
        compileOnly(libs.maven3Compat)
    
        // 3 dependencies below are recommended as implementation but doing so adds them to the distribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. buildscripts/checkdeps.sh

    	case "${KNAME}" in
    	SunOS)
    		ARCH=$(isainfo -k)
    		;;
    	esac
    }
    
    ## FIXME:
    ## In OSX, 'readlink -f' option does not exist, hence
    ## we have our own readlink -f behavior here.
    ## Once OSX has the option, below function is good enough.
    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    	TARGET_FILE=$(basename $TARGET_FILE)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/notes-template.md

    The Gradle team is excited to announce Gradle @version@.
    
    This release features [1](), [2](), ... [n](), and more.
    
    <!-- 
    Include only their name, impactful features should be called out separately below.
     [Some person](https://github.com/some-person)
    
     THIS LIST SHOULD BE ALPHABETIZED BY [PERSON NAME] - the docs:updateContributorsInReleaseNotes task will enforce this ordering, which is case-insensitive.
    -->
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/release/notes.md

    The Gradle team is excited to announce Gradle @version@.
    
    This release features [1](), [2](), ... [n](), and more.
    
    <!-- 
    Include only their name, impactful features should be called out separately below.
     [Some person](https://github.com/some-person)
    
     THIS LIST SHOULD BE ALPHABETIZED BY [PERSON NAME] - the docs:updateContributorsInReleaseNotes task will enforce this ordering, which is case-insensitive.
    -->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testshared/testdata/depBase/dep.go

    var V int = 1
    
    var HasMask []string = []string{"hi"}
    
    type HasProg struct {
    	array [1024]*byte
    }
    
    type Dep struct {
    	X int
    }
    
    func (d *Dep) Method() int {
    	// This code below causes various go.itab.* symbols to be generated in
    	// the shared library. Similar code in ../exe/exe.go results in
    	// exercising https://golang.org/issues/17594
    	reflect.TypeOf(os.Stdout).Elem()
    	return 10
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

        startScriptsDir = layout.buildDirectory.dir("startScripts")
        launcherJar.from(tasks.jar)
        agentJars.from(resolveAgentsClasspath)
        // The trick below is to use the templates from the current code instead of the wrapper. It does not cover the case where the generation logic is updated though.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

    // Ignore test on non-Windows platforms on CI since Playwright has unfulfilled package
    // dependencies on Linux and times out downloading the driver on MacOS.
    //
    // Comment out the @Requires annotation below to run the test locally on non Windows platforms.
    @Requires(UnitTestPreconditions.Windows)
    @Flaky(because = "https://github.com/gradle/gradle-private/issues/3820")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         */
        public val name: Name
            get() = withValidityAssertion {
                // The case where PSI is null is when calling `invoke()` on a variable with functional type, e.g. `x(1)` below:
                //
                //   fun foo(x: (item: Int) -> Unit) { x(1) }
                //   fun bar(x: Function1<@ParameterName("item") Int, Unit>) { x(1) }
                val nameCanBeDeclaredInAnnotation = symbol.psi == null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top