Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 185 for wyhash (0.11 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

    import org.gradle.cache.PersistentCache;
    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.DefaultClassPath;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.jvm.Jvm;
    import org.gradle.internal.time.Time;
    import org.gradle.internal.time.Timer;
    import sbt.internal.inc.AnalyzingCompiler;
    import sbt.internal.inc.AnalyzingCompiler$;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

    import org.gradle.internal.execution.timeout.TimeoutHandler;
    import org.gradle.internal.execution.timeout.impl.DefaultTimeoutHandler;
    import org.gradle.internal.file.FileAccessTimeJournal;
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.id.LongIdGenerator;
    import org.gradle.internal.jvm.JavaModuleDetector;
    import org.gradle.internal.jvm.inspection.JvmVersionDetector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. cmd/sts-handlers.go

    	"net/url"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/config/identity/openid"
    	"github.com/minio/minio/internal/hash/sha256"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/policy"
    	"github.com/minio/pkg/v3/wildcard"
    )
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    From most coarse grained to most fine grained, the items we will use to compare two tasks are:
    
    * Build cache keys
    * Task and Task action implementations
    ** classloader hash
    ** class name
    * Task output property names
    * Individual task property input hashes
    * Hashes of files which are part of task input properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

    import org.gradle.internal.cc.base.serialize.service
    import org.gradle.internal.cc.base.serialize.withGradleIsolate
    import org.gradle.internal.extensions.stdlib.useToRun
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter
    import org.gradle.internal.serialize.Decoder
    import org.gradle.internal.serialize.Encoder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            maybeAddClassTypesFromSignature(signature, types);
            maybeAddDependentType(types, Type.getType(desc));
            if (isAccessibleConstant(access, value)) {
                // we need to compute a hash for a constant, which is based on the name of the constant + its value
                // otherwise we miss the case where a class defines several constants with the same value, or when
                // two values are switched
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

    import org.gradle.internal.component.external.model.ModuleComponentGraphResolveState;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.hash.ChecksumService;
    import org.gradle.internal.logging.ConsoleRenderer;
    import org.gradle.internal.operations.BuildOperationContext;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. go.mod

    	github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
    	github.com/beorn7/perks v1.0.1 // indirect
    	github.com/cenkalti/backoff/v4 v4.2.1 // indirect
    	github.com/cespare/xxhash/v2 v2.2.0 // indirect
    	github.com/chai2010/gettext-go v1.0.2 // indirect
    	github.com/checkpoint-restore/go-criu/v5 v5.3.0 // indirect
    	github.com/cilium/ebpf v0.9.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/image/png/reader.go

    // Package png implements a PNG image decoder and encoder.
    //
    // The PNG specification is at https://www.w3.org/TR/PNG/.
    package png
    
    import (
    	"compress/zlib"
    	"encoding/binary"
    	"fmt"
    	"hash"
    	"hash/crc32"
    	"image"
    	"image/color"
    	"io"
    )
    
    // Color type, as per the PNG spec.
    const (
    	ctGrayscale      = 0
    	ctTrueColor      = 2
    	ctPaletted       = 3
    	ctGrayscaleAlpha = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

    import org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier
    import org.gradle.internal.component.external.model.ModuleComponentFileArtifactIdentifier
    import org.gradle.internal.hash.Hashing
    import org.gradle.test.fixtures.HttpModule
    import org.gradle.util.internal.TextUtil
    
    @CompileStatic
    class DependencyVerificationFixture {
        private final File verificationFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top