Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,775 for example1 (0.36 sec)

  1. src/cmd/go/testdata/mod/example.com_badchain_c_v1.1.0.txt

    example.com/badchain/c v1.1.0
    
    -- .mod --
    module badchain.example.com/c
    -- .info --
    {"Version":"v1.1.0"}
    -- c.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 27 20:36:50 UTC 2019
    - 126 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_dotname_v1.0.0.txt

    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/dotname
    
    go 1.16
    -- go.mod --
    module example.com/dotname
    
    go 1.16
    -- .dot/dot.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 20:52:20 UTC 2021
    - 159 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_split_subpkg_v1.1.0.txt

    Written by hand.
    Test case for getting a package that has been moved to a different module.
    
    -- .mod --
    module example.com/split/subpkg
    
    require example.com/split v1.1.0
    -- .info --
    {"Version": "v1.1.0"}
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 230 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_nest_sub_v1.0.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is nested below the top-level module.
    
    -- .mod --
    module example.com/nest/sub
    -- .info --
    {"Version": "v1.0.0"}
    -- go.mod --
    module example.com/nest/sub
    -- y/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 261 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_usemissingpre_v1.0.0.txt

    This module requires example.com/missingpkg at a prerelease version, which
    is newer than @latest.
    
    -- .mod --
    module example.com/usemissingpre
    
    require example.com/missingpkg v1.0.1-beta
    -- .info --
    {"Version":"v1.0.0"}
    -- use.go --
    package use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:25:56 UTC 2019
    - 280 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.commons.gradle

    plugins {
        id('java')
        id('com.example.jacoco')
    }
    
    group = 'com.example.myproduct'
    
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(8)
        }
    }
    
    dependencies {
        implementation(platform('com.example.platform:product-platform'))
    
        testImplementation(platform('com.example.platform:test-platform'))
        testImplementation('org.junit.jupiter:junit-jupiter')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 505 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.net_pkgadded_v1.1.0.txt

    Written by hand.
    Test module with a root package added in v1.1.0
    and a subpackage added in v1.2.0.
    
    -- .mod --
    module example.net/pkgadded
    
    go 1.16
    -- .info --
    {"Version":"v1.1.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- README.txt --
    We will add the package example.net/pkgadded/subpkg in v1.2.0.
    -- pkgadded.go --
    // Package pkgadded was added in v1.1.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 387 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_downgrade_v2.0.0.txt

    example.com/downgrade v2.0.0
    written by hand
    
    -- .mod --
    module example.com/downgrade
    
    require rsc.io/quote v1.5.2
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 148 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_version_v1.0.0.txt

    example.com/version v1.0.0
    written by hand
    
    -- .mod --
    module example.com/version
    -- .info --
    {"Version":"v1.0.0"}
    -- version.go --
    package version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 29 18:57:53 UTC 2018
    - 168 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_version_v1.0.1.txt

    example.com/version v1.0.1
    written by hand
    
    -- .mod --
    module example.com/version
    -- .info --
    {"Version":"v1.0.1"}
    -- version.go --
    package version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 29 18:57:53 UTC 2018
    - 168 bytes
    - Viewed (0)
Back to top