- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 487 for HASH (0.02 sec)
-
src/main/resources/fess_label_pt_BR.properties
labels.crawler=Rastreador labels.crudMode=Modo labels.errorCountMax=Número máximo de erros labels.errorCountMin=Número mínimo de erros labels.facet=Faceta labels.geo=Geo labels.groups=Grupos labels.hash=Hash labels.kuromojiFile=Arquivo Kuromoji labels.maxSize=Tamanho máximo labels.order=Ordem labels.purgeSuggestSearchLogDay=Excluir informações de sugestão anteriores labels.q=Consulta labels.roles=Funções
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.1K bytes - Viewed (0) -
cmd/erasure-metadata-utils.go
// You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "encoding/binary" "errors" "hash/crc32" "github.com/minio/pkg/v3/sync/errgroup" ) // counterMap type adds GetValueWithQuorum method to a map[T]int used to count occurrences of values of type T. type counterMap[T comparable] map[T]int
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java
@BeforeEach void setUp() { // Initialize test keys sessionKey = new byte[16]; // 128-bit session key preauthIntegrity = new byte[64]; // Preauth integrity hash new SecureRandom().nextBytes(sessionKey); new SecureRandom().nextBytes(preauthIntegrity); } @Test @DisplayName("Should derive signing key for SMB 3.0.0 dialect")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
cmd/update.go
return errors.New("update already in progress") } defer updateInProgress.Store(0) transport := getUpdateTransport(30 * time.Second) opts := selfupdate.Options{ Hash: crypto.SHA256, Checksum: sha256Sum, } if err := opts.CheckPermissions(); err != nil { return AdminError{ Code: AdminUpdateApplyFailure,
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Doubles.java
@SuppressWarnings("AndroidJdkLibsChecker") public static final int BYTES = Double.BYTES; /** * Returns a hash code for {@code value}; obsolete alternative to {@link Double#hashCode(double)}. * * @param value a primitive {@code double} value * @return a hash code for the value */ @InlineMe(replacement = "Double.hashCode(value)") public static int hashCode(double value) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.7K bytes - Viewed (0) -
src/archive/zip/writer_test.go
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package zip import ( "bytes" "compress/flate" "encoding/binary" "fmt" "hash/crc32" "io" "io/fs" "math/rand" "os" "strings" "testing" "testing/fstest" "time" ) // TODO(adg): a more sophisticated test suite type WriteTest struct { Name string
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jan 28 04:20:09 UTC 2025 - 14.4K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
* * @since 10.0 */ public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2); /** * Returns a hash code for {@code value}; obsolete alternative to {@link Long#hashCode(long)}. * * @param value a primitive {@code long} value * @return a hash code for the value */ @InlineMe(replacement = "Long.hashCode(value)") public static int hashCode(long value) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
docs/bucket/notifications/README.md
will now enable bucket event notifications on a bucket named `images`. Whenever a JPEG image is created/overwritten, a new key is added or an existing key is updated in the Redis hash configured above. When an existing object is deleted, the corresponding key is deleted from the Redis hash. Thus, the rows in the Redis hash, reflect the `.jpg` objects in the `images` bucket. To configure this bucket notification, we need the ARN printed by MinIO in the previous step. Additional information...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 84.2K bytes - Viewed (0) -
api/go1.14.txt
pkg go/doc, type Type struct, Examples []*Example pkg hash/maphash, func MakeSeed() Seed pkg hash/maphash, method (*Hash) BlockSize() int pkg hash/maphash, method (*Hash) Reset() pkg hash/maphash, method (*Hash) Seed() Seed pkg hash/maphash, method (*Hash) SetSeed(Seed) pkg hash/maphash, method (*Hash) Size() int pkg hash/maphash, method (*Hash) Sum([]uint8) []uint8 pkg hash/maphash, method (*Hash) Sum64() uint64
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
assertNotNull(hash2); assertEquals(64, hash2.length); assertNotEquals(new String(hash1), new String(hash2), "Chained hash should differ"); } @Test @DisplayName("createEncryptionContext rejects when SMB2/3 not negotiated") void createEncryptionContext_rejects_noNegotiation() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0)