Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,789 for ExampleA (0.3 sec)

  1. src/cmd/go/testdata/mod/example.com_cmd_v1.9.0.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.9.0"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    // this is a bad version
    retract v1.9.0
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    // this is a bad version
    retract v1.9.0
    -- a/a.go --
    package main
    
    func main() {}
    -- b/b.go --
    package main
    
    func main() {}
    -- err/err.go --
    package err
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:45:59 UTC 2020
    - 381 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_downgrade_v2_v2.0.1.txt

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

    example.com/latemigrate/v2 v2.0.0
    written by hand
    
    This repository migrated to modules in v2.0.1 after v2.0.0 was already tagged.
    All versions require rsc.io/quote so we can test downgrades.
    
    v2.0.0 is technically part of example.com/latemigrate as v2.0.0+incompatible.
    Proxies may serve it as part of the version list for example.com/latemigrate/v2.
    'go get' must be able to ignore these versions.
    
    -- .mod --
    module example.com/latemigrate
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:39:37 UTC 2019
    - 475 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.net_ambiguous_v0.2.0.txt

    with the same version.
    
    -- .mod --
    module example.net/ambiguous
    
    go 1.16
    -- .info --
    {"Version": "v0.2.0"}
    -- go.mod --
    module example.net/ambiguous
    
    go 1.16
    -- nested/pkg/README.txt --
    // Package pkg no longer exists in this module at v0.2.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 30 18:07:21 UTC 2020
    - 402 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top