Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,490 for Hashing (0.2 sec)

  1. platforms/software/resources-gcs/build.gradle.kts

    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":resources"))
    
        api(libs.gcs)
        api(libs.jsr305)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":hashing"))
        implementation(project(":logging-api"))
    
        implementation(libs.commonsLang)
        implementation(libs.googleApiClient)
        implementation(libs.googleHttpClientGson)
        implementation(libs.googleHttpClient)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/RegularFileSnapshotContextHasher.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    
    public interface RegularFileSnapshotContextHasher {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 999 bytes
    - Viewed (0)
  3. platforms/software/publish/build.gradle.kts

        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":hashing"))
        api(project(":logging"))
        api(project(":logging-api"))
        api(project(":model-core"))
    
        api(libs.groovy)
        api(libs.inject)
        api(libs.jsr305)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/testFixtures/groovy/org/gradle/internal/hash/TestFileHasher.groovy

     * 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)
            }
        }
    
        @Override
        HashCode hash(File file, long length, long lastModified) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1005 bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/build.gradle.kts

        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Tools to serialize data"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(projects.hashing)
        api(projects.stdlibJavaExtensions)
    
        api(libs.guava)
        api(libs.jsr305)
    
        implementation(projects.io)
    
        implementation(libs.kryo)
        implementation(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ConfigurableNormalizer.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.internal.hash.Hasher;
    
    /**
     * A resource normalizer which is configurable.
     *
     * Allows tracking changes to its configuration.
     */
    public interface ConfigurableNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 913 bytes
    - Viewed (0)
  7. platforms/software/resources-http/build.gradle.kts

        api(project(":logging"))
        api(project(":resources"))
    
        api(libs.commonsHttpclient)
        api(libs.httpcore)
        api(libs.jsr305)
    
        implementation(project(":base-services"))
        implementation(project(":hashing"))
        implementation(project(":logging-api"))
        implementation(project(":model-core"))
    
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
        implementation(libs.guava)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/ResourceEntryFilter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.changedetection.state;
    
    import org.gradle.internal.fingerprint.hashing.ConfigurableNormalizer;
    import org.gradle.internal.hash.Hasher;
    
    /**
     * A resource entry filter supporting exact matches of values.
     */
    public interface ResourceEntryFilter extends ConfigurableNormalizer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/IgnoredPathFileCollectionFingerprinter.java

    import org.gradle.internal.execution.FileCollectionSnapshotter;
    import org.gradle.internal.execution.model.InputNormalizer;
    import org.gradle.internal.fingerprint.FileNormalizer;
    import org.gradle.internal.fingerprint.hashing.FileSystemLocationSnapshotHasher;
    
    public class IgnoredPathFileCollectionFingerprinter extends AbstractFileCollectionFingerprinter {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/BuildScriptTransformerSpec.groovy

    import org.gradle.configuration.ScriptTarget
    import org.gradle.groovy.scripts.TextResourceScriptSource
    import org.gradle.internal.Actions
    import org.gradle.internal.classpath.DefaultClassPath
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.resource.StringTextResource
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 7.5K bytes
    - Viewed (0)
Back to top