Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 1,225 for equalTo (0.14 sec)

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

                  return endOfData();
                }
              };
            }
          };
        }
    
        @Override
        public boolean equals(@Nullable Object o) {
          if (o instanceof RangeMap) {
            RangeMap<?, ?> rangeMap = (RangeMap<?, ?>) o;
            return asMapOfRanges().equals(rangeMap.asMapOfRanges());
          }
          return false;
        }
    
        @Override
        public int hashCode() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 22.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/StringUtilTest.java

        public void testEquals() throws Exception {
            assertEquals("1", true, StringUtil.equals("a", "a"));
            assertEquals("2", true, StringUtil.equals(null, null));
            assertEquals("3", false, StringUtil.equals("a", null));
            assertEquals("4", false, StringUtil.equals(null, "a"));
            assertEquals("5", false, StringUtil.equals("a", "b"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbTreeImplTest.java

        }
    
        // Test case for the equals method
        @Test
        void testEquals() {
            SmbTreeImpl tree1 = new SmbTreeImpl(session, "SHARE", "A:");
            SmbTreeImpl tree2 = new SmbTreeImpl(session, "SHARE", "A:");
            SmbTreeImpl tree3 = new SmbTreeImpl(session, "OTHER", "A:");
            assertEquals(tree1, tree2);
            assertFalse(tree1.equals(tree3));
        }
    
        // Test case for the unwrap method
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/SingletonImmutableBiMap.java

        return singleKey.equals(key) ? singleValue : null;
      }
    
      @Override
      public int size() {
        return 1;
      }
    
      @Override
      public void forEach(BiConsumer<? super K, ? super V> action) {
        checkNotNull(action).accept(singleKey, singleValue);
      }
    
      @Override
      public boolean containsKey(@Nullable Object key) {
        return singleKey.equals(key);
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Converter.java

        }
    
        @Override
        public boolean equals(@Nullable Object object) {
          if (object instanceof ConverterComposition) {
            ConverterComposition<?, ?, ?> that = (ConverterComposition<?, ?, ?>) object;
            return this.first.equals(that.first) && this.second.equals(that.second);
          }
          return false;
        }
    
        @Override
        public int hashCode() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 18 21:43:06 UTC 2025
    - 22.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

                                .get(stream -> stream.filter(s -> !"..".equals(s)).toArray(n -> new String[n]));
                        if (names.length < 2) {
                            continue;
                        }
                        if (logger.isDebugEnabled()) {
                            logger.debug("Loading {}", entry.getName());
                        }
                        if ("view".equals(names[0])) {
                            names[0] = themeName;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java

                @Override
                public boolean equals(Object o) {
                    return o instanceof DefaultSettingsBuilderRequest that
                            && Objects.equals(installationSettingsSource, that.installationSettingsSource)
                            && Objects.equals(projectSettingsSource, that.projectSettingsSource)
                            && Objects.equals(userSettingsSource, that.userSettingsSource)
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java

         * @return true if DEBUG, false otherwise
         */
        public boolean isDebugEnabled() {
            return DEBUG.equals(logLevel);
        }
    
        /**
         * Checks if the log level is INFO.
         *
         * @return true if INFO, false otherwise
         */
        public boolean isInfoEnabled() {
            return INFO.equals(logLevel);
        }
    
        /**
         * Checks if the log level is WARN.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/Name.java

        }
    
        @Override
        public boolean equals(final Object obj) {
            Name n;
    
            if (!(obj instanceof Name)) {
                return false;
            }
            n = (Name) obj;
            if (scope == null && n.scope == null) {
                return name.equals(n.name) && hexCode == n.hexCode;
            }
            return name.equals(n.name) && hexCode == n.hexCode && scope.equals(n.scope);
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java

                    return repositories;
                }
    
                @Override
                public boolean equals(Object o) {
                    return o instanceof DefaultVersionResolverRequest that
                            && Objects.equals(artifactCoordinates, that.artifactCoordinates)
                            && Objects.equals(repositories, that.repositories);
                }
    
                @Override
                public int hashCode() {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top