Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for recursively (0.05 sec)

  1. android/guava/src/com/google/common/math/Quantiles.java

        int required = allRequired[requiredChosen];
    
        // ...do the first selection...
        selectInPlace(required, array, from, to);
    
        // ...then recursively perform the selections in the range below...
        int requiredBelow = requiredChosen - 1;
        while (requiredBelow >= requiredFrom && allRequired[requiredBelow] == required) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 30.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/BigIntegerMath.java

          case 3:
            return nums.get(start).multiply(nums.get(start + 1)).multiply(nums.get(start + 2));
          default:
            // Otherwise, split the list in half and recursively do this.
            int m = (end + start) >>> 1;
            return listProduct(nums, start, m).multiply(listProduct(nums, m, end));
        }
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

                assertTrue("Classpath should contain target/classes", classpath.contains(targetClassesDir.getAbsolutePath()));
            }
        }
    
        // Helper method to delete directory recursively
        private void deleteDirectory(File dir) {
            if (dir.isDirectory()) {
                File[] children = dir.listFiles();
                if (children != null) {
                    for (File child : children) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

      /**
       * This class helps avoid a StackOverflowError when large numbers of tasks are submitted with
       * {@link MoreExecutors#directExecutor}. Normally, when the first future completes, all the other
       * tasks would be called recursively. Here, we detect that the delegate executor is executing
       * inline, and maintain a queue to dispatch tasks iteratively. There is one instance of this class
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/GenericsUtil.java

            };
        }
    
        /**
         * Returns the array of type arguments for the specified type.
         * <p>
         * If <code>type</code> is an array type, the element type(s) of the array are analyzed recursively.
         * </p>
         * <p>
         * If <code>type</code> is a parameterized type but has no direct type arguments, an empty array is returned.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                logger.warn("Could not parse a value of {}", xpath);
            }
            if (buf == null) {
                return null;
            }
            return buf.toString().trim();
        }
    
        /**
         * Recursively parses text content from a node and its children.
         *
         * @param node the node to parse
         * @param buf the StringBuilder to append content to
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                    log.debug("delete: " + fileName);
                }
    
                if ((this.attributes & ATTR_DIRECTORY) != 0) {
    
                    /*
                     * Recursively delete directory contents
                     */
    
                    try (CloseableIterator<SmbResource> it =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

             */
    
            if (LogStream.level >= 3) {
                log.println("delete: " + fileName);
            }
    
            if ((attributes & ATTR_DIRECTORY) != 0) {
    
                /* Recursively delete directory contents
                 */
    
                try {
                    final SmbFile[] l = listFiles("*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                this.locationTracking = locationTracking;
                return this;
            }
    
            public ModelBuilderRequestBuilder recursive(boolean recursive) {
                this.recursive = recursive;
                return this;
            }
    
            public ModelBuilderRequestBuilder source(ModelSource source) {
                this.source = source;
                return this;
            }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 26 20:54:22 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

        private final int filter;
        private final boolean recursive;
    
        /**
         * @param fh
         * @param filter
         * @param recursive
         *
         */
        public SmbWatchHandleImpl(final SmbFileHandleImpl fh, final int filter, final boolean recursive) {
            this.handle = fh;
            this.filter = filter;
            this.recursive = recursive;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top