Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 528 for Hashing (0.14 sec)

  1. android/guava/src/com/google/common/collect/Multiset.java

         * {@code " x "} (space, letter x, space), followed by the count.
         */
        @Override
        String toString();
      }
    
      // Comparison and hashing
    
      /**
       * Compares the specified object with this multiset for equality. Returns {@code true} if the
       * given object is also a multiset and contains equal elements with equal counts, regardless of
       * order.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

    import static org.gradle.integtests.fixtures.executer.OutputScrapingExecutionResult.normalizeLambdaIds;
    import static org.gradle.internal.hash.Hashing.hashString;
    import static org.gradle.util.Matchers.normalizedLineSeparators;
    import static org.hamcrest.CoreMatchers.containsString;
    import static org.hamcrest.CoreMatchers.equalTo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Multiset.java

       */
      default void forEachEntry(ObjIntConsumer<? super E> action) {
        checkNotNull(action);
        entrySet().forEach(entry -> action.accept(entry.getElement(), entry.getCount()));
      }
    
      // Comparison and hashing
    
      /**
       * Compares the specified object with this multiset for equality. Returns {@code true} if the
       * given object is also a multiset and contains equal elements with equal counts, regardless of
       * order.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	// This is given to us as a suffix in `File` (e.g. "[kernel.kallsyms]_stext").
    	//
    	// Note, this public field is not persisted in the proto. For the purposes of
    	// copying / merging / hashing profiles, it is considered subsumed by `File`.
    	KernelRelocationSymbol string
    }
    
    // Location corresponds to Profile.Location
    type Location struct {
    	ID       uint64
    	Mapping  *Mapping
    	Address  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. src/crypto/rsa/rsa.go

    }
    
    // Sign signs digest with priv, reading randomness from rand. If opts is a
    // *[PSSOptions] then the PSS algorithm will be used, otherwise PKCS #1 v1.5 will
    // be used. digest must be the result of hashing the input message using
    // opts.HashFunc().
    //
    // This method implements [crypto.Signer], which is an interface to support keys
    // where the private part is kept in, for example, a hardware module. Common
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/internal/abi/type.go

    func (t *InterfaceType) NumMethod() int { return len(t.Methods) }
    
    type MapType struct {
    	Type
    	Key    *Type
    	Elem   *Type
    	Bucket *Type // internal type representing a hash bucket
    	// function for hashing keys (ptr to key, seed) -> hash
    	Hasher     func(unsafe.Pointer, uintptr) uintptr
    	KeySize    uint8  // size of key slot
    	ValueSize  uint8  // size of elem slot
    	BucketSize uint16 // size of bucket
    	Flags      uint32
    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. src/cmd/internal/obj/objfile.go

    	h := notsha256.New()
    	var tmp [14]byte
    
    	// Include the size of the symbol in the hash.
    	// This preserves the length of symbols, preventing the following two symbols
    	// from hashing the same:
    	//
    	//    [2]int{1,2} ≠ [10]int{1,2,0,0,0...}
    	//
    	// In this case, if the smaller symbol is alive, the larger is not kept unless
    	// needed.
    	binary.LittleEndian.PutUint64(tmp[:8], uint64(s.Size))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/buildid.go

    	// much larger, so the cache-footprint-to-utility ratio
    	// of binaries is much lower for binaries.
    	// Not caching the link step also makes sure that repeated "go run" at least
    	// always rerun the linker, so that they don't get too fast.
    	// (We don't want people thinking go is a scripting language.)
    	// Note also that if we start caching binaries, then we will
    	// copy the binaries out of the cache to run them, and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. src/runtime/asm_mips64x.s

    TEXT setg_gcc<>(SB),NOSPLIT,$0-0
    	MOVV	R1, g
    	JAL	runtime·save_g(SB)
    	RET
    
    TEXT runtime·abort(SB),NOSPLIT|NOFRAME,$0-0
    	MOVW	(R0), R0
    	UNDEF
    
    // AES hashing not implemented for mips64
    TEXT runtime·memhash(SB),NOSPLIT|NOFRAME,$0-32
    	JMP	runtime·memhashFallback(SB)
    TEXT runtime·strhash(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·strhashFallback(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    	}
    
    	// From here to the os.Rename call below is functionally almost equivalent to
    	// renameio.WriteToFile, with one key difference: we want to validate the
    	// contents of the file (by hashing it) before we commit it. Because the file
    	// is zip-compressed, we need an actual file — or at least an io.ReaderAt — to
    	// validate it: we can't just tee the stream as we write it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top