Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 301 for Hashing (0.6 sec)

  1. platforms/core-configuration/configuration-cache/build.gradle.kts

        implementation(projects.flowServices)
        implementation(projects.functional)
        implementation(projects.graphSerialization)
        implementation(projects.guavaSerializationCodecs)
        implementation(projects.hashing)
        implementation(projects.inputTracking)
        implementation(projects.instrumentationAgentServices)
        implementation(projects.logging)
        implementation(projects.persistentCache)
        implementation(projects.problemsApi)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/retry/retry.go

    		HostSelectionRetryMaxAttempts: 5,
    	}
    	return &policy
    }
    
    // DefaultConsistentHashPolicy gets a copy of the default retry policy without previous host predicate.
    // When Consistent Hashing is enabled, we don't want to use other hosts during retries.
    func DefaultConsistentHashPolicy() *route.RetryPolicy {
    	return defaultPolicy()
    }
    
    // ConvertPolicy converts the given Istio retry policy to an Envoy policy.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_update_uuid.go

    	// RFC 4122 conformance (see RFC 4122 Sections 4.2.2, 4.1.3). We
    	// want the "version" of this UUID to appear as 'hashed' as opposed
    	// to random or time-based.  This is something of a fiction since
    	// we're not actually hashing using MD5 or SHA1, but it seems better
    	// to use this UUID flavor than any of the others. This is similar
    	// to how other linkers handle this (for example this code in lld:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractFileSystemAccessTest.groovy

                return delegate.hash(file, length, lastModified)
            }
    
            private void checkIfAllowed() {
                if (!hashingAllowed) {
                    throw new UnsupportedOperationException("Hashing is currently not allowed")
                }
            }
    
            void allowHashing(boolean allowed) {
                this.hashingAllowed = allowed
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.wrapper.WrapperExecutor
    import org.junit.Rule
    import spock.lang.Shared
    
    import static org.gradle.internal.hash.Hashing.sha256
    
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = NOT_EMBEDDED_REASON)
    @LocalOnly(because = "https://github.com/gradle/gradle-private/issues/3799")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/DefaultVersionControlRepositoryFactory.java

    import java.util.Set;
    import java.util.function.Supplier;
    
    import static org.gradle.api.internal.cache.CacheConfigurationsInternal.DEFAULT_MAX_AGE_IN_DAYS_FOR_CREATED_CACHE_ENTRIES;
    import static org.gradle.internal.hash.Hashing.hashString;
    import static org.gradle.internal.time.TimestampSuppliers.daysAgo;
    
    public class DefaultVersionControlRepositoryFactory implements VersionControlRepositoryConnectionFactory, Stoppable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/build.gradle.kts

        api(project(":enterprise-operations"))
        api(project(":execution"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":files"))
        api(project(":functional"))
        api(project(":hashing"))
        api(project(":logging"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":problems-api"))
        api(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/go/types/context.go

    //  - short-circuit instantiation cycles
    //
    // For the latter purpose, we must always have a context during instantiation,
    // whether or not it is supplied by the user. For both purposes, it must be the
    // case that hashing a pointer-identical type produces consistent results
    // (somewhat obviously).
    //
    // However, neither of these purposes require that our hash is perfect, and so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/build.gradle.kts

        api(project(":build-operations"))
        api(project(":concurrent"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":hashing"))
        api(project(":internal-testing")) {
            because("Part of the public API")
        }
        api(project(":stdlib-java-extensions"))
        api(project(":jvm-services")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/device_target.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_QUANTIZATION_DEVICE_TARGET_H_
    
    #include <functional>
    #include <optional>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/Hashing.h"
    #include "llvm/ADT/MapVector.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringMap.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/ErrorHandling.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top