Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 370 for Hashing (0.27 sec)

  1. subprojects/core/src/main/java/org/gradle/cache/internal/BuildScopeCacheDir.java

    import org.gradle.api.internal.SettingsInternal;
    import org.gradle.initialization.GradleUserHomeDirProvider;
    import org.gradle.initialization.layout.BuildLayout;
    import org.gradle.internal.hash.Hashing;
    
    import java.io.File;
    
    public class BuildScopeCacheDir {
        public static final String UNDEFINED_BUILD = "undefined-build/";
    
        private final File cacheDir;
    
        public BuildScopeCacheDir(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/DefaultToolingModelParameterCarrierFactory.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.models
    
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.snapshot.ValueSnapshotter
    import org.gradle.tooling.internal.adapter.ProtocolToModelAdapter
    import org.gradle.tooling.internal.consumer.connection.ToolingParameterProxy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestBuildCache.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import org.gradle.caching.local.internal.BuildCacheTempFileStore
    import org.gradle.caching.local.internal.DirectoryBuildCacheServiceFactory
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.file.TestFile
    
    class TestBuildCache {
        private final TestFile cacheDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MissingFileSnapshot.java

    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hashing;
    
    import java.util.Optional;
    
    /**
     * A snapshot of a missing file or a broken symbolic link or a named pipe.
     */
    public class MissingFileSnapshot extends AbstractFileSystemLocationSnapshot implements FileSystemLeafSnapshot {
        private static final HashCode SIGNATURE = Hashing.signature(MissingFileSnapshot.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
  10. guava/src/com/google/common/collect/RegularImmutableMultiset.java

        ImmutableEntry<E>[] entryArray = new ImmutableEntry[distinct];
        if (distinct == 0) {
          return new RegularImmutableMultiset<>(entryArray, EMPTY_ARRAY, 0, 0, ImmutableSet.of());
        }
        int tableSize = Hashing.closedTableSize(distinct, MAX_LOAD_FACTOR);
        int mask = tableSize - 1;
        @SuppressWarnings({"unchecked", "rawtypes"})
        @Nullable
        ImmutableEntry<E>[] hashTable = new @Nullable ImmutableEntry[tableSize];
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top