Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 243 for splits (0.12 sec)

  1. android/guava/src/com/google/common/collect/Streams.java

          }
        }
        OptionalState state = new OptionalState();
    
        Deque<Spliterator<T>> splits = new ArrayDeque<>();
        splits.addLast(stream.spliterator());
    
        while (!splits.isEmpty()) {
          Spliterator<T> spliterator = splits.removeLast();
    
          if (spliterator.getExactSizeIfKnown() == 0) {
            continue; // drop this split
          }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java

        /**
         *
         * @return next chained message
         */
        @Override
        CommonServerMessageBlockRequest getNext();
    
        /**
         * Splits this request for processing.
         *
         * @return the following message
         */
        CommonServerMessageBlockRequest split();
    
        /**
         * Gets the size of this message.
         *
         * @return the size of this message
         */
        int size();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/stream/StreamUtil.java

        }
    
        /**
         * Splits the given string into an array of substrings based on the specified regular expression
         * and returns a stream of those substrings.
         *
         * @param value the string to be split; if {@code null}, the method returns an empty stream
         * @param regex the regular expression to use for splitting the string
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

                    }
                }
                return query;
            }
    
            /**
             * Splits a field name into its components.
             *
             * @param defaultField the default field name
             * @param field the field name to split
             * @return a Pair containing the field name and extension key
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbFileInputStreamTest.java

                int res = in.readDirect(new byte[1024], 0, 256);
                assertEquals(-1, res);
            }
    
            @Test
            @DisplayName("LargeReadX splits count across maxCount/openTimeout")
            void largeReadXSetsRequestFields() throws Exception {
                when(mockTree.isSMB2()).thenReturn(false);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/RangeSet.java

     * rangeSet.add(Range.closedOpen(15, 20)); // connected range; {[1, 10], [11, 20)}
     * rangeSet.add(Range.openClosed(0, 0)); // empty range; {[1, 10], [11, 20)}
     * rangeSet.remove(Range.open(5, 10)); // splits [1, 10]; {[1, 5], [10, 10], [11, 20)}
     * }
     *
     * <p>Note that the behavior of {@link Range#isEmpty()} and {@link Range#isConnected(Range)} may not
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/NtlmUtilTest.java

            verify(cifsContext, atLeastOnce()).getConfig();
            verify(configuration, atLeastOnce()).getOemEncoding();
        }
    
        @Test
        @DisplayName("E: splits 7-byte keys into 8-byte DES blocks and concatenates")
        void testE_blockSplitConsistency() throws ShortBufferException {
            // Arrange
            byte[] key14 = hex("01020304050607 11121314151617"); // two 7-byte chunks
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/SplitterTest.java

            () -> COMMA_SPLITTER.withKeyValueSeparator(":").split("a:1,b:2,a:3"));
      }
    
      public void testMapSplitter_varyingTrimLevels() {
        MapSplitter splitter = COMMA_SPLITTER.trimResults().withKeyValueSeparator(Splitter.on("->"));
        Map<String, String> split = splitter.split(" x -> y, z-> a ");
        assertThat(split).containsEntry("x ", " y");
        assertThat(split).containsEntry("z", " a");
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/StringUtil.java

            }
            return new String(buf);
        }
    
        /**
         * Splits the string by the specified delimiter.
         *
         * @param str
         *            the string to split
         * @param delim
         *            the delimiter to use for splitting
         * @return an array of split strings
         */
        public static String[] split(final String str, final String delim) {
            if (isEmpty(str)) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/ClassUtil.java

            final int i = className.lastIndexOf('.');
            if (i > 0) {
                return className.substring(i + 1);
            }
            return className;
        }
    
        /**
         * Splits a fully qualified class name (FQCN) into the package name and the class name without the package.
         *
         * @param className
         *            The class name. Must not be {@literal null} or empty.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top