Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for handling (0.15 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

                .named(parentBuilder.getName() + " [Map]")
                .suppressing(parentBuilder.getSuppressedTests())
                .suppressing(SetCreationTester.class.getMethods())
                // BiMap.entrySet() duplicate-handling behavior is too confusing for SetCreationTester
                .withSetUp(parentBuilder.getSetUp())
                .withTearDown(parentBuilder.getTearDown())
                .createTestSuite());
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/FailsafeStreamedValueListener.java

            this.delegate = delegate;
        }
    
        @Override
        public void onValue(Object value) {
            if (failure != null) {
                // Stop handling further values after a failure
                return;
            }
    
            if (delegate != null) {
                try {
                    delegate.onValue(value);
                } catch (Throwable e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/local/internal/LocalBuildCacheService.java

    import org.gradle.caching.BuildCacheKey;
    
    import java.io.Closeable;
    import java.io.File;
    import java.util.function.Consumer;
    
    /**
     * A build cache service that is capable of handling local files directly. The direct access
     * allows more optimized implementations than the more general {@link org.gradle.caching.BuildCacheService}
     * interface.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/InterruptibleRunnable.java

     * This can be used to implement guaranteed delivery mechanisms, where proper interrupt handling is up to the delegate.
     */
    public final class InterruptibleRunnable implements Runnable {
        private final Lock stateLock = new ReentrantLock();
        private final Runnable delegate;
        private boolean interrupted;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriter.java

    import java.io.IOException;
    import java.io.Writer;
    
    /**
     * <p>The Gradle module metadata file generator is responsible for generating a JSON file
     * describing module metadata. In particular, this file format is capable of handling different
     * variants with different dependency sets.</p>
     *
     * <p>Whenever you change this class, make sure you also:</p>
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Objects.java

       * Arrays#hashCode(Object[])}. Note that array arguments to this method, with the exception of a
       * single Object array, do not get any special handling; their hash codes are based on identity
       * and not contents.
       *
       * <p>This is useful for implementing {@link Object#hashCode()}. For example, in an object that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

         */
        void setDebugLoggingEnabled(boolean debugLoggingEnabled);
    
        /**
         * Close the watcher registry. Stops watching without handling the changes.
         */
        @Override
        void close() throws IOException;
    
        interface FileWatchingStatistics {
            Optional<Throwable> getErrorWhileReceivingFileChanges();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

         *
         * @implSpec An instance of {@link ResolutionFailureHandler} is supplied to this method, and
         * any failures during selection should be routed through that handler. This is done to keep all failure handling done
         * in a consistent manner.  See {@link GraphVariantSelector} for comparison.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactory.java

                if (notation instanceof TaskDependencyContainer) {
                    TaskDependencyContainer taskDependencyContainer;
                    if (notation instanceof Provider) {
                        // wrap to disable special handling of providers by DefaultTaskDependency in this case
                        // (workaround for https://github.com/gradle/gradle/issues/11054)
                        taskDependencyContainer = context -> context.add(notation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactory.java

                if (notation instanceof TaskDependencyContainer) {
                    TaskDependencyContainer taskDependencyContainer;
                    if (notation instanceof Provider) {
                        // wrap to disable special handling of providers by DefaultTaskDependency in this case
                        // (workaround for https://github.com/gradle/gradle/issues/11054)
                        taskDependencyContainer = context -> context.add(notation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top