Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 202 for exited (0.05 sec)

  1. guava-tests/test/com/google/common/hash/HashingTest.java

        Random r = new Random(9);
        for (int i = 0; i < ITERS; i++) {
          countRemaps(r.nextLong(), map);
        }
        for (int shard = 2; shard <= MAX_SHARDS; shard++) {
          // Rough: don't exceed 1.2x the expected number of remaps by more than 20
          assertTrue(map.get(shard) <= 1.2 * ITERS / shard + 20);
        }
      }
    
      private void countRemaps(long h, AtomicLongMap<Integer> map) {
        int last = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 26.4K bytes
    - Viewed (2)
  2. src/main/java/jcifs/util/ServerResponseValidator.java

        }
    
        /**
         * Validate buffer access bounds
         *
         * @param buffer the buffer
         * @param offset offset to access
         * @param length length to read
         * @throws SmbException if access would exceed bounds
         */
        public void validateBufferAccess(byte[] buffer, int offset, int length) throws SmbException {
            totalValidations.incrementAndGet();
    
            if (buffer == null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            assertFalse(qrList.isExistPrevPage());
        }
    
        public void test_calculatePageInfo_currentEndRecordNumber_boundary() {
            // Test when currentEndRecordNumber would exceed allRecordCount
            QueryResponseList qrList = new QueryResponseList(null, 95, 10, 0) {
                @Override
                public int size() {
                    return 5; // Only 5 records returned
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

     *  **OkHttp now supports prior knowledge cleartext HTTP/2.** Enable this by setting
        `Protocol.H2_PRIOR_KNOWLEDGE` as the lone protocol on an `OkHttpClient.Builder`. This mode
        only supports `http:` URLs and is best suited in closed environments where HTTPS is
        inappropriate.
    
     *  New: `HttpUrl.get(String)` is an alternative to `HttpUrl.parse(String)` that throws an exception
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ArrayTable.java

       * are valid.
       *
       * @param rowKey row key of mapping to be erased
       * @param columnKey column key of mapping to be erased
       * @return the value previously associated with the keys, or {@code null} if no mapping existed
       *     for the keys
       */
      @CanIgnoreReturnValue
      public @Nullable V erase(@Nullable Object rowKey, @Nullable Object columnKey) {
        Integer rowIndex = rowKeyToIndex.get(rowKey);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  6. cmd/data-scanner.go

    		}
    
    		bgSeq, found := globalBackgroundHealState.getHealSequenceByToken(bgHealingUUID)
    		if !found {
    			break
    		}
    
    		// Whatever remains in 'abandonedChildren' are folders at this level
    		// that existed in the previous run but wasn't found now.
    		//
    		// This may be because of 2 reasons:
    		//
    		// 1) The folder/object was deleted.
    		// 2) We come from another disk and this disk missed the write.
    		//
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/query-params-str-validations.md

    ///
    
    ## Additional validation { #additional-validation }
    
    We are going to enforce that even though `q` is optional, whenever it is provided, **its length doesn't exceed 50 characters**.
    
    ### Import `Query` and `Annotated` { #import-query-and-annotated }
    
    To achieve that, first import:
    
    * `Query` from `fastapi`
    * `Annotated` from `typing`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                        if (exitValue != 0) {
                            logger.warn("{} failed (exit code:{}): {}", getName(), exitValue, commandList);
                        }
    
                        if (logger.isDebugEnabled()) {
                            logger.debug("{} is finished with exit code {}.", getName(), exitValue);
                        }
                        return exitValue;
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/HashingTest.java

        Random r = new Random(9);
        for (int i = 0; i < ITERS; i++) {
          countRemaps(r.nextLong(), map);
        }
        for (int shard = 2; shard <= MAX_SHARDS; shard++) {
          // Rough: don't exceed 1.2x the expected number of remaps by more than 20
          assertTrue(map.get(shard) <= 1.2 * ITERS / shard + 20);
        }
      }
    
      private void countRemaps(long h, AtomicLongMap<Integer> map) {
        int last = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  10. docs/smb3-features/01-smb3-lease-design.md

            assertTrue(file.canCacheWrite());
        }
    }
    ```
    
    ## 9. Performance Considerations
    
    ### 9.1 Memory Management
    - Lease entries should be evicted based on LRU when max leases reached
    - Implement periodic cleanup of expired leases
    
    ### 9.2 Thread Safety
    - Use concurrent data structures for lease storage
    - Minimize lock contention in hot paths
    - Async handling of lease breaks
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top