- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 201 for compris (0.12 sec)
-
src/cmd/asm/internal/asm/testdata/riscv64.s
VRGATHERVX X10, V2, V3 // d7412532 VRGATHERVX X10, V2, V0, V3 // d7412530 VRGATHERVI $16, V2, V3 // d7312832 VRGATHERVI $16, V2, V0, V3 // d7312830 // 31.16.5: Vector Compress Instruction VCOMPRESSVM V1, V2, V3 // d7a1205e // 31.16.6: Whole Vector Register Move VMV1RV V2, V1 // d730209e VMV2RV V12, V10 // 57b5c09e VMV4RV V8, V4 // 57b2819e
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed May 21 14:19:19 UTC 2025 - 49.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Sets.java
Comparator<? super E> comparator) { return new TreeSet<>(checkNotNull(comparator)); } /** * Creates an empty {@code Set} that uses identity to determine equality. It compares object * references, instead of calling {@code equals}, to determine whether a provided object matches * an element in the set. For example, {@code contains} returns {@code false} when passed an
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0) -
cmd/test-utils_test.go
if r == 0 { r = reseed() } // constants from Numerical Recipes r = r*1664525 + 1013904223 randN = r randmu.Unlock() return strconv.Itoa(int(1e9 + r%1e9))[1:] } // isSameType - compares two object types via reflect.TypeOf func isSameType(obj1, obj2 any) bool { return reflect.TypeOf(obj1) == reflect.TypeOf(obj2) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
// We have bumped metaV to make this check cheaper. if metaV < 3 && ver.header.Type == ObjectType && bytes.Contains(meta, []byte("\xa7PartIdx")) && bytes.Contains(meta, []byte("\xbcX-Minio-Internal-compression\xc4\x15klauspost/compress/s2")) { // Likely candidate... version, err := x.getIdx(i) if err == nil { // Check write date... // RELEASE.2023-12-02T10-51-33Z -> RELEASE.2024-10-29T16-01-48Z const dateStart = 1701471618
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 65.6K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.33.md
## Dependencies ### Added - github.com/containerd/errdefs/pkg: [v0.3.0](https://github.com/containerd/errdefs/tree/pkg/v0.3.0) - github.com/klauspost/compress: [v1.18.0](https://github.com/klauspost/compress/tree/v1.18.0) - github.com/kylelemons/godebug: [v1.1.0](https://github.com/kylelemons/godebug/tree/v1.1.0) - github.com/opencontainers/cgroups: [v0.0.1](https://github.com/opencontainers/cgroups/tree/v0.0.1)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:46:23 UTC 2025 - 294.3K bytes - Viewed (0) -
cmd/admin-handlers.go
"net/http" "net/url" "os" "path" "path/filepath" "regexp" "runtime" "sort" "strconv" "strings" "sync/atomic" "time" "github.com/dustin/go-humanize" "github.com/klauspost/compress/zip" "github.com/minio/madmin-go/v3" "github.com/minio/madmin-go/v3/estream" "github.com/minio/madmin-go/v3/logger/log" "github.com/minio/minio-go/v7/pkg/set" "github.com/minio/minio/internal/auth"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 99.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- github.com/josephspurrier/goversioninfo: [v1.4.0](https://github.com/josephspurrier/goversioninfo/tree/v1.4.0) - github.com/klauspost/compress: [v1.17.0](https://github.com/klauspost/compress/tree/v1.17.0) - github.com/lestrrat-go/backoff/v2: [v2.0.8](https://github.com/lestrrat-go/backoff/tree/v2.0.8)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
cmd/admin-handlers-users.go
import ( "bytes" "context" "encoding/json" "errors" "fmt" "io" "maps" "net/http" "os" "slices" "sort" "strconv" "strings" "time" "unicode/utf8" "github.com/klauspost/compress/zip" "github.com/minio/madmin-go/v3" "github.com/minio/minio/internal/auth" "github.com/minio/minio/internal/config/dns" "github.com/minio/minio/internal/logger" "github.com/minio/mux"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 90.6K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
four coefficients per five bytes. // // It implements Compress₁₀, according to FIPS 203, Definition 4.7, // followed by ByteEncode₁₀, according to FIPS 203, Algorithm 5. func ringCompressAndEncod(s []byte, f ringElement) []byte { s, b := sliceForAppend(s, encodingSize10) for i := 0; i < n; i += 4 { var x uint64 x |= uint64(compress(f[i], 10)) x |= uint64(compress(f[i+1], 10)) << 10 x |= uint64(compress(f[i+2], 10)) << 20 x |= uint64(compress(f[i+3], 10)) << 30 b[0] = uint8(x) b[1] = uint8(x >> 8)...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
cmd/sts-handlers_test.go
package cmd import ( "bytes" "context" "fmt" "io" "os" "reflect" "slices" "strings" "testing" "time" "github.com/klauspost/compress/zip" "github.com/minio/madmin-go/v3" "github.com/minio/minio-go/v7" cr "github.com/minio/minio-go/v7/pkg/credentials" "github.com/minio/minio-go/v7/pkg/set" "github.com/minio/pkg/v3/ldap" )
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 100.2K bytes - Viewed (1)