Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 693 for hash_code (0.19 sec)

  1. android/guava/src/com/google/common/reflect/Types.java

              .append('>')
              .toString();
        }
    
        @Override
        public int hashCode() {
          return (ownerType == null ? 0 : ownerType.hashCode())
              ^ argumentsList.hashCode()
              ^ rawType.hashCode();
        }
    
        @Override
        public boolean equals(@CheckForNull Object other) {
          if (!(other instanceof ParameterizedType)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/listener/ClosureBackedMethodInvocationDispatch.java

            }
            if (!methodName.equals(that.methodName)) {
                return false;
            }
    
            return true;
        }
    
        @Override
        public int hashCode() {
            int result = methodName.hashCode();
            result = 31 * result + closure.hashCode();
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 12:43:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemId.java

            if (!id.equals(that.getName())) {
                return false;
            }
            return parent.equals(that.getGroup());
        }
    
        @Override
        public int hashCode() {
            int result = id.hashCode();
            result = 31 * result + parent.hashCode();
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:38:33 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractValueProcessor.java

            }
            if (value instanceof Isolatable) {
                return visitor.fromIsolatable((Isolatable<?>) value);
            }
            if (value instanceof HashCode) {
                return visitor.hashCode((HashCode) value);
            }
            if (value instanceof ImplementationValue) {
                ImplementationValue implementationValue = (ImplementationValue) value;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:08:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_cache.go

    			Namespace: svc.Attributes.Namespace,
    		}.HashCode())
    		for _, alias := range svc.Attributes.Aliases {
    			configs = append(configs, model.ConfigKey{Kind: kind.ServiceEntry, Name: alias.Hostname.String(), Namespace: alias.Namespace}.HashCode())
    		}
    	}
    	for _, vs := range r.VirtualServices {
    		for _, cfg := range model.VirtualServiceDependencies(vs) {
    			configs = append(configs, cfg.HashCode())
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/Key.java

            return type.equals(that.type) && Objects.equals(qualifier, that.qualifier);
        }
    
        @Override
        public int hashCode() {
            int hashCode = hash;
            if (hashCode == 0) {
                hash = 31 * type.hashCode() + (qualifier == null ? 0 : qualifier.hashCode());
            }
            return hash;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Tuple3.java

        }
    
        @Override
        public int hashCode() {
            final int prime = 31;
            int result = 1;
            result = prime * result + ((value1 == null) ? 0 : value1.hashCode());
            result = prime * result + ((value2 == null) ? 0 : value2.hashCode());
            result = prime * result + ((value3 == null) ? 0 : value3.hashCode());
            return result;
        }
    
        @Override
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCircularReferenceIntegrationTest.groovy

                    Circular(String a, String z) {
                        this.a = a
                        this.z = z
                    }
    
                    int hashCode() {
                        assert a != null && z != null
                        a.hashCode() ^ z.hashCode()
                    }
    
                    boolean equals(Object other) {
                        assert a != null && z != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

            }
    
            @Override
            public Isolatable<?> shortValue(Short value) {
                return new ShortValueSnapshot(value);
            }
    
            @Override
            public Isolatable<?> hashCode(HashCode value) {
                return new HashCodeSnapshot(value);
            }
    
            @Override
            public Isolatable<?> enumValue(Enum<?> value) {
                return new IsolatedEnumValueSnapshot(value);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractFileSystemAccessTest.groovy

            AllowingHasher(FileHasher delegate) {
                this.delegate = delegate
            }
    
            @Override
            HashCode hash(File file) {
                checkIfAllowed()
                return delegate.hash(file)
            }
    
            @Override
            HashCode hash(File file, long length, long lastModified) {
                checkIfAllowed()
                return delegate.hash(file, length, lastModified)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top