Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for downgraded (0.13 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainDownload.java

    /**
     * The response provided by a {@link JavaToolchainResolver} to a specific
     * {@link JavaToolchainRequest}.
     * <p>
     * Contains the download URI from which a Java toolchain matching the request
     * can be downloaded from. The URI must point to either a ZIP or a TAR archive
     * and has to be secure (so simple HTTP is not allowed, only HTTPS).
     *
     * @since 7.6
     */
    @Incubating
    public interface JavaToolchainDownload {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    > Task :${subprojectName.raw}:run
    Hello world!
    
    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    == Bundle the application
    
    The `application` plugin also bundles the application, with all its dependencies, for you.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java

     *
     * @author shinsuke
     *
     */
    public class FileTransformer extends HtmlTransformer {
        private static final Logger logger = LoggerFactory.getLogger(FileTransformer.class);
    
        /**
         * A path to store downloaded files. The default path is a current
         * directory.
         */
        protected String path;
    
        /**
         * A string to replace ?.
         */
        protected String questionStr = "_QUEST_";
    
        /**
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download.txt

    stdout '^\t"GoModSum": "h1:LzX7hefJvL54yjefDEDHNONDjII0t9xZLPXsUe\+TKr0="'
    ! stdout '"Error"'
    
    # download queries above should not have added to go.mod.
    go list -m all
    ! stdout rsc.io
    
    # download query should have downloaded go.mod for the highest release version
    # in order to find retractions when resolving the query '@<=v1.5.0'.
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_sumdb.txt

    # (this also populates tiles on the sumdb server).
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb' '$proxy/sumdb-wrong
    ! go get rsc.io/quote
    stderr 'go: rsc.io/quote@v1.5.2: verifying module: checksum mismatch'
    stderr 'downloaded: h1:3fEy'
    stderr 'localhost.localdev/sumdb: h1:wrong'
    stderr 'SECURITY ERROR\nThis download does NOT match the one reported by the checksum server.'
    ! go get rsc.io/sampler
    ! go get golang.org/x/text
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/antlr/build.gradle.kts

        implementation(libs.guava)
        implementation(libs.jsr305)
        implementation(libs.slf4jApi)
    
        compileOnly("antlr:antlr:2.7.7") {
            because("this dependency is downloaded by the antlr plugin")
        }
    
        runtimeOnly(project(":language-jvm"))
        runtimeOnly(project(":workers"))
    
        testImplementation(project(":base-services-groovy"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    <4> Registry and logs of the <<gradle_daemon.adoc#gradle_daemon, Gradle Daemon>>.
    <5> Global <<init_scripts.adoc#init_scripts, initialization scripts>>.
    <6> JDKs downloaded by the <<toolchains.adoc#sec:provisioning, toolchain support>>.
    <7> Distributions downloaded by the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>>.
    <8> Global <<build_environment.adoc#sec:gradle_configuration_properties,Gradle configuration properties>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_split.txt

    #
    # In particular, if the module that previously provided the package has a
    # matching version, but does not itself match the pattern and contains no
    # matching packages, we should not change its version. (We should *not* downgrade
    # module example.net/split to v0.1.0, despite the fact that
    # example.net/split v0.2.0 currently provides the package with the requested path.)
    #
    # TODO(#27899): Maybe we should resolve the ambiguities by upgrading.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_sum_lookup.txt

    # When we attempt to resolve an import that doesn't exist, we should not save
    # hashes for downloaded modules.
    # Verifies golang.org/issue/36260.
    # TODO(golang.org/issue/26603): use 'go mod tidy -e' when implemented.
    go list -e -mod=mod -tags=ignore ./noexist
    ! exists go.sum
    
    # When an import is resolved successfully, we should only save hashes for
    # the module that provides the package, not for other modules looked up.
    # Verifies golang.org/issue/31580.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 859 bytes
    - Viewed (0)
Back to top