Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,678 for during (0.32 sec)

  1. android/guava-tests/benchmark/com/google/common/collect/SetIterationBenchmark.java

      })
      private int size;
    
      // "" means no fixed seed
      @Param("1234")
      private SpecialRandom random;
    
      @Param({"ImmutableSetImpl", "HashSetImpl"})
      private SetImpl impl;
    
      // the following must be set during setUp
      private Set<Element> setToTest;
    
      @BeforeExperiment
      void setUp() {
        CollectionBenchmarkSampleData sampleData =
            new CollectionBenchmarkSampleData(true, random, 0.8, size);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/SMBProtocolDecodingException.java

         */
        public SMBProtocolDecodingException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new SMBProtocolDecodingException with the specified detail message.
         *
         * @param message the detail message
         */
        public SMBProtocolDecodingException(final String message) {
            super(message);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/QueryHelper.java

         * Builds the base query from the user's search string using the configured query parser.
         * This method parses the query string, processes it, and applies any additional customizations.
         *
         * @param queryContext the query context containing the query string
         * @param context a consumer for additional query context customization
         * @throws InvalidQueryException if the query string cannot be parsed
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractService.java

            }
    
            @Override
            public String toString() {
              return "starting()";
            }
          };
      private static final ListenerCallQueue.Event<Listener> RUNNING_EVENT =
          new ListenerCallQueue.Event<Listener>() {
            @Override
            public void call(Listener listener) {
              listener.running();
            }
    
            @Override
            public String toString() {
              return "running()";
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

         */
        protected String escapeValue(final String action) {
            return action.replace('\t', ' ');
        }
    
        /**
         * Outputs a log message using the statistics logger.
         *
         * @param buf the string buffer containing the log message
         */
        protected void log(final StringBuilder buf) {
            statsLogger.info(buf.toString());
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java

    @DisplayName("Smb2SessionSetupResponse Tests")
    @MockitoSettings(strictness = Strictness.LENIENT)
    class Smb2SessionSetupResponseTest extends BaseTest {
    
        private Smb2SessionSetupResponse newResponse() {
            // Configuration is not used during decode when no signing digest is set
            Configuration cfg = mock(Configuration.class);
            return new Smb2SessionSetupResponse(cfg);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * all the dependencies.</p>
     *
     * <p>The <dfn>Dependency graph flattening</dfn> process in Maven reduces a complex,
     * multi-level dependency graph to a map of ordered lists that can be turned into classpaths.
     * During this process only the most relevant version of each artifact
     * (based on group ID and artifact ID) is retained, resolving conflicts and eliminating duplicates to ensure
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 05 14:29:21 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

    import okhttp3.tls.internal.TlsUtil.newTrustManager
    
    /**
     * Certificates to identify which peers to trust and also to earn the trust of those peers in kind.
     * Client and server exchange these certificates during the handshake phase of a TLS connection.
     *
     * ### Server Authentication
     *
     * This is the most common form of TLS authentication: clients verify that servers are trusted and
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/AbstractSequentialIterator.java

        this.nextOrNull = firstOrNull;
      }
    
      /**
       * Returns the element that follows {@code previous}, or returns {@code null} if no elements
       * remain. This method is invoked during each call to {@link #next()} in order to compute the
       * result of a <i>future</i> call to {@code next()}.
       */
      protected abstract @Nullable T computeNext(T previous);
    
      @Override
      public final boolean hasNext() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateResponse.java

     */
    package jcifs.internal.smb2.rdma;
    
    /**
     * RDMA negotiation response parameters.
     *
     * Contains the negotiated parameters returned by the RDMA peer
     * during connection establishment.
     */
    public class RdmaNegotiateResponse {
    
        private int status;
        private int selectedVersion;
        private int creditsGranted;
        private int maxReceiveSize;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top