Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 177 for wyhash (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/CrossBuildSignatureVerificationService.java

    import org.gradle.cache.PersistentCache;
    import org.gradle.cache.internal.InMemoryCacheDecoratorFactory;
    import org.gradle.cache.scopes.BuildScopedCacheBuilderFactory;
    import org.gradle.internal.hash.FileHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.serialize.AbstractSerializer;
    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.Encoder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		}
    		if m.f != nil {
    			m.f.Close() // best effort
    			m.f = nil
    		}
    	})
    }
    
    // hash returns the hash code for name.
    // The implementation is FNV-1a.
    // This hash function is a fixed detail of the file format.
    // It cannot be changed without also changing the file format version.
    func hash(name string) uint32 {
    	const (
    		offset32 = 2166136261
    		prime32  = 16777619
    	)
    	h := uint32(offset32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

        }
    
        private byte[] createChecksumFile(File src, String algorithm, int checksumLength) {
            HashCode hash = checksumService.hash(src, algorithm);
            String formattedHashString = hash.toString();
            try {
                return formattedHashString.getBytes("US-ASCII");
            } catch (UnsupportedEncodingException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/oauth2-jwt.md

        And be compatible with all of them at the same time.
    
    Create a utility function to hash a password coming from the user.
    
    And another utility to verify if a received password matches the hash stored.
    
    And another one to authenticate and return a user.
    
    === "Python 3.10+"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/ByteSource.java

    import com.google.common.base.Ascii;
    import com.google.common.base.Optional;
    import com.google.common.collect.ImmutableList;
    import com.google.common.hash.Funnels;
    import com.google.common.hash.HashCode;
    import com.google.common.hash.HashFunction;
    import com.google.common.hash.Hasher;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.io.BufferedInputStream;
    import java.io.ByteArrayInputStream;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
  6. src/internal/abi/type.go

    // Put it in some shared location?)
    type Type struct {
    	Size_       uintptr
    	PtrBytes    uintptr // number of (prefix) bytes in the type that can contain pointers
    	Hash        uint32  // hash of type; avoids computation in hash tables
    	TFlag       TFlag   // extra type information flags
    	Align_      uint8   // alignment of variable with this type
    	FieldAlign_ uint8   // alignment of struct field with this type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        return new Equivalence<T>() {
          @Override
          protected boolean doEquivalent(T a, T b) {
            return false;
          }
    
          @Override
          protected int doHash(T t) {
            return 0;
          }
    
          final String string = paramString(Equivalence.class, generateInt());
    
          @Override
          public String toString() {
            return string;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                final HashCode contentHash = snapshot.getHash();
                if (!seen.add(contentHash)) {
                    // Already seen an entry with the same content hash, ignore it
                    return empty();
                }
                // It's a new content hash, transform it
                return Optional.of(
                    right(() -> transformFile(original, snapshot, transformer, typeRegistry))
                );
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. cmd/object-api-putobject_test.go

    			expectedError: hash.BadDigest{ExpectedMD5: invalidMD5, CalculatedMD5: getMD5Hash(data)},
    		},
    		24: {
    			bucketName: bucket, objName: object, inputData: nilBytes, inputMeta: invalidMD5Header, inputDataSize: int64(len(nilBytes)), expectedMd5: getMD5Hash(nilBytes),
    			expectedError: hash.BadDigest{ExpectedMD5: invalidMD5, CalculatedMD5: getMD5Hash(nilBytes)},
    		},
    		25: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

    import org.gradle.internal.file.FileMetadata.AccessType
    import org.gradle.internal.file.FileType
    import org.gradle.internal.file.impl.DefaultFileMetadata
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.TestHashCodes
    import org.gradle.internal.snapshot.AbstractIncompleteFileSystemNode
    import org.gradle.internal.snapshot.DirectorySnapshot
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top