Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 320 for maksimum (0.06 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

        }
    
        /**
         * The DCERPC binding configuration for this handle
         */
        protected DcerpcBinding binding;
        /**
         * Maximum transmit buffer size for DCERPC messages
         */
        protected int max_xmit = 4280;
        /**
         * Maximum receive buffer size for DCERPC messages
         */
        protected int max_recv = max_xmit;
        /**
         * The current state of the DCERPC connection
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

       */
      private List<Entry<Object, Object>> warmUp(
          LoadingCache<Object, Object> cache, int minimum, int maximum) {
    
        List<Entry<Object, Object>> entries = new ArrayList<>();
        for (int i = minimum; i < maximum; i++) {
          Object key = i;
          Object value = cache.getUnchecked(key);
          entries.add(entryOf(key, value));
        }
        return entries;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

                // Default constructor
            }
    
            /** Used heap memory in bytes */
            public long used;
            /** Committed heap memory in bytes */
            public long committed;
            /** Maximum heap memory in bytes */
            public long max;
            /** Heap memory usage percentage */
            public short percent;
        }
    
        /**
         * Data transfer object representing JVM non-heap memory statistics.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java

                assertEquals(0, SMBUtil.readInt4(buffer, 40)); // Default remaining bytes
            }
    
            @Test
            @DisplayName("Should handle maximum values correctly")
            void testMaximumValues() {
                request.setPadding((byte) 0xFF);
                request.setReadFlags((byte) 0xFF);
                request.setReadLength(Integer.MAX_VALUE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/SearchBody.java

        public SearchBody() {
            super();
        }
    
        /** The URL that failed during crawling */
        public String url;
    
        /** Minimum error count filter */
        public Integer errorCountMin;
    
        /** Maximum error count filter */
        public Integer errorCountMax;
    
        /** Name or type of the error */
        public String errorName;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/validation/CustomSize.java

         * @return name of size the element must be higher or equal to
         */
        String minKey() default StringUtil.EMPTY;
    
        /**
         * Gets the configuration key for the maximum size constraint.
         *
         * @return name of size the element must be lower or equal to
         */
        String maxKey() default StringUtil.EMPTY;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Settings.kt

        const val HEADER_TABLE_SIZE = 1
    
        /** HTTP/2: The peer must not send a PUSH_PROMISE frame when this is 0. */
        const val ENABLE_PUSH = 2
    
        /** Sender's maximum number of concurrent streams. */
        const val MAX_CONCURRENT_STREAMS = 3
    
        /** Window size in bytes. */
        const val INITIAL_WINDOW_SIZE = 4
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

        protected volatile long executeTime = 0;
    
        /** List of documents waiting to be indexed */
        protected final DocList docList = new DocList();
    
        /** Maximum size of document requests in bytes */
        protected long maxDocumentRequestSize;
    
        /** Maximum number of documents to cache before indexing */
        protected int maxDocumentCacheSize;
    
        /** Factory for creating ingesters to process documents */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoRequestTest.java

            assertEquals(1, SMBUtil.readInt2(buffer, 22));
    
            // Verify the single dialect
            assertEquals(0x0311, SMBUtil.readInt2(buffer, 24));
        }
    
        @Test
        @DisplayName("Test encode with maximum capabilities value")
        void testEncodeWithMaxCapabilities() {
            ValidateNegotiateInfoRequest request =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

         */
        public void setLoggerName(final String loggerName) {
            this.loggerName = loggerName;
        }
    
        /**
         * Sets the maximum number of statistics objects to cache.
         *
         * @param maxCacheSize the maximum cache size
         */
        public void setMaxCacheSize(final long maxCacheSize) {
            this.maxCacheSize = maxCacheSize;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top