Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for doHash (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/base/FunctionalEquivalence.java

      }
    
      @Override
      protected boolean doEquivalent(F a, F b) {
        return resultEquivalence.equivalent(function.apply(a), function.apply(b));
      }
    
      @Override
      protected int doHash(F a) {
        return resultEquivalence.hash(function.apply(a));
      }
    
      @Override
      public boolean equals(@Nullable Object obj) {
        if (obj == this) {
          return true;
        }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Feb 13 17:34:21 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/PairwiseEquivalence.java

          if (!elementEquivalence.equivalent(iteratorA.next(), iteratorB.next())) {
            return false;
          }
        }
    
        return !iteratorA.hasNext() && !iteratorB.hasNext();
      }
    
      @Override
      protected int doHash(Iterable<T> iterable) {
        int hash = 78721;
        for (T element : iterable) {
          hash = hash * 24943 + elementEquivalence.hash(element);
        }
        return hash;
      }
    
      @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Jun 04 13:03:16 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/base/PairwiseEquivalence.java

          if (!elementEquivalence.equivalent(iteratorA.next(), iteratorB.next())) {
            return false;
          }
        }
    
        return !iteratorA.hasNext() && !iteratorB.hasNext();
      }
    
      @Override
      protected int doHash(Iterable<T> iterable) {
        int hash = 78721;
        for (T element : iterable) {
          hash = hash * 24943 + elementEquivalence.hash(element);
        }
        return hash;
      }
    
      @Override
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Jun 04 13:03:16 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  4. guava-testlib/test/com/google/common/testing/EquivalenceTesterTest.java

        }
    
        @Override
        protected boolean doEquivalent(Object a, Object b) {
          return equivalentExpectations.get(a, b);
        }
    
        @Override
        protected int doHash(Object object) {
          return hashExpectations.get(object);
        }
    
        void checkRecording() {
          checkState(equivalentExpectations == null && hashExpectations == null);
        }
      }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 27 16:19:35 GMT 2024
    - 8.4K bytes
    - Click Count (0)
  5. android/guava-testlib/test/com/google/common/testing/EquivalenceTesterTest.java

        }
    
        @Override
        protected boolean doEquivalent(Object a, Object b) {
          return equivalentExpectations.get(a, b);
        }
    
        @Override
        protected int doHash(Object object) {
          return hashExpectations.get(object);
        }
    
        void checkRecording() {
          checkState(equivalentExpectations == null && hashExpectations == null);
        }
      }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Fri Dec 27 16:19:35 GMT 2024
    - 8.4K bytes
    - Click Count (0)
  6. buildSrc/src/main/kotlin/Osgi.kt

        setClasspath(osgi.compileClasspath + sourceSets["main"].compileClasspath)
        bnd(*bndProperties)
      }
      // Call the convention when the task has finished, to modify the jar to contain OSGi metadata.
      jarTask.doLast {
        bundleExtension.buildAction().execute(this)
      }
    }
    
    fun Project.applyOsgiMultiplatform(vararg bndProperties: String) {
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Aug 01 08:06:31 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  7. build-logic/buildquality/src/main/kotlin/gradlebuild.verify-build-environment.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import java.nio.charset.Charset
    
    tasks.register("verifyIsProductionBuildEnvironment") {
        doLast {
            val systemCharset = Charset.defaultCharset().name()
            assert(systemCharset == "UTF-8") {
                "Platform encoding must be UTF-8. Is currently $systemCharset. Set -Dfile.encoding=UTF-8"
            }
        }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Feb 01 09:48:30 GMT 2021
    - 941 bytes
    - Click Count (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts

    wrapperUpdateTask("rc", "release-candidate")
    wrapperUpdateTask("current", "current")
    
    tasks.withType<Wrapper>().configureEach {
        val jvmOpts = "-Dfile.encoding=UTF-8"
        inputs.property("jvmOpts", jvmOpts)
        doLast {
            val optsEnvVar = "DEFAULT_JVM_OPTS"
            scriptFile.writeText(scriptFile.readText().replace("$optsEnvVar='", "$optsEnvVar='$jvmOpts "))
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Sep 17 08:58:33 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  9. build-logic/build.gradle.kts

    }
    
    val clean by tasks.registering {
        val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties")
        val rootPropertiesFile = layout.projectDirectory.file("../gradle.properties")
        doLast {
            val buildLogicProperties = readProperties(buildLogicPropertiesFile.asFile)
            val rootProperties = readProperties(rootPropertiesFile.asFile)
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Mar 14 02:17:00 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  10. build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

        val repoDir = localRepository // Prevent capturing the Gradle script instance for configuration cache compatibility
        // This should be unified with publish-public-libraries if possible
        doLast {
            repoDir.get().asFileTree.matching { include("**/maven-metadata.xml") }.forEach {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Jul 02 12:28:02 GMT 2025
    - 6.1K bytes
    - Click Count (0)
Back to Top