Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 496 for currency (0.05 sec)

  1. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java

       *
       * @param e the element to add
       * @return {@code true} (as specified by {@link Collection#add})
       * @throws ClassCastException if the specified element cannot be compared with elements currently
       *     in the priority queue according to the priority queue's ordering
       * @throws NullPointerException if the specified element is null
       */
      @CanIgnoreReturnValue // pushed down from class to method
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/JobHelper.java

        }
    
        /**
         * Sets the job runtime for the current thread.
         *
         * @param runtime the job runtime to set
         */
        public void setJobRuntime(final LaJobRuntime runtime) {
            jobRuntimeLocal.set(runtime);
        }
    
        /**
         * Gets the job runtime for the current thread.
         *
         * @return the job runtime for the current thread
         */
        public LaJobRuntime getJobRuntime() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/EditBody.java

     * for scheduler management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Flag indicating whether the scheduler job is currently running.
         */
        public Boolean running;
    
        /**
         * Default constructor.
         */
        public EditBody() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

            }
            if (value != null) {
                return Float.parseFloat(value.toString());
            }
    
            return 0.0f;
        }
    
        /**
         * Gets the current boost expression.
         *
         * @return the boost expression string
         */
        public String getBoostExpression() {
            return boostExpression;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

            return defaultValue;
        }
    
        /**
         * Creates a new DataStoreParams instance with a copy of the current parameters.
         * This provides an independent copy that can be modified without affecting the original.
         *
         * @return a new DataStoreParams instance containing a copy of the current parameters
         */
        public DataStoreParams newInstance() {
            return new DataStoreParams(params);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

        /**
         * Creates a duplicate host entity based on the form and current user context.
         *
         * @param form the form containing duplicate host data
         * @param username the current username
         * @param currentTime the current timestamp
         * @return optional duplicate host entity
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeRangeSet.java

      }
    
      @Override
      public void add(Range<C> rangeToAdd) {
        checkNotNull(rangeToAdd);
    
        if (rangeToAdd.isEmpty()) {
          return;
        }
    
        // We will use { } to illustrate ranges currently in the range set, and < >
        // to illustrate rangeToAdd.
        Cut<C> lbToAdd = rangeToAdd.lowerBound;
        Cut<C> ubToAdd = rangeToAdd.upperBound;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 32.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashSet.java

        if (delegate != null) {
          return delegate.add(object);
        }
        int[] entries = requireEntries();
        @Nullable Object[] elements = requireElements();
    
        int newEntryIndex = this.size; // current size, and pointer to the entry to be appended
        int newSize = newEntryIndex + 1;
        int hash = smearedHash(object);
        int mask = hashTableMask();
        int tableIndex = hash & mask;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            };
            qrList.allRecordCount = 200; // 20 pages, current page 20
            qrList.calculatePageInfo();
    
            pageList = qrList.getPageNumberList();
            assertEquals(6, pageList.size()); // Pages 15-20 (current page 20 - range 5)
            assertEquals("15", pageList.get(0));
            assertEquals("20", pageList.get(5));
    
            // Test when current page is in the middle
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

        //                                                                        ============
    
        /**
         * Gets a key match entity based on the form and current user info.
         *
         * @param form the create form
         * @param username the current username
         * @param currentTime the current time
         * @return optional key match entity
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
Back to top