Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,606 for Hashing (0.21 sec)

  1. overview.html

    <body>
    
    Guava is a set of core Java libraries from Google that includes new collection
    types (such as multimap and multiset), immutable collections, a graph library,
    and utilities for concurrency, I/O, hashing, primitives, strings, and more! It
    is widely used on most Java projects within Google, and widely used by many
    other companies as well.
    
    
    <p>For more information, see <a href="https://guava.dev/">guava.dev</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 429 bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasher.java

     */
    
    package org.gradle.api.internal.changedetection.state;
    
    import org.gradle.internal.file.FileType;
    import org.gradle.internal.fingerprint.LineEndingSensitivity;
    import org.gradle.internal.fingerprint.hashing.FileSystemLocationSnapshotHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.io.IoSupplier;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/FallbackHandlingResourceHasher.java

    package org.gradle.api.internal.changedetection.state;
    
    import org.gradle.api.internal.file.archive.ZipEntry;
    import org.gradle.internal.fingerprint.hashing.RegularFileSnapshotContext;
    import org.gradle.internal.fingerprint.hashing.ResourceHasher;
    import org.gradle.internal.fingerprint.hashing.ZipEntryContext;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.io.IoFunction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. platforms/software/resources/build.gradle.kts

            "OperatorPrecedence", // 9 occurrences
            "UndefinedEquals", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":build-operations"))
        api(project(":hashing"))
        api(project(":base-services"))
        api(project(":messaging"))
        api(project(":native"))
    
        api(libs.jsr305)
    
        implementation(project(":files"))
        implementation(project(":logging"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 970 bytes
    - Viewed (0)
  5. cmd/erasure-sets_test.go

    		{"a/b/c/", 159},
    		{"/a/b/c", 96},
    		{string([]byte{0xff, 0xfe, 0xfd}), 147},
    	}
    
    	// Tests hashing order to be consistent.
    	for i, testCase := range testCases {
    		if sipHashElement := hashKey("SIPMOD", testCase.objectName, 200, testUUID); sipHashElement != testCase.sipHash {
    			t.Errorf("Test case %d: Expected \"%v\" but failed \"%v\"", i+1, testCase.sipHash, sipHashElement)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.HttpModule
    import org.gradle.test.fixtures.ModuleArtifact
    import org.gradle.test.fixtures.ResettableExpectations
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java

                publishChecksum(destination, content, Hashing.sha1());
                publishChecksum(destination, content, Hashing.md5());
                if (!ExternalResourceResolver.disableExtraChecksums()) {
                    publishPossiblyUnsupportedChecksum(destination, content, Hashing.sha256());
                    publishPossiblyUnsupportedChecksum(destination, content, Hashing.sha512());
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/UrlValidator.groovy

    import org.gradle.testing.internal.util.RetryUtil
    import org.gradle.util.internal.TextUtil
    import org.junit.Assert
    
    import static org.gradle.internal.hash.Hashing.hashFile
    import static org.gradle.internal.hash.Hashing.hashStream
    
    class UrlValidator {
    
        static void available(String theUrl, String application = "service", int timeout = 30) {
            URL url = new URL(theUrl)
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. internal/logger/target/kafka/kafka_scram_client_contrib.go

    // KafkaSHA256 is a function that returns a crypto/sha256 hasher and should be used
    // to create Client objects configured for SHA-256 hashing.
    var KafkaSHA256 scram.HashGeneratorFcn = sha256.New
    
    // KafkaSHA512 is a function that returns a crypto/sha512 hasher and should be used
    // to create Client objects configured for SHA-512 hashing.
    var KafkaSHA512 scram.HashGeneratorFcn = sha512.New
    
    // XDGSCRAMClient implements the client-side of an authentication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 09 04:04:01 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/UrlRepositoryDescriptor.java

    import org.gradle.api.internal.artifacts.repositories.resolver.ResourcePattern;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.net.URI;
    import java.util.List;
    import java.util.function.Consumer;
    
    public abstract class UrlRepositoryDescriptor extends RepositoryDescriptor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top