Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for hash_code (0.22 sec)

  1. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        }
    
        @Override
        public int hashCode() {
          return 0;
        }
      }
    
      static class SameIntegerInstance {
        private final Integer i;
    
        public SameIntegerInstance(Integer i) {
          this.i = checkNotNull(i);
        }
    
        @Override
        public int hashCode() {
          return i.hashCode();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

                writeClassPath(scope.exportClassPath)
            }
        }
    
        private
        fun WriteContext.writeHashCode(hashCode: HashCode?) {
            if (hashCode == null) {
                writeBoolean(false)
            } else {
                writeBoolean(true)
                writeBinary(hashCode.toByteArray())
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            fun gradleProperty(propertyName: String): String?
            fun fingerprintOf(fileCollection: FileCollectionInternal): HashCode
            fun hashCodeAndTypeOf(file: File): Pair<HashCode, FileType>
            fun hashCodeOf(file: File): HashCode?
            fun hashCodeOfDirectoryContent(file: File): HashCode?
            fun displayNameOf(fileOrDirectory: File): String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/cacheentry/ModelKey.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.cacheentry
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.util.Path
    
    
    internal
    data class ModelKey(
        val identityPath: Path?,
        val modelName: String,
        val parameterHash: HashCode?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 857 bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirBackingFieldSymbol.kt

            if (javaClass != other?.javaClass) return false
    
            other as KaFirBackingFieldSymbol
    
            return this.firSymbol == other.firSymbol
        }
    
        override fun hashCode(): Int {
            return firSymbol.hashCode()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/DefaultToolingModelParameterCarrierFactory.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.models
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.snapshot.ValueSnapshotter
    import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            override fun hashCodeAndTypeOf(file: File): Pair<HashCode, FileType> =
                fileSystemAccess.read(file.absolutePath).let { it.hash to it.type }
    
            override fun hashCodeOfDirectoryContent(file: File): HashCode = directoryChildrenNamesHash(file)
    
            override fun fingerprintOf(fileCollection: FileCollectionInternal): HashCode =
                fileCollectionFingerprinter.fingerprint(fileCollection).hash
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirDestructuringDeclarationSymbol.kt

            if (this === other) return true
            return other is KaFirDestructuringDeclarationSymbol && firSymbol == other.firSymbol
        }
    
        override fun hashCode(): Int {
            return firSymbol.hashCode()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top