Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 5,776 for example2 (0.22 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/android-application/src/main/groovy/com.example.android-application.gradle

        }
    }
    
    dependencies {
        implementation(platform('com.example.platform:product-platform'))
        testImplementation(platform('com.example.platform:test-platform'))
    
        implementation('org.jetbrains.kotlin:kotlin-stdlib')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 674 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/patch.example.com_depofdirectpatch_v1.0.1.txt

    patch.example.com/depofdirectpatch v1.0.1
    written by hand
    
    -- .mod --
    module patch.example.com/depofdirectpatch
    -- .info --
    {"Version":"v1.0.1"}
    -- go.mod --
    module patch.example.com/depofdirectpatch
    -- depofdirectpatch.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 251 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/patch.example.com_indirect_v1.0.1.txt

    patch.example.com/indirect v1.0.1
    written by hand
    
    -- .mod --
    module patch.example.com/indirect
    -- .info --
    {"Version":"v1.0.1"}
    -- go.mod --
    module patch.example.com/indirect
    -- direct.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 209 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/patch.example.com_indirect_v1.0.0.txt

    patch.example.com/indirect v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/indirect
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/indirect
    -- direct.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 209 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_join_v1.1.0.txt

    Written by hand.
    Test case for package moved into a parent module.
    
    -- .mod --
    module example.com/join
    -- .info --
    {"Version": "v1.1.0"}
    -- subpkg/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 170 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0-exclude.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.0.0-exclude"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    exclude rsc.io/quote v1.5.2
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    exclude rsc.io/quote v1.5.2
    -- 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
    - 365 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/patch.example.com_depofdirectpatch_v1.0.0.txt

    patch.example.com/depofdirectpatch v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/depofdirectpatch
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/depofdirectpatch
    -- depofdirectpatch.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 251 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/commons/src/main/kotlin/com.example.commons.gradle.kts

    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
    - 496 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_rename_v1.0.0-bad.txt

    Module example.com/retract/rename is renamed in a later version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.0.0-bad"}
    -- .mod --
    module example.com/retract/rename
    
    go 1.16
    -- go.mod --
    module example.com/retract/rename
    
    go 1.16
    -- rename.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 374 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_cmd_v1.0.0-replace.txt

    example.com/cmd contains main packages.
    
    -- .info --
    {"Version":"v1.0.0-replace"}
    -- .mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- go.mod --
    module example.com/cmd
    
    go 1.16
    
    replace rsc.io/quote => rsc.io/quote v1.5.2
    -- 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
    - 397 bytes
    - Viewed (0)
Back to top