Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for handling (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ClientModule.java

         * @see #getDependencies()
         */
        void addDependency(ModuleDependency dependency);
    
        /**
         * Returns the id of the client module. This is usually only used for internal handling of the
         * client module.
         *
         * @return The id of the client module
         */
        String getId();
    
        /**
         * Returns all the dependencies added to the client module.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/MultiRequestWorkerProcessBuilder.java

         * <p>The worker process is not started until {@link WorkerControl#start()} is called on the returned object.</p>
         */
        MultiRequestClient<IN, OUT> build();
    
        /**
         * Registers a serializer to use when handling arguments to methods of {@link T}.
         */
        <T> void registerArgumentSerializer(Class<T> type, Serializer<T> serializer);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitivity.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks;
    
    /**
     * Enumeration of different path handling strategies for task properties.
     *
     * @see PathSensitive
     *
     * @since 3.1
     */
    public enum PathSensitivity {
        /**
         * Consider the full path of files and directories.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/Invocation.java

        /**
         * Returns an <b>unwrapped</b> argument at the position {@code pos} or {@code null} if the {@code pos} is greater or equal than {@link #getArgsCount()}.
         * This method is useful for handling optional arguments represented as "telescopic" overloads, like the one of the {@code Runtime.exec}:
         * <pre>
         *     Runtime.exec("/usr/bin/echo")
         *     Runtime.exec("/usr/bin/echo", new String[] {"FOO=BAR"})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 05:57:27 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/https/Handler.java

    import jcifs.CIFSContext;
    import jcifs.http.NtlmHttpURLConnection;
    
    
    /**
     * A <code>URLStreamHandler</code> used to provide NTLM authentication
     * capabilities to the default HTTPS handler. This acts as a wrapper,
     * handling authentication and passing control to the underlying
     * stream handler.
     * 
     * @deprecated {@link NtlmHttpURLConnection} is broken by design.
     */
    @Deprecated
    public class Handler extends jcifs.http.Handler {
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top