Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 221 (0.02 sec)

  1. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.22.1.linux-amd64.txt

    golang.org/toolchain v0.0.1-go1.22.1.linux-amd64
    written by hand
    -- .info --
    {"Version":"v0.0.1-go1.22.1.linux-amd64"}
    -- .mod --
    golang.org/toolchain
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 19:11:44 UTC 2023
    - 185 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_toolchain.txt

    env TESTGO_VERSION_SWITCH=switch
    
    go get toolchain@go1.22.1
    stderr '^go: added toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    grep 'toolchain go1.22.1' go.mod
    
    go get toolchain@none
    stderr '^go: removed toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    ! grep toolchain go.mod
    
    go get toolchain@go1.22.1
    stderr '^go: added toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 22:42:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/math/log1p.go

    	if absx < Sqrt2M1 { //  |x| < Sqrt(2)-1
    		if absx < Small { // |x| < 2**-29
    			if absx < Tiny { // |x| < 2**-54
    				return x
    			}
    			return x - x*x*0.5
    		}
    		if x > Sqrt2HalfM1 { // Sqrt(2)/2-1 < x
    			// (Sqrt(2)/2-1) < x < (Sqrt(2)-1)
    			k = 0
    			f = x
    			iu = 1
    		}
    	}
    	var c float64
    	if k != 0 {
    		var u float64
    		if absx < Two53 { // 1<<53
    			u = 1.0 + x
    			iu = Float64bits(u)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/rtinfo/RuntimeInformation.java

        /**
         * Checks whether the current Maven runtime matches the specified version range. A version range can either use the
         * usual mathematical syntax "[2.0.10,2.1.0),[3.0,)" or use a single version "2.2.1". The latter is a short form for
         * "[2.2.1,)", i.e. denotes the minimum version required.
         *
         * @param versionRange The version range to match the current Maven runtime against, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

        Map<String, Object> getPluginComponents(Plugin plugin, String role)
                throws ComponentLookupException, PluginManagerException;
    
        /**
         * @since 2.2.1
         */
        PluginDescriptor loadPluginDescriptor(Plugin plugin, MavenProject project, MavenSession session)
                throws ArtifactResolutionException, PluginVersionResolutionException, ArtifactNotFoundException,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/spring-boot-web-application/HELP.md

    ### Reference Documentation
    For further reference, please consider the following sections:
    
    * [Official Gradle documentation](https://docs.gradle.org)
    * [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.2.1.RELEASE/gradle-plugin/reference/html/)
    
    ### Additional Links
    These additional references should also help you:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 469 bytes
    - Viewed (0)
  7. src/math/atanh.go

    // Method :
    //	1. Reduce x to positive by atanh(-x) = -atanh(x)
    //	2. For x>=0.5
    //	            1              2x                          x
    //	atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
    //	            2             1 - x                      1 - x
    //
    //	For x<0.5
    //	atanh(x) = 0.5*log1p(2x+2x*x/(1-x))
    //
    // Special cases:
    //	atanh(x) is NaN if |x| > 1 with signal;
    //	atanh(NaN) is that NaN with no signal;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/cannonicalize_ops_outside_compilation.mlir

        %2:3 = "tf.UnpackHyp"(%arg1) {_tpu_replicate = "cluster_Fn", _xla_outside_compilation = "0", device = "", max_seq_length = 16 : i64} : (tensor<*x!tf_type.string>) -> (tensor<*xi32>, tensor<*xi32>, tensor<*xf32>)
        %3 = "tf.Reshape"(%2#2, %1) {_tpu_replicate = "cluster_Fn", _xla_outside_compilation = "0", device = ""} : (tensor<*xf32>, tensor<*xi32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/versions/ReleasedVersionDistributionsTest.groovy

            where:
            givenVersion     | previousVersion | description
            version('2.5')   | version('2.4')  | 'existing version with major and minor attribute'
            version('2.2.1') | version('2.2')  | 'existing version with major, minor and patch attribute'
            version('0.8')   | null            | 'first released version'
            version('0.1')   | null            | 'version that does not exist'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/test-requirements.txt

    six==1.16.0 \
        --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \
        --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254
        # via requests-mock
    urllib3==2.2.1 \
        --hash=sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d \
        --hash=sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top