Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 572 for performGet (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    `default`::
    A fallback configuration used when dependency resolution is performed without request attributes.
    +
    *New builds and plugins should not be using the `default` configuration!*
    It remains solely for backwards compatibility.
    Dependency resolution should be performed with request attributes.
    
    `archives`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/HostSpecifier.java

     * recognized public suffix; see {@link InternetDomainName#isPublicSuffix()} for details.
     *
     * <p>Note that no network lookups are performed by any {@code HostSpecifier} methods. No attempt is
     * made to verify that a provided specifier corresponds to a real or accessible host. Only syntactic
     * and pattern-based checks are performed.
     *
     * <p>If you know that a given string represents a numeric IP address, use {@link InetAddresses} to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/VerifyException.java

    import javax.annotation.CheckForNull;
    
    /**
     * Exception thrown upon the failure of a <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">verification check</a>,
     * including those performed by the convenience methods of the {@link Verify} class.
     *
     * @since 17.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class VerifyException extends RuntimeException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableModuleVersionListingResolveResult.java

        enum State {
            /**
             * Listing has succeeded.
             */
            Listed,
            /**
             * Listing has failed.
             */
            Failed,
            /**
             * Listing hasn't been performed yet, or another attempt can be made.
             */
            Unknown
        }
    
        /**
         * Returns the current state of this result.
         */
        State getState();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputs.java

    import org.gradle.api.file.FileCollection;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * The outputs of a graph resolution. All results on this type are lazy. Resolution is only performed
     * when the results are accessed.
     *
     * TODO: This type is intended to be made public in future Gradle versions, in some form.
     */
    @HasInternalProtocol
    public interface ResolutionOutputs {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

       *
       * <p>If a character has no mapped replacement then it is checked against the safe range. If it
       * lies outside that, then {@link #escapeUnsafe} is called, otherwise no escaping is performed.
       *
       * @param replacementMap a map of characters to their escaped representations
       * @param safeMin the lowest character value in the safe range
       * @param safeMax the highest character value in the safe range
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/OncePerBuildInvocationVcsVersionWorkingDirResolver.java

    import javax.annotation.Nullable;
    import javax.annotation.concurrent.ThreadSafe;
    import java.io.File;
    import java.util.function.Supplier;
    
    /**
     * Ensures that a given resolution from (repo + selector) -&gt; working dir is performed once per build invocation. Allows resolution for different repos to happen in parallel.
     */
    @ThreadSafe
    public class OncePerBuildInvocationVcsVersionWorkingDirResolver implements VcsVersionWorkingDirResolver {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/MavenResolveTestFixture.groovy

            // The m2 installation on the integ spec is intended to verify the way Gradle interacts
            // with the system's local m2 repo, however the resolutions performed by this fixture
            // should be isolated from the build.
            def localRepoDir = temporaryFolder.testDirectory.file("maven-resolver-test-fixture-m2")
            return new ApiMavenResolver(localRepoDir, mavenRepo.uri)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemStream.java

    import java.util.List;
    
    public interface ProblemStream {
        /**
         * Returns diagnostics based on the state of the calling thread.
         *
         * <p>This method is here because stack trace sanitizing is currently performed by the caller.
         * However, each caller does this in a different way and they all do this in a different way
         * to the services used by this type.
         * </p>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 06:37:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/TaskOutcome.java

    package org.gradle.testkit.runner;
    
    /**
     * The outcome of executing a task during a build.
     *
     * @since 2.6
     * @see BuildTask#getOutcome()
     */
    public enum TaskOutcome {
    
        /**
         * The task executed and performed its actions without failure.
         */
        SUCCESS,
    
        /**
         * The task attempted to execute, but did not complete successfully.
         */
        FAILED,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top