Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for 104 (0.18 sec)

  1. docs/debugging/s3-verify/go.sum

    github.com/go-ini/ini v1.67.0 h1:z6ZrTEZqSWOTyH2FlglNbNgARyHG8oLW9gMELqKr06A=
    github.com/go-ini/ini v1.67.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8=
    github.com/goccy/go-json v0.10.4 h1:JSwxQzIqKfmFX1swYPpUThQZp/Ka4wzJdK0LWVytLPM=
    github.com/goccy/go-json v0.10.4/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M=
    github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 17 11:45:33 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/PacTest.java

                // Buffer 3: PRIVSVR_CHECKSUM
                writeLittleEndianInt(baos, PacConstants.PRIVSVR_CHECKSUM);
                writeLittleEndianInt(baos, 20); // signature size
                writeLittleEndianLong(baos, 104); // offset (aligned)
    
                // Add buffer data
                while (baos.size() < 72) {
                    baos.write(0);
                }
                // LOGON_INFO data (minimal)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java

            SMBUtil.writeInt2(9, buffer, bufferIndex);
            // Set buffer offset
            SMBUtil.writeInt2(dataOffset, buffer, bufferIndex + 2);
            // Set buffer length
            SMBUtil.writeInt4(104, buffer, bufferIndex + 4); // Minimal FileBothDirectoryInfo
    
            response = spy(response);
            when(response.getHeaderStart()).thenReturn(0);
    
            // Write minimal FileBothDirectoryInfo at dataOffset
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  4. docs/debugging/s3-verify/go.mod

    require github.com/minio/minio-go/v7 v7.0.83
    
    require (
    	github.com/davecgh/go-spew v1.1.1 // indirect
    	github.com/dustin/go-humanize v1.0.1 // indirect
    	github.com/go-ini/ini v1.67.0 // indirect
    	github.com/goccy/go-json v0.10.4 // indirect
    	github.com/google/uuid v1.6.0 // indirect
    	github.com/klauspost/compress v1.17.11 // indirect
    	github.com/klauspost/cpuid/v2 v2.2.9 // indirect
    	github.com/minio/md5-simd v1.1.2 // indirect
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Apr 22 11:16:32 UTC 2025
    - 803 bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java

        Object three = new Object();
        cache.getUnchecked(three);
        stats = cache.stats();
        assertEquals(4, stats.requestCount());
        assertEquals(1, stats.hitCount());
        assertThat(stats.hitRate()).isEqualTo(1.0 / 4);
        assertEquals(3, stats.missCount());
        assertThat(stats.missRate()).isEqualTo(3.0 / 4);
        assertEquals(3, stats.loadCount());
        assertTrue(stats.totalLoadTime() >= totalLoadTime);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  6. cmd/apierrorcode_string.go

    	_ = x[ErrRequestNotReadyYet-99]
    	_ = x[ErrUnsignedHeaders-100]
    	_ = x[ErrMissingDateHeader-101]
    	_ = x[ErrInvalidQuerySignatureAlgo-102]
    	_ = x[ErrInvalidQueryParams-103]
    	_ = x[ErrBucketAlreadyOwnedByYou-104]
    	_ = x[ErrInvalidDuration-105]
    	_ = x[ErrBucketAlreadyExists-106]
    	_ = x[ErrMetadataTooLarge-107]
    	_ = x[ErrUnsupportedMetadata-108]
    	_ = x[ErrUnsupportedHostHeader-109]
    	_ = x[ErrMaximumExpires-110]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  7. go.mod

    	github.com/minio/xxml v0.0.3
    	github.com/minio/zipindex v0.4.0
    	github.com/mitchellh/go-homedir v1.1.0
    	github.com/nats-io/nats-server/v2 v2.11.1
    	github.com/nats-io/nats.go v1.41.2
    	github.com/nats-io/stan.go v0.10.4
    	github.com/ncw/directio v1.0.5
    	github.com/nsqio/go-nsq v1.1.0
    	github.com/philhofer/fwd v1.1.3-0.20240916144458-20a13a1f6b7c
    	github.com/pierrec/lz4/v4 v4.1.22
    	github.com/pkg/errors v0.9.1
    	github.com/pkg/sftp v1.13.9
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java

        @Test
        @DisplayName("Should handle buffer boundary conditions")
        void testBufferBoundaryConditions() throws Exception {
            // Given - notification exactly at buffer end
            byte[] buffer = new byte[104]; // Exact size needed
            int offset = 0;
    
            setHeaderStart(response, 64);
    
            // Write structure
            SMBUtil.writeInt2(9, buffer, offset);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java

                assertEquals(48 + 1024, bytesWritten);
    
                // Verify written structure
                assertEquals(49, SMBUtil.readInt2(buffer, 100)); // Structure size
                assertEquals(1024, SMBUtil.readInt4(buffer, 104)); // Data length
                assertEquals(4096L, SMBUtil.readInt8(buffer, 108)); // Offset
                assertEquals(2048, SMBUtil.readInt4(buffer, 136)); // Remaining bytes
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java

                Arrays.fill(buffer, (byte) 0);
                bytesWritten = request.writeBytesWireFormat(buffer, 100);
                assertEquals(49, bytesWritten);
                assertEquals(2048, SMBUtil.readInt4(buffer, 104));
                assertEquals(4096L, SMBUtil.readInt8(buffer, 108));
            }
    
            @Test
            @DisplayName("Should handle null file ID during write")
            void testWriteWithNullFileId() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
Back to top