Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for hash_code (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKeyTest.kt

    import org.gradle.internal.buildoption.Option
    import org.gradle.internal.buildtree.BuildModelParameters
    import org.gradle.internal.buildtree.RunTasksRequirements
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.util.internal.EncryptionAlgorithm
    import org.hamcrest.CoreMatchers.equalTo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

    import org.gradle.initialization.ClassLoaderScopeRegistryListenerManager
    import org.gradle.internal.buildtree.BuildTreeLifecycleListener
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.io.Closeable
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

            Hashing.md5().newHasher().apply {
                putCacheKeyComponents()
            }.hash().toCompactString()
        }
    
        override fun toString() = string
    
        override fun hashCode(): Int = string.hashCode()
    
        override fun equals(other: Any?): Boolean = (other as? ConfigurationCacheKey)?.string == string
    
        private
        fun Hasher.putCacheKeyComponents() {
            putString(GradleVersion.current().version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirDynamicType.kt

        override val abbreviatedType: KaUsualClassType?
            get() = withValidityAssertion { null }
    
        override fun equals(other: Any?) = typeEquals(other)
        override fun hashCode() = typeHashcode()
        override fun toString() = coneType.renderForDebugging()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirCapturedType.kt

        }
    
        override val abbreviatedType: KaUsualClassType?
            get() = withValidityAssertion { null }
    
        override fun equals(other: Any?) = typeEquals(other)
        override fun hashCode() = typeHashcode()
        override fun toString() = coneType.renderForDebugging()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirAnonymousObjectSymbol.kt

            throw CanNotCreateSymbolPointerForLocalLibraryDeclarationException(this::class)
        }
    
        override fun equals(other: Any?): Boolean = symbolEquals(other)
        override fun hashCode(): Int = symbolHashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirIntersectionType.kt

        override val abbreviatedType: KaUsualClassType?
            get() = withValidityAssertion { null }
    
        override fun equals(other: Any?) = typeEquals(other)
        override fun hashCode() = typeHashcode()
        override fun toString() = coneType.renderForDebugging()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDefaultPropertySetterSymbol.kt

                ?: KaFe10NeverRestoringSymbolPointer()
        }
    
        override fun equals(other: Any?): Boolean = isEqualTo(other)
        override fun hashCode(): Int = calculateHashCode()
    
        class KaDefaultValueParameterSymbol(
            private val propertyPsi: KtProperty,
            val descriptor: ValueParameterDescriptor?,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    import org.gradle.internal.serialize.graph.readNonNull
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.isolation.Isolatable
    import org.gradle.internal.snapshot.impl.BooleanValueSnapshot
    import org.gradle.internal.snapshot.impl.FileValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

            }
            return false;
          }
    
          @Override
          public int hashCode() {
            K k = getKey();
            V v = getValue();
            return ((k == null) ? 0 : k.hashCode()) ^ ((v == null) ? 0 : v.hashCode());
          }
    
          @Override
          public String toString() {
            return getKey() + "=" + getValue();
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top