- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 200 for 120s (0.02 sec)
-
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
Type2Message.writeULong(truncatedMessage, 8, Type2Message.NTLMSSP_TYPE2); // Set empty target name buffer Type2Message.writeUShort(truncatedMessage, 12, 0); // length Type2Message.writeUShort(truncatedMessage, 14, 0); // max length Type2Message.writeULong(truncatedMessage, 16, 48); // offset (past the end) // Set flags
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
guava/src/com/google/common/base/MoreObjects.java
* value. The order of calling this method, relative to the {@code add()}/{@code addValue()} * methods, is not significant. * * @since 18.0 (since 12.0 as {@code Objects.ToStringHelper.omitNullValues()}). */ @CanIgnoreReturnValue public ToStringHelper omitNullValues() { omitNullValues = true; return this; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.6K bytes - Viewed (0) -
cmd/s3-zip-handlers.go
func getFilesListFromZIPObject(ctx context.Context, objectAPI ObjectLayer, bucket, object string, opts ObjectOptions) (zipindex.Files, ObjectInfo, error) { size := 1 << 20 var objSize int64 for { rs := &HTTPRangeSpec{IsSuffixLength: true, Start: int64(-size)} gr, err := objectAPI.GetObjectNInfo(ctx, bucket, object, rs, nil, opts) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/archive/zip/writer_test.go
} if !bytes.Equal(b, wt.Data) { t.Errorf("File contents %q, want %q", b, wt.Data) } } func BenchmarkCompressedZipGarbage(b *testing.B) { bigBuf := bytes.Repeat([]byte("a"), 1<<20) runOnce := func(buf *bytes.Buffer) { buf.Reset() zw := NewWriter(buf) for j := 0; j < 3; j++ { w, _ := zw.CreateHeader(&FileHeader{ Name: "foo", Method: Deflate, })
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Jan 28 04:20:09 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchHelperTest.java
@Override public Integer getPagingSearchPageMaxSizeAsInteger() { return 100; } @Override public String getIndexIndexTimeout() { return "10s"; } } private static class MockSystemHelper extends SystemHelper { @Override public long getCurrentTimeAsLong() { return System.currentTimeMillis(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 18.9K bytes - Viewed (0) -
src/bytes/bytes_test.go
}) != ct.expected { t.Errorf("ContainsFunc(%q, func(%q)) = %v, want %v", ct.b, ct.r, !ct.expected, ct.expected) } } } var makeFieldsInput = func() []byte { x := make([]byte, 1<<20) // Input is ~10% space, ~10% 2-byte UTF-8, rest ASCII non-space. r := rand.New(rand.NewSource(99)) for i := range x { switch r.Intn(10) { case 0: x[i] = ' ' case 1:
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 28 18:13:58 UTC 2025 - 62.9K bytes - Viewed (0) -
docs/en/data/translators.yml
nilslindemann: login: nilslindemann count: 120 avatarUrl: https://avatars.githubusercontent.com/u/6892179?u=1dca6a22195d6cd1ab20737c0e19a4c55d639472&v=4 url: https://github.com/nilslindemann jaystone776: login: jaystone776 count: 46 avatarUrl: https://avatars.githubusercontent.com/u/11191137?u=299205a95e9b6817a43144a48b643346a5aac5cc&v=4 url: https://github.com/jaystone776 valentinDruzhinin: login: valentinDruzhinin count: 29
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:58:29 UTC 2025 - 19.2K bytes - Viewed (0) -
.teamcity/performance-test-durations.json
} ] }, { "scenario" : "org.gradle.performance.regression.java.JavaIDETaskExecutionPerformanceTest.run compileJava via Tooling API", "durations" : [ { "testProject" : "largeAndroidBuild", "linux" : 1209 }, { "testProject" : "largeJavaMultiProject", "linux" : 793 }, { "testProject" : "largeJavaMultiProjectHierarchy", "linux" : 1572 }, { "testProject" : "nowInAndroidBuild",
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Sep 08 06:58:31 UTC 2025 - 25.9K bytes - Viewed (0) -
docs/site-replication/run-sse-kms-object-replication.sh
./mc cp /tmp/data/defpartsize minio1/test-bucket --insecure ./mc put /tmp/data/custpartsize minio1/test-bucket --insecure --part-size 50MiB sleep 120 # List the objects from source site echo "Objects from source instance" ./mc ls minio1/test-bucket --insecure count1=$(./mc ls minio1/test-bucket/encrypted --insecure | wc -l) if [ "${count1}" -ne 1 ]; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 11.5K bytes - Viewed (0) -
src/archive/tar/format.go
prefixSize = 155 // Max length of the prefix field in USTAR format // Max length of a special file (PAX header, GNU long name or link). // This matches the limit used by libarchive. maxSpecialFileSize = 1 << 20 ) // blockPadding computes the number of bytes needed to pad offset up to the // nearest block edge where 0 <= n < blockSize. func blockPadding(offset int64) (n int64) { return -offset & (blockSize - 1) }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 11.3K bytes - Viewed (0)