Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1081 - 1090 of 1,597 for complements (0.06 sec)

  1. guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

       *
       * <p>This class is very similar to {@link SequentialExecutor} with the exception that events can
       * be added without necessarily executing immediately.
       */
      private static final class PerListenerQueue<L> implements Runnable {
        final L listener;
        final Executor executor;
    
        @GuardedBy("this")
        final Queue<ListenerCallQueue.Event<L>> waitQueue = Queues.newArrayDeque();
    
        @GuardedBy("this")
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/EndpointPair.java

     *
     * @author James Sexton
     * @since 20.0
     */
    @Beta
    @Immutable(containerOf = {"N"})
    @ElementTypesAreNonnullByDefault
    public abstract class EndpointPair<N> implements Iterable<N> {
      private final N nodeU;
      private final N nodeV;
    
      private EndpointPair(N nodeU, N nodeV) {
        this.nodeU = checkNotNull(nodeU);
        this.nodeV = checkNotNull(nodeV);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

    import static org.apache.maven.cli.ResolveFile.resolveFile;
    
    /**
     * SettingsXmlConfigurationProcessor
     */
    @Named(SettingsXmlConfigurationProcessor.HINT)
    @Singleton
    public class SettingsXmlConfigurationProcessor implements ConfigurationProcessor {
        public static final String HINT = "settings";
    
        public static final String USER_HOME = System.getProperty("user.home");
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

     *
     * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead
     */
    @Named
    @Singleton
    @Deprecated(since = "4.0.0")
    @SuppressWarnings({"checkstyle:methodname"})
    public class DefaultProfileInjector implements ProfileInjector {
    
        private static final Map<Model, Map<List<Profile>, Model>> CACHE = Collections.synchronizedMap(new WeakHashMap<>());
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Range.java

     *       Comparable#compareTo compareTo} returns zero, not whether {@link Object#equals equals}
     *       returns {@code true}.
     *   <li>A class which implements {@code Comparable<UnrelatedType>} is very broken, and will cause
     *       undefined horrible things to happen in {@code Range}. For now, the Range API does not
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. cmd/erasure-multipart.go

    			}
    			wait()
    			return nil
    		})
    	})
    }
    
    // ListMultipartUploads - lists all the pending multipart
    // uploads for a particular object in a bucket.
    //
    // Implements minimal S3 compatible ListMultipartUploads API. We do
    // not support prefix based listing, this is a deliberate attempt
    // towards simplification of multipart APIs.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 44.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

    import jakarta.annotation.Resource;
    
    /**
     * @author jflute
     */
    public abstract class FessBaseAction extends TypicalAction // has several interfaces for direct use
            implements LaValidatable<FessMessages>, FessHtmlPath {
    
        // ===================================================================================
        //                                                                          Definition
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

     *
     * @author Jesse Wilson
     * @since 1.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractExecutionThreadService implements Service {
      /* use AbstractService for state management */
      private final Service delegate =
          new AbstractService() {
            @Override
            protected final void doStart() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * @author mbechler
     *
     */
    public class Smb2CreateResponse extends ServerMessageBlock2Response implements SmbBasicFileInfo {
    
        private static final Logger log = LoggerFactory.getLogger(Smb2CreateResponse.class);
    
        private byte oplockLevel;
        private byte openFlags;
        private int createAction;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTreeHandleImpl.java

    import jcifs.internal.CommonServerMessageBlockResponse;
    import jcifs.internal.SmbNegotiationResponse;
    import jcifs.internal.smb1.com.SmbComNegotiateResponse;
    
    
    /**
     * @author mbechler
     *
     */
    class SmbTreeHandleImpl implements SmbTreeHandleInternal {
    
        private static final Logger log = LoggerFactory.getLogger(SmbTreeHandleImpl.class);
    
        private final SmbResourceLocatorImpl resourceLoc;
        private final SmbTreeConnection treeConnection;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
Back to top