Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 182 for hash_code (0.16 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestOutputEvent.java

            }
            if (!message.equals(that.message)) {
                return false;
            }
    
            return true;
        }
    
        @Override
        public int hashCode() {
            int result = destination.hashCode();
            result = 31 * result + message.hashCode();
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/EnumValueSnapshot.java

            }
    
            EnumValueSnapshot other = (EnumValueSnapshot) obj;
            return className.equals(other.className) && name.equals(other.name);
        }
    
        @Override
        public int hashCode() {
            return className.hashCode() ^ name.hashCode();
        }
    
        @Override
        public String toString() {
            return className + "." + name;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:43 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPackageSymbol.kt

            if (fqName != other.fqName) return false
            if (token != other.token) return false
    
            return true
        }
    
        override fun hashCode(): Int {
            var result = fqName.hashCode()
            result = 31 * result + token.hashCode()
            return result
        }
    }
    
    class KtPackage(
        manager: PsiManager,
        private val fqName: FqName,
        private val scope: GlobalSearchScope
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val fileSystemInputs: FileCollectionInternal,
            val fileSystemInputsFingerprint: HashCode
        ) : ConfigurationCacheFingerprint()
    
        data class InputFile(
            val file: File,
            val hash: HashCode
        ) : ConfigurationCacheFingerprint()
    
        data class DirectoryChildren(
            val file: File,
            val hash: HashCode
        ) : ConfigurationCacheFingerprint()
    
        data class InputFileSystemEntry(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelVersionParser.java

                }
                DefaultVersion that = (DefaultVersion) o;
                return delegate.equals(that.delegate);
            }
    
            @Override
            public int hashCode() {
                return delegate.hashCode();
            }
    
            @Override
            public String asString() {
                return delegate.toString();
            }
    
            @Override
            public String toString() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

        }
    
    
    // This value is returned from directoryChildrenNamesHash when its argument doesn't exist or is not a directory.
    private
    val NON_DIRECTORY_CHILDREN_NAMES_HASH = HashCode.fromBytes(byteArrayOf(0, 0, 0, 0))
    
    
    fun directoryChildrenNamesHash(file: File): HashCode {
        return file.list()?.let { entries ->
            val hasher = Hashing.newHasher()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestClassRunInfo.java

            }
    
            DefaultTestClassRunInfo that = (DefaultTestClassRunInfo) o;
    
            return testClassName.equals(that.testClassName);
        }
    
        @Override
        public int hashCode() {
            return testClassName.hashCode();
        }
    
        @Override
        public String toString() {
            return "DefaultTestClassRunInfo(" + testClassName + ')';
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/StreamHasher.java

        /**
         * Returns the hash of the given input stream. The stream will not be closed by the method.
         */
        HashCode hash(InputStream inputStream);
    
        /**
         * Returns the hash of the given input stream while copying the data to the output stream.
         * The method will not close either stream.
         */
        HashCode hashCopy(InputStream inputStream, OutputStream outputStream) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top