Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 343 for performGet (0.2 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheCleanupBuildOperationType.java

            /**
             * The number of cache entries deleted during this clean up.
             */
            long getDeletedEntriesCount();
    
            /**
             * The timestamp the last cleanup was performed.
             */
            Instant getPreviousCleanupTime();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/package-info.java

     *
     * Artifact variant selection failures are not represented by a specific exception type, as they are
     * similar to graph selection failures, and the type of failure is more important that the type of
     * resolution being performed in this hierarchy.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    Configs that have a "yes" mark in the "MANUAL UPGRADE REQUIRED" column require manual config upgrade or
    resetting to kubeadm defaults before a successful upgrade can be performed. The version to manually
    upgrade to is denoted in the "PREFERRED VERSION" column.
    
    API GROUP                 CURRENT VERSION   PREFERRED VERSION   MANUAL UPGRADE REQUIRED
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/NativeDependencyCache.java

    /**
     * This is intended to be temporary, until more metadata can be published and the dependency resolution engine can deal with it. As such, it's not particularly performant or robust.
     */
    public class NativeDependencyCache implements Stoppable {
        private final PersistentCache cache;
    
        public NativeDependencyCache(GlobalScopedCacheBuilderFactory cacheBuilderFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskActionListener.java

         */
        void beforeActions(Task task);
    
        /**
         * This method is called immediately after the task has completed performing its actions.
         *
         * @param task The task which has performed some actions.
         */
        void afterActions(Task task);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/AsyncStoppable.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.concurrent;
    
    /**
     * A {@link Stoppable} object whose stop process can be performed asynchronously.
     */
    public interface AsyncStoppable extends Stoppable {
        /**
         * <p>Requests that this stoppable commence a graceful stop. Does not block. You should call {@link
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

         * @param options The lock options.
         * @param targetDisplayName A display name for the target file. This is used in log and error messages.
         * @param operationDisplayName A display name for the operation being performed on the target file. This is used in log and error messages.
         */
        FileLock lock(File target, LockOptions options, String targetDisplayName, String operationDisplayName) throws LockTimeoutException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     * <h2>Key abstractions</h2>
     *
     * <h3>Encoders and Decoders</h3>
     *  <p>
     *  Serialization of an object that is supported by the configuration cache is performed by an {@link org.gradle.internal.serialize.graph.EncodingProvider}.
     *  Deserialization, on the other hand, is performed by a {@link org.gradle.internal.serialize.graph.DecodingProvider}.
     *  </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top