Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 1,596 for setB (0.3 sec)

  1. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
        assertFalse(set.contains(0));
        assertTrue(set.contains(1));
        assertTrue(set.contains(2));
        assertTrue(set.contains(3));
        assertFalse(set.contains(4));
        set = ContiguousSet.create(Range.open(0, 4), integers());
        assertFalse(set.contains(0));
        assertTrue(set.contains(1));
        assertTrue(set.contains(2));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          }
          int oldSize = size(); // calls refreshIfEmpty
    
          // Guava issue 1013: AbstractSet and most JDK set implementations are
          // susceptible to quadratic removeAll performance on lists;
          // use a slightly smarter implementation here
          boolean changed = Sets.removeAllImpl((Set<V>) delegate, c);
          if (changed) {
            int newSize = delegate.size();
            totalSize += newSize - oldSize;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/IterablesTest.java

      }
    
      public void testFrequency_set() {
        Set<String> set = newHashSet("a", "b", "c");
        assertEquals(1, frequency(set, "a"));
        assertEquals(1, frequency(set, "b"));
        assertEquals(1, frequency(set, "c"));
        assertEquals(0, frequency(set, "d"));
        assertEquals(0, frequency(set, 4.2));
        assertEquals(0, frequency(set, null));
      }
    
      public void testFrequency_list() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/witness/WitnessRpcMessage.java

         *
         * @return the return code
         */
        public int getReturnCode() {
            return returnCode;
        }
    
        /**
         * Sets the return code for the RPC operation.
         *
         * @param returnCode the return code to set
         */
        public void setReturnCode(int returnCode) {
            this.returnCode = returnCode;
        }
    
        /**
         * Checks if the RPC operation was successful.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

            }
        }
    
        /**
         * Gets the new stopword.
         *
         * @return The new stopword.
         */
        public String getNewInput() {
            return newInput;
        }
    
        /**
         * Sets the new stopword.
         *
         * @param newInput The new stopword.
         */
        public void setNewInput(final String newInput) {
            this.newInput = newInput;
        }
    
        /**
         * Gets the original stopword.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

         *
         * @return true if the crawler is running, false otherwise
         */
        public boolean isCrawlerRunning() {
            return crawlerRunning;
        }
    
        /**
         * Sets the crawler running status.
         *
         * @param crawlerRunning true to indicate the crawler is running, false otherwise
         */
        public void setCrawlerRunning(final boolean crawlerRunning) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

         */
        public Date getTimestamp() {
            return timestamp;
        }
    
        /**
         * Sets the dictionary manager for this file and returns this instance.
         *
         * @param dictionaryManager the dictionary manager to set
         * @return this dictionary file instance for method chaining
         */
        public DictionaryFile<T> manager(final DictionaryManager dictionaryManager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

        /**
         * Returns the current index position in the buffer.
         *
         * @return the current index
         */
        public int getIndex() {
            return index;
        }
    
        /**
         * Sets the current index position in the buffer.
         *
         * @param index the new index position
         */
        public void setIndex(final int index) {
            this.index = index;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java

            } catch (final AutoBindingFailureException e) {
                logger.warn("DuplicateHostService is not found.", e);
            }
        }
    
        /**
         * Sets the list of duplicate host rules.
         *
         * @param duplicateHostList the list of duplicate host rules to use
         */
        public void setDuplicateHostList(final List<DuplicateHost> duplicateHostList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/UnmodifiableSortedMultiset.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Sets.unmodifiableNavigableSet;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top