Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 142 for 128 (0.02 sec)

  1. android/guava/src/com/google/common/primitives/Longs.java

       * class.
       */
      static final class AsciiDigits {
        private AsciiDigits() {}
    
        private static final byte[] asciiDigits;
    
        static {
          byte[] result = new byte[128];
          Arrays.fill(result, (byte) -1);
          for (int i = 0; i < 10; i++) {
            result['0' + i] = (byte) i;
          }
          for (int i = 0; i < 26; i++) {
            result['A' + i] = (byte) (10 + i);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.1K bytes
    - Viewed (0)
  2. docs/pt/docs/advanced/security/oauth2-scopes.md

    Nós também verificamos que nós temos um usuário com o "*username*", e caso contrário, nós levantamos a mesma exceção que criamos anteriormente.
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[47,117:128] *}
    
    ## Verifique os `scopes`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. docs/bucket/versioning/README.md

    buckets have versioning enabled automatically. Enabling and suspending versioning is done at the bucket level.
    
    Only MinIO generates version IDs, and they can't be edited. Version IDs are simply of `DCE 1.1 v4 UUID 4` (random data based), UUIDs are 128 bit numbers which are intended to have a high likelihood of uniqueness over space and time and are computationally difficult to guess. They are globally unique identifiers which can be locally generated without contacting a global registration authority....
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. cmd/admin-handlers-site-replication.go

    	ctx := r.Context()
    
    	globalSiteNetPerfRX.Connect()
    	defer globalSiteNetPerfRX.Disconnect()
    
    	connectTime := time.Now()
    	for {
    		n, err := io.CopyN(xioutil.Discard, r.Body, 128*humanize.KiByte)
    		atomic.AddUint64(&globalSiteNetPerfRX.RX, uint64(n))
    		if err != nil && err != io.EOF && err != io.ErrUnexpectedEOF {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java

        void testBufferSizeEdgeCases() {
            // Test with very small buffer sizes
            when(mockConfig.getMaximumBufferSize()).thenReturn(256);
            when(mockConfig.getListSize()).thenReturn(128);
    
            request = new Smb2QueryInfoRequest(mockConfig);
    
            try {
                Field outputBufferLengthField = Smb2QueryInfoRequest.class.getDeclaredField("outputBufferLength");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  6. docs/es/docs/advanced/security/oauth2-scopes.md

    También verificamos que tenemos un usuario con ese username, y si no, lanzamos esa misma excepción que creamos antes.
    
    {* ../../docs_src/security/tutorial005_an_py310.py hl[47,117:128] *}
    
    ## Verificar los `scopes`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/IteratorsTest.java

        int nestingDepth = 128;
        Iterator<Integer> iterator = iterateOver();
        for (int i = 0; i < nestingDepth; i++) {
          iterator = Iterators.concat(iterator, iterateOver(1));
        }
        assertEquals(nestingDepth, Iterators.size(iterator));
      }
    
      public void testConcatNested_appendToBeginning() {
        int nestingDepth = 128;
        Iterator<Integer> iterator = iterateOver();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ACETest.java

                assertEquals(32, ACE.FILE_EXECUTE, "FILE_EXECUTE constant value");
                assertEquals(64, ACE.FILE_DELETE, "FILE_DELETE constant value");
                assertEquals(128, ACE.FILE_READ_ATTRIBUTES, "FILE_READ_ATTRIBUTES constant value");
                assertEquals(256, ACE.FILE_WRITE_ATTRIBUTES, "FILE_WRITE_ATTRIBUTES constant value");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java

            }
    
            @Test
            @DisplayName("Should pass output buffer to response")
            void testCreateResponseWithBuffer() {
                byte[] specificBuffer = new byte[2048];
                int offset = 128;
                Smb2ReadRequest requestWithBuffer = new Smb2ReadRequest(mockConfig, testFileId, specificBuffer, offset);
    
                Smb2ReadResponse response = requestWithBuffer.createResponse(mockContext, requestWithBuffer);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java

            int pathStart = Smb2Constants.SMB2_HEADER_LENGTH + 8;
            for (int i = 0; i < testPath.length(); i++) {
                char c = testPath.charAt(i);
                if (c < 128) { // ASCII character
                    assertEquals(c, buffer[pathStart + i * 2]);
                    assertEquals(0, buffer[pathStart + i * 2 + 1]);
                }
            }
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top