Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for handling (0.13 sec)

  1. subprojects/build-events/src/main/java/org/gradle/build/event/BuildEventsListenerRegistry.java

         *
         * <p>The events are delivered to the listener one at a time, so the implementation does not need to be thread-safe. Also, events are delivered to the listener concurrently with
         * task execution and other work, so event handling does not block task execution. This means that a task finish event is delivered to the listener some time "soon" after the task
         * has completed. The events contain timestamps to allow you collect timing information.
         * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 30 09:10:51 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/https/Handler.java

     */
    
    package jcifs.smb1.https;
    
    /**
     * 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.
     */
    public class Handler extends jcifs.smb1.http.Handler {
    
        /**
         * The default HTTPS port (<code>443</code>).
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessFactory.java

        /**
         * Creates a builder for workers that will handle requests using the given worker implementation, with a worker process handling zero or more requests.
         * A worker process handles a single request at a time.
         *
         * <p>The worker process is not started until {@link WorkerControl#start()} is called.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/PropertyAnnotationHandler.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.lang.annotation.Annotation;
    
    /**
     * Handles validation, dependency handling, and skipping for a property marked with a given annotation.
     *
     * <p>Each handler must be registered as a global service.</p>
     */
    @ServiceScope(Scope.Global.class)
    public interface PropertyAnnotationHandler {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/Handler.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.SmbConstants;
    import jcifs.context.SingletonContext;
    
    
    /**
     * URL handler for transparent smb:// URL handling
     * 
     */
    public class Handler extends URLStreamHandler {
    
        private static final Logger log = LoggerFactory.getLogger(Handler.class);
        private CIFSContext transportContext;
    
    
        /**
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 06 09:14:24 UTC 2020
    - 2.9K bytes
    - Viewed (0)
Back to top