Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for 512m (0.05 sec)

  1. docs/distributed/README.md

    export MINIO_ROOT_PASSWORD=<SECRET_KEY>
    minio server http://host{1...n}/export{1...m} http://host{o...z}/export{1...m}
    ```
    
    For example:
    
    ```
    minio server http://host{1...4}/export{1...16} http://host{5...12}/export{1...16}
    ```
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/archive/tar/format.go

    	magicGNU, versionGNU     = "ustar ", " \x00"
    	magicUSTAR, versionUSTAR = "ustar\x00", "00"
    	trailerSTAR              = "tar\x00"
    )
    
    // Size constants from various tar specifications.
    const (
    	blockSize  = 512 // Size of each block in a tar stream
    	nameSize   = 100 // Max length of the name field in USTAR format
    	prefixSize = 155 // Max length of the prefix field in USTAR format
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PRIMENTS = 28721
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PRIMENTS ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUP = 512
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUPAT = 512
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUPAT ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PUP ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_RACAL = 28720
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

        protected Map<String, String> childUrlRuleMap = new LinkedHashMap<>();
    
        protected String defaultEncoding;
    
        // If you want to follow a html spec, use 512.
        protected int preloadSizeForCharset = 2048;
    
        protected Pattern invalidUrlPattern = Pattern.compile("^\\s*javascript:|" //
                + "^\\s*mailto:|" //
                + "^\\s*irc:|" //
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Oct 24 12:16:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. internal/event/target/elasticsearch.go

    		objectName, err := url.QueryUnescape(eventData.S3.Object.Key)
    		if err != nil {
    			return err
    		}
    
    		// Calculate a hash of the key for the id of the ES document.
    		// Id's are limited to 512 bytes in V7+, so we need to do this.
    		var keyHash string
    		{
    			key := eventData.S3.Bucket.Name + "/" + objectName
    			if target.client.isAtleastV7() {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

              Thread.sleep(100)
            }
          } catch (e: IOException) {
            break
          }
          i++
        }
        // Halfway +/- 0.5%
        assertThat(i.toFloat()).isCloseTo(512f, 5f)
      }
    
      @Test
      fun disconnectResponseHalfway() {
        server.enqueue(
          MockResponse()
            .setBody("ab")
            .setSocketPolicy(SocketPolicy.DISCONNECT_DURING_RESPONSE_BODY),
        )
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

              Thread.sleep(100)
            }
          } catch (e: IOException) {
            break
          }
          i++
        }
        // Halfway +/- 0.5%
        assertThat(i.toFloat()).isCloseTo(512f, 5f)
      }
    
      @Test
      fun disconnectResponseHalfway() {
        server.enqueue(
          MockResponse.Builder()
            .body("ab")
            .socketPolicy(DisconnectDuringResponseBody)
            .build(),
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. api/go1.10.txt

    pkg debug/elf, const R_AARCH64_LD64_GOTOFF_LO15 R_AARCH64
    pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 = 313
    pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSGD_ADR_PREL21 = 512
    pkg debug/elf, const R_AARCH64_TLSGD_ADR_PREL21 R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G0_NC = 516
    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G0_NC R_AARCH64
    pkg debug/elf, const R_AARCH64_TLSGD_MOVW_G1 = 515
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

      }
    
      /** Create a sufficiently large header set to overflow INITIAL_MAX_FRAME_SIZE bytes.  */
      private fun largeHeaders(): List<Header> {
        val nameValues = arrayOfNulls<String>(32)
        val chars = CharArray(512)
        var i = 0
        while (i < nameValues.size) {
          Arrays.fill(chars, i.toChar())
          val string = String(chars)
          nameValues[i++] = string
          nameValues[i++] = string
        }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/hash/HashTestUtils.java

        assertHashBytesThrowsCorrectExceptions(hashFunction);
        assertIndependentHashers(hashFunction);
        assertShortcutsAreEquivalent(hashFunction, 512);
      }
    
      static void assertHashByteBufferInvariants(HashFunction hashFunction) {
        assertHashByteBufferMatchesBytes(hashFunction);
        assertHashByteBufferExhaustsBuffer(hashFunction);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top