Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for getUnits (0.14 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java

                            SuggestUtil.deleteScrollContext(client, scrollId);
                        }
                    }
                    scrollId = response.getScrollId();
                    final SearchHit[] hits = response.getHits().getHits();
                    if (scrollId == null || hits.length == 0) {
                        SuggestUtil.deleteScrollContext(client, scrollId);
                        isFinished.set(true);
                    }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/internal/DefaultStatusEvent.java

        }
    
        @Override
        public long getProgress() {
            return progress;
        }
    
        @Override
        public long getTotal() {
            return total;
        }
    
        @Override
        public String getUnit() {
            return unit;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/StatusEvent.java

         */
        long getTotal();
    
        /**
         * The measure used to express the amount of work.
         *
         * @return The measure used to express the amount of work.
         */
        String getUnit();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformChain.java

            this.init = init;
            this.last = last;
        }
    
        /**
         * @return The initial steps of this chain, or null if this chain only contains one step.
         */
        @Nullable
        public TransformChain getInit() {
            return init;
        }
    
        /**
         * @return The last step of this chain.
         */
        public TransformStep getLast() {
            return last;
        }
    
        public boolean requiresDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top