Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 724 for Change (0.38 sec)

  1. platforms/documentation/docs/src/snippets/maven-publish/conditional-publishing/groovy/build.gradle

                from components.java
            }
            binaryAndSources(MavenPublication) {
                from components.java
                artifact sourcesJar
            }
        }
        repositories {
            // change URLs to point to your repos, e.g. http://my.org/repo
            maven {
                name = 'external'
                url = layout.buildDirectory.dir('repos/external')
            }
            maven {
                name = 'internal'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_downgrade.txt

    stdout 'rsc.io/sampler v1.0.0'
    
    # downgrade sampler away should downgrade quote further
    go get rsc.io/sampler@none
    go list -m all
    stdout 'rsc.io/quote v1.3.0'
    
    # downgrade should report inconsistencies and not change go.mod
    go get rsc.io/quote@v1.5.1
    go list -m all
    stdout 'rsc.io/quote v1.5.1'
    stdout 'rsc.io/sampler v1.3.0'
    
    ! go get rsc.io/sampler@v1.0.0 rsc.io/quote@v1.5.2 golang.org/x/text@none
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ResolverCoordinatorTest.kt

    import org.gradle.kotlin.dsl.fixtures.assertInstanceOf
    
    import org.junit.Test
    
    
    class ResolverCoordinatorTest {
    
        @Test
        fun `given an environment with a 'getScriptSectionTokens' entry, when no buildscript change, it will not try to retrieve the model`() {
    
            val environment =
                environmentWithGetScriptSectionTokensReturning(
                    "buildscript" to sequenceOf(""),
                    "plugins" to sequenceOf("")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. guava-testlib/README.md

    -   [guava-discuss: For open-ended questions and discussion](https://groups.google.com/group/guava-discuss)
    
    ## IMPORTANT WARNINGS
    
    1. APIs marked with the `@Beta` annotation at the class or method level
    are subject to change. They can be modified in any way, or even
    removed, at any time. If your code is a library itself (i.e. it is
    used on the CLASSPATH of users outside your own control), you should
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_patchmod.txt

    go get example.net/pkgremoved@v0.1.0
    
    go list example.net/pkgremoved
    stdout '^example.net/pkgremoved'
    
    cp go.mod go.mod.orig
    
    
    # When we resolve a new dependency on example.net/other,
    # it will change the meaning of the path "example.net/pkgremoved"
    # from a package (at v0.1.0) to only a module (at v0.2.0).
    #
    # If we simultaneously 'get' that module at the query "patch", the module should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/signing/maven-publish/kotlin/build.gradle.kts

                    }
                }
    // tag::versions-resolved[]
            }
        }
    // end::versions-resolved[]
    // end::pom-customization[]
        repositories {
            maven {
                // change URLs to point to your repos, e.g. http://my.org/repo
                val releasesRepoUrl = uri(layout.buildDirectory.dir("repos/releases"))
                val snapshotsRepoUrl = uri(layout.buildDirectory.dir("repos/snapshots"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. .gitignore

    [56789a].out
    *~
    *.orig
    *.rej
    *.exe
    .*.swp
    core
    *.cgo*.go
    *.cgo*.c
    _cgo_*
    _obj
    _test
    _testmain.go
    
    /VERSION.cache
    /bin/
    /build.out
    /doc/articles/wiki/*.bin
    /goinstall.log
    /last-change
    /misc/cgo/life/run.out
    /misc/cgo/stdio/run.out
    /misc/cgo/testso/main
    /pkg/
    /src/*.*/
    /src/cmd/cgo/zdefaultcc.go
    /src/cmd/dist/dist
    /src/cmd/go/internal/cfg/zdefaultcc.go
    /src/cmd/internal/objabi/zbootstrap.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 958 bytes
    - Viewed (0)
  8. docs/security/security.md

    ## Supported Versions
    
    | Version | Supported           | Notes                                        |
    | ------- | ------------------- | -------------------------------------------- |
    | 5.x     | ✅                  | APIs subject to change in alpha releases.    |
    | 4.x     | ✅                  | Android 5.0+ (API level 21+) and on Java 8+. |
    | 3.x     | ❌ Ended 2021-12-31 | Android 2.3+ (API level 9+) and Java 7+.     |
    
    
    ## Reporting a Vulnerability
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/README.md

    keep track of which version of the OS the files were generated from (ex.
    Darwin 14 vs Darwin 15). This makes it easier to track the progress of changes
    and have each OS upgrade correspond to a single change.
    
    To build the files for your current OS and architecture, make sure GOOS and
    GOARCH are set correctly and run `mkall.sh`. This will generate the files for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 14:32:58 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/build.gradle

                    }
                }
    // tag::versions-resolved[]
            }
        }
    // end::versions-resolved[]
    // end::pom-customization[]
        repositories {
            maven {
                // change URLs to point to your repos, e.g. http://my.org/repo
                def releasesRepoUrl = layout.buildDirectory.dir('repos/releases')
                def snapshotsRepoUrl = layout.buildDirectory.dir('repos/snapshots')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top