Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 130 for memhash (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authorizationconfig/metrics/metrics.go

    	apiServerIDHash := getHash(apiServerID)
    	authorizationConfigAutomaticReloadsTotal.WithLabelValues("failure", apiServerIDHash).Inc()
    	authorizationConfigAutomaticReloadLastTimestampSeconds.WithLabelValues("failure", apiServerIDHash).SetToCurrentTime()
    }
    
    func RecordAuthorizationConfigAutomaticReloadSuccess(apiServerID string) {
    	apiServerIDHash := getHash(apiServerID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:20:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    	Name() string
    
    	// KeyHash returns the key hash.
    	KeyHash() uint32
    
    	// Verify reports whether sig is a valid signature of msg.
    	Verify(msg, sig []byte) bool
    }
    
    // A Signer signs messages using a specific key.
    type Signer interface {
    	// Name returns the server name associated with the key.
    	Name() string
    
    	// KeyHash returns the key hash.
    	KeyHash() uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/authenticationconfig/metrics/metrics.go

    	apiServerIDHash := getHash(apiServerID)
    	authenticationConfigAutomaticReloadsTotal.WithLabelValues("failure", apiServerIDHash).Inc()
    	authenticationConfigAutomaticReloadLastTimestampSeconds.WithLabelValues("failure", apiServerIDHash).SetToCurrentTime()
    }
    
    func RecordAuthenticationConfigAutomaticReloadSuccess(apiServerID string) {
    	apiServerIDHash := getHash(apiServerID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/crypto/crypto.go

    func (h Hash) Size() int {
    	if h > 0 && h < maxHash {
    		return int(digestSizes[h])
    	}
    	panic("crypto: Size of unknown hash function")
    }
    
    var hashes = make([]func() hash.Hash, maxHash)
    
    // New returns a new hash.Hash calculating the given hash function. New panics
    // if the hash function is not linked into the binary.
    func (h Hash) New() hash.Hash {
    	if h > 0 && h < maxHash {
    		f := hashes[h]
    		if f != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics.go

    		legacyregistry.MustRegister(encryptionConfigAutomaticReloadLastTimestampSeconds)
    	})
    }
    
    func RecordEncryptionConfigAutomaticReloadFailure(apiServerID string) {
    	apiServerIDHash := getHash(apiServerID)
    	encryptionConfigAutomaticReloadsTotal.WithLabelValues("failure", apiServerIDHash).Inc()
    	deprecatedEncryptionConfigAutomaticReloadFailureTotal.WithLabelValues(apiServerIDHash).Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/RelationshipTester.java

        int itemHash = equivalence.hash(item);
        int relatedHash = equivalence.hash(related);
        assertWithTemplate(
            "the $HASH ("
                + itemHash
                + ") of $ITEM must be equal to the $HASH ("
                + relatedHash
                + ") of $OTHER",
            itemInfo,
            relatedInfo,
            itemHash == relatedHash);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/ResourceMapperTest.groovy

            def lastModified = new DateTime(new Date())
            def md5hash = '6b53d334d6959ff26af1a376c0fbd8ae'
            def contentType = 'application/octet-stream'
            def storageObject = new StorageObject()
            storageObject.setUpdated(lastModified)
            storageObject.setMd5Hash(md5hash)
            storageObject.setSize(BigInteger.TEN)
            storageObject.setContentType(contentType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutorTest.groovy

                def snapshot = new StringValueSnapshot(it.toString())
                def hasher = Hashing.newHasher()
                snapshot.appendToHasher(hasher)
                def keyHash = hasher.hash()
                1 * store.put(keyHash, _)
                snapshot
            }
            1 * store.getIfPresent(_) >> null
            0 * _
            result.length == 6
        }
    
        void "validates entries on cache hit"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RegularFileSnapshot.java

        }
    
        @Override
        public FileType getType() {
            return FileType.RegularFile;
        }
    
        @Override
        public HashCode getHash() {
            return contentHash;
        }
    
        // Used by the Maven caching client. Do not remove
        public FileMetadata getMetadata() {
            return metadata;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

            return 0;
          } else {
            int old = values[lastKnownIndex];
            values[lastKnownIndex] = count;
            return old;
          }
        }
      }
    
      private static int getHash(long entry) {
        return (int) (entry >>> 32);
      }
    
      /** Returns the index, or UNSET if the pointer is "null" */
      private static int getNext(long entry) {
        return (int) entry;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
Back to top