Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 137 for rthash (0.15 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/LambdaImplementationSnapshot.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    
    import javax.annotation.Nullable;
    import java.lang.invoke.SerializedLambda;
    import java.util.Objects;
    
    public class LambdaImplementationSnapshot extends ImplementationSnapshot {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MissingFileSnapshot.java

    package org.gradle.internal.snapshot;
    
    import com.google.common.collect.Interner;
    import org.gradle.internal.file.FileMetadata.AccessType;
    import org.gradle.internal.file.FileType;
    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.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/DefaultResourceSnapshotterCacheService.java

        }
    
        private static HashCode resourceHashCacheKey(HashCode contentHash, HashCode configurationHash) {
            Hasher hasher = Hashing.newHasher();
            hasher.putHash(configurationHash);
            hasher.putHash(contentHash);
            return hasher.hash();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 13:47:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/runtime/map_faststr.go

    		}
    		return unsafe.Pointer(&zeroVal[0])
    	}
    dohash:
    	hash := t.Hasher(noescape(unsafe.Pointer(&ky)), uintptr(h.hash0))
    	m := bucketMask(h.B)
    	b := (*bmap)(add(h.buckets, (hash&m)*uintptr(t.BucketSize)))
    	if c := h.oldbuckets; c != nil {
    		if !h.sameSizeGrow() {
    			// There used to be half as many buckets; mask down one more power of two.
    			m >>= 1
    		}
    		oldb := (*bmap)(add(c, (hash&m)*uintptr(t.BucketSize)))
    		if !evacuated(oldb) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/crypto/ed25519/ed25519_test.go

    	// and verify something.
    	sig, err = private.Sign(nil, hash[:], &Options{Hash: crypto.SHA512, Context: "123"})
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := VerifyWithOptions(public, hash[:], sig, &Options{Hash: crypto.SHA512, Context: "123"}); err != nil {
    		t.Errorf("valid signature rejected: %v", err)
    	}
    	if err := VerifyWithOptions(public, hash[:], sig, &Options{Hash: crypto.SHA512, Context: "321"}); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsResultFilePropertyVisitState.java

                CurrentFileCollectionFingerprint fingerprint = entry.getValue();
    
                state.propertyName = entry.getKey();
                state.propertyHash = fingerprint.getHash();
                state.fingerprints = fingerprint.getFingerprints();
    
                visitor.preProperty(state);
                fingerprint.getSnapshot().accept(state);
                visitor.postProperty();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    				var host string
    				if restConfig != nil {
    					host = restConfig.Host
    				}
    				crHash := strings.Join([]string{crName, crNamespace, componentName, host}, "-")
    				oh := object.NewK8sObject(&unstructured.Unstructured{Object: unsObj}, nil, nil).Hash()
    				cache.RemoveObject(crHash, oh)
    				return true
    			}
    			return false
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/cmd/covdata/metamerge.go

    	}
    
    	if pcombine {
    		// If the merge is running in "combine programs" mode, then hash
    		// the function and look it up in the package ftab to see if we've
    		// encountered it before. If we haven't, then register it with the
    		// meta-data builder.
    		fnhash := encodemeta.HashFuncDesc(fd)
    		gfidx, ok := mm.p.ftab[fnhash]
    		if !ok {
    			// We haven't seen this function before, need to add it to
    			// the meta data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics_test.go

    			keyID := rand.String(32)
    			apiServerID := rand.String(32)
    			key := metricLabels{
    				transformationType: rand.String(32),
    				providerName:       rand.String(32),
    				keyIDHash:          getHash(keyID),
    				apiServerIDHash:    getHash(apiServerID),
    			}
    			RecordKeyID(key.transformationType, key.providerName, keyID, apiServerID)
    		}()
    	}
    	wg.Wait()
    
    	validMetrics := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                            break;
                        case "email":
                            attributes.put("email", jsonParser.getText());
                            break;
                        case "at_hash":
                            attributes.put("at_hash", jsonParser.getText());
                            break;
                        case "email_verified":
                            attributes.put("email_verified", jsonParser.getText());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top