Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestFileHasher (0.12 sec)

  1. platforms/core-runtime/base-services/src/testFixtures/groovy/org/gradle/internal/hash/TestFileHasher.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.hash
    
    class TestFileHasher implements FileHasher {
        @Override
        HashCode hash(File file) {
            try {
                return Hashing.hashFile(file)
            } catch (IOException e) {
                throw new UncheckedIOException(e)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1005 bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatisticsTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl
    
    import org.gradle.api.internal.cache.StringInterner
    import org.gradle.internal.hash.TestFileHasher
    import org.gradle.test.fixtures.file.CleanupTestDirectory
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top