Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 102 (0.06 sec)

  1. helm-releases/minio-1.0.2.tgz

    minio-1.0.2.tar minio/Chart.yaml apiVersion: v1 appVersion: RELEASE.2021-08-20T18-32-01Z description: High Performance, Kubernetes Native Object Storage home: https://min.io icon: https://min.io/resources/img/logo/MINIO_wordmark.png keywords: - storage - object-storage - S3 maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio version: 1.0.2 minio/values.yaml ## Provide a name in place of minio for `app:` labels ## nameOverride: "" ## Provide...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 24 18:58:05 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/net/HostAndPortTest.java

      }
    
      public void testToString() {
        // With ports.
        assertEquals("foo:101", "" + HostAndPort.fromString("foo:101"));
        assertEquals(":102", HostAndPort.fromString(":102").toString());
        assertEquals("[1::2]:103", HostAndPort.fromParts("1::2", 103).toString());
        assertEquals("[::1]:104", HostAndPort.fromString("[::1]:104").toString());
    
        // Without ports.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java

        stats = cache.stats();
        assertEquals(2, stats.requestCount());
        assertEquals(1, stats.hitCount());
        assertThat(stats.hitRate()).isEqualTo(1.0 / 2);
        assertEquals(1, stats.missCount());
        assertThat(stats.missRate()).isEqualTo(1.0 / 2);
        assertEquals(1, stats.loadCount());
        assertEquals(0, stats.evictionCount());
    
        Object two = new Object();
        cache.getUnchecked(two);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java

            // ... rest of first entry fields (zeros for simplicity)
            for (int i = 16; i < 102; i++) {
                buffer[i] = 0;
            }
            SMBUtil.writeInt4(8, buffer, 68); // FileNameLength at offset 60 from start
            byte[] file1 = "file1".getBytes(StandardCharsets.UTF_16LE);
            System.arraycopy(file1, 0, buffer, 102, file1.length);
    
            // Write second FileBothDirectoryInfo at 8 + 104 = 112
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  5. cmd/apierrorcode_string.go

    	_ = x[ErrAuthHeaderEmpty-97]
    	_ = x[ErrExpiredPresignRequest-98]
    	_ = 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]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java

            buf[33] = 34; // baseline wordCount reported by server
            buf[34] = (byte) 0xFF; // no further andx
            // byteCount at 33 + 1 + 34*2 = 102
            ServerMessageBlock.writeInt2(0, buf, 102);
    
            int n = resp.decode(buf, 0);
            assertTrue(n > 0);
            // Implementation adds +8 words (16 bytes) to account for CSC extra
            assertEquals(42, resp.wordCount);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java

            // Given - 10 different valid buffers
            for (int i = 0; i < 10; i++) {
                byte[] buffer = new byte[256];
                SMBUtil.writeInt2(4, buffer, i * 10);
                SMBUtil.writeInt2(i, buffer, i * 10 + 2); // Different reserved values
    
                // When
                int bytesRead = response.readBytesWireFormat(buffer, i * 10);
    
                // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  8. tests/create_test.go

    		t.Errorf("invalid primary key after creating, got %v", company.ID)
    	}
    
    	companies := []Company{
    		{ID: 101, Name: "company101_with_primarykey"},
    		{ID: 102, Name: "company102_with_primarykey"},
    	}
    	DB.Create(&companies)
    
    	if companies[0].ID != 101 || companies[1].ID != 102 {
    		t.Errorf("invalid primary key after creating, got %v, %v", companies[0].ID, companies[1].ID)
    	}
    }
    
    func TestCreateFromSubQuery(t *testing.T) {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 09:55:20 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/JoinerTest.java

        checkResult(zeroForNull, iterableNullNull, "0-0");
        checkResult(zeroForNull, iterableNull1, "0-1");
        checkResult(zeroForNull, iterable1Null, "1-0");
        checkResult(zeroForNull, iterable1Null2, "1-0-2");
        checkResult(zeroForNull, iterableFourNulls, "0-0-0-0");
      }
    
      private static void checkNoOutput(Joiner joiner, Iterable<Integer> set) {
        assertEquals("", joiner.join(set));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

              null
            }
            statusLine.code == HTTP_CONTINUE -> {
              state = STATE_READ_RESPONSE_HEADERS
              responseBuilder
            }
            statusLine.code in (102 until 200) -> {
              // Processing and Early Hints will mean a second headers are coming.
              // Treat others the same for now
              state = STATE_READ_RESPONSE_HEADERS
              responseBuilder
            }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 17.5K bytes
    - Viewed (0)
Back to top