Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for HashCode (0.06 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

     *
     * @return  A hashcode for this abstract file
     * @throws SmbException
     */
    
        public int hashCode() {
            int hash;
            try {
                hash = getAddress().hashCode();
            } catch( UnknownHostException uhe ) {
                hash = getServer().toUpperCase().hashCode();
            }
            getUncPath0();
            return hash + canon.toUpperCase().hashCode();
        }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. okhttp-android/src/main/baseline-prof.txt

    HSPLkotlin/collections/EmptyMap;->isEmpty()Z
    HSPLkotlin/collections/EmptySet;-><clinit>()V
    HSPLkotlin/collections/EmptySet;-><init>()V
    HSPLkotlin/collections/EmptySet;->equals(Ljava/lang/Object;)Z
    HSPLkotlin/collections/EmptySet;->hashCode()I
    HSPLkotlin/collections/EmptySet;->isEmpty()Z
    HSPLkotlin/collections/EmptySet;->iterator()Ljava/util/Iterator;
    HSPLkotlin/collections/MapsKt___MapsKt;->toMap(Ljava/util/Map;)Ljava/util/Map;
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

          for (int i = 0; i < count; i++) {
            Object key = new Object();
            final Object value = new Object();
            segment.get(
                key,
                key.hashCode(),
                new CacheLoader<Object, Object>() {
                  @Override
                  public Object load(Object key) {
                    return value;
                  }
                });
          }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 110.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          for (int i = 0; i < count; i++) {
            Object key = new Object();
            final Object value = new Object();
            segment.get(
                key,
                key.hashCode(),
                new CacheLoader<Object, Object>() {
                  @Override
                  public Object load(Object key) {
                    return value;
                  }
                });
          }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 112.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

                && entriesDiffering().equals(other.entriesDiffering());
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return Objects.hashCode(
              entriesOnlyOnLeft(), entriesOnlyOnRight(), entriesInCommon(), entriesDiffering());
        }
    
        @Override
        public String toString() {
          if (areEqual()) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

                && entriesDiffering().equals(other.entriesDiffering());
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return Objects.hashCode(
              entriesOnlyOnLeft(), entriesOnlyOnRight(), entriesInCommon(), entriesDiffering());
        }
    
        @Override
        public String toString() {
          if (areEqual()) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

                return getKey().equals(otherPlugin.getKey());
            }
            return false;
        }
    
        /**
         * @see java.lang.Object#hashCode()
         */
        public int hashCode() {
            return getKey().hashCode();
        }
    
        /**
         * @see java.lang.Object#toString()
         */
        public String toString() {
            return "Plugin [" + getKey() + "]";
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 09 11:07:31 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

            return key.equals(that.getKey()) && value.equals(that.getValue());
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          // Cannot use key and value equivalence
          return key.hashCode() ^ value.hashCode();
        }
    
        @Override
        public V setValue(V newValue) {
          V oldValue = put(key, newValue);
          value = newValue; // only if put succeeds
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top