Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 179 for motala (0.38 sec)

  1. src/main/resources/fess_config.properties

    query.max.length=1000
    # Timeout (ms) for search queries.
    query.timeout=10000
    # Whether to enable logging for query timeouts.
    query.timeout.logging=true
    # Maximum number of total hits to track in queries.
    query.track.total.hits=10000
    # Fields used for geo search queries.
    query.geo.fields=location
    # Parameter name for browser language in queries.
    query.browser.lang.parameter.name=browser_lang
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         */
    
        private byte command, flags;
        /**
         * Starting position of the SMB header in the buffer.
         */
        protected int headerStart;
        /**
         * Total length of the SMB message.
         */
        protected int length;
        /**
         * Batch level for batched requests.
         */
        protected int batchLevel;
        /**
         * Error code returned by the server.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         * Retrieves a paginated list of crawling information records based on the provided pager criteria.
         * The results are ordered by creation time in descending order and the pager is updated with
         * pagination metadata including total count and page number list.
         *
         * @param crawlingInfoPager the pager object containing search criteria and pagination settings
         * @return a list of CrawlingInfo entities matching the criteria
         */
    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. src/test/java/jcifs/netbios/NameTest.java

            // Scope should start at position 33 with a length byte (not '.')
            // The first byte after encoding would be the length of "scope"
            assertEquals(5, dst[33]); // Length of "scope"
    
            // Verify total length includes scope
            assertEquals(33 + name.scope.length() + 2, length);
        }
    
        @Test
        void readWireFormat_shouldDecodeNameCorrectly() {
            // Prepare encoded data for "TEST" with type 0x20
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multimap.java

     *       operation that causes a key to have zero associated values has the effect of
     *       <i>removing</i> that key from the multimap.
     *   <li>The total entry count is available as {@link #size}.
     *   <li>Many complex operations become easier; for example, {@code
     *       Collections.min(multimap.values())} finds the smallest value across all keys.
     * </ul>
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

            // Set converter and number of entries
            setConverter(response, 0);
            setNumEntries(response, numServers);
    
            // Calculate total buffer size
            int entrySize = 26; // 16 + 2 + 4 + 4
            int totalEntrySize = entrySize * numServers;
            int totalCommentSize = 0;
            for (String comment : comments) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

        }
    
        @Override
        public String toString() {
          return "BY_TO_STRING";
        }
    
        private Object readResolve() {
          return INSTANCE;
        }
      }
    
      // Always equal is a valid total ordering. And it works for any Object.
      private static final class AlwaysEqual extends Ordering<@Nullable Object>
          implements Serializable {
        private static final AlwaysEqual INSTANCE = new AlwaysEqual();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            public SearchConditionBuilder scroll() {
                isScroll = true;
                return this;
            }
    
            /**
             * Sets the track total hits configuration.
             *
             * @param trackTotalHits the track total hits setting
             * @return this builder for method chaining
             */
            public SearchConditionBuilder trackTotalHits(final String trackTotalHits) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt

        val frame3 = peer.takeFrame()
        assertThat(frame3.type).isEqualTo(Http2.TYPE_RST_STREAM)
        assertThat(connection.readBytes.acknowledged).isEqualTo(0L)
        assertThat(connection.readBytes.total).isEqualTo(2048L)
      }
    
      @Test fun receiveGoAwayHttp2() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM 3
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 75.5K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                    if (resetArtifact.getVersion() == null && resetArtifact.getVersionRange() != null) {
    
                                        // go find the version. This is a total hack. See previous comment.
                                        List<ArtifactVersion> versions = resetArtifact.getAvailableVersions();
                                        if (versions == null) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top