Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 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. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/graph/CachingDirectedGraphWalkerTest.groovy

            then:
            1 * graph.getNodeValues(1, _, _) >> { args -> args[1] << '1'; args[2] << 1; args[2] << 2 }
            1 * graph.getNodeValues(2, _, _) >> { args -> args[1] << '2'; args[2] << 3; args[2] << 4 }
            1 * graph.getNodeValues(3, _, _) >> { args -> args[1] << '3'; args[2] << 2 }
            1 * graph.getNodeValues(4, _, _) >> { args -> args[1] << '4' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/issue17640.go

    func main() {
    	_ = [19]int{1: f(1), 0: f(0), 2: f(2), 6, 7}
    	_ = [2]int{1: f(4), 0: f(3)}
    	_ = TwoInts{y: f(6), x: f(5)}
    	_ = map[int]int{f(f(9) + 1): f(8), 0: f(7), f(22): -1}
    	if results != "_1_0_2_4_3_6_5_9_10_8_7_22" {
    		fmt.Printf("unexpected: %s\n", results)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 01:16:25 UTC 2016
    - 612 bytes
    - Viewed (0)
  9. src/net/smtp/smtp_test.go

    250-AUTH LOGIN PLAIN
    250 8BITMIME
    530 Authentication required
    252 Send some mail, I'll try my best
    250 User is valid
    235 Accepted
    250 Sender OK
    250 Receiver OK
    354 Go ahead
    250 Data OK
    221 OK
    `
    
    var basicClient = `HELO localhost
    EHLO localhost
    EHLO localhost
    MAIL FROM:<******@****.***> BODY=8BITMIME
    VRFY ******@****.***
    VRFY ******@****.***
    AUTH PLAIN AHVzZXIAcGFzcw==
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

        def "generated wrapper scripts for given version from command-line"() {
            when:
            run "wrapper", "--gradle-version", "2.2.1", "--no-validate-url"
    
            then:
            file("gradle/wrapper/gradle-wrapper.properties").text.contains("distributionUrl=https\\://services.gradle.org/distributions/gradle-2.2.1-bin.zip")
        }
    
        def "generated wrapper files are reproducible"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top