Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for 500m (0.02 sec)

  1. docs/site-replication/run-ssec-object-replication.sh

    1. echo -n "Preparing test data ..."
    2. mkdir -p /tmp/data
    3. echo "Hello world" >/tmp/data/plainfile
    4. echo "Hello from encrypted world" >/tmp/data/encrypted
    5. touch /tmp/data/defpartsize
    6. shred -s 500M /tmp/data/defpartsize
    7. touch /tmp/data/custpartsize
    8. shred -s 500M /tmp/data/custpartsize
    9. echo "done"
    10.  
    11. # Add replication site
    12. ./mc admin replicate add minio1 minio2 --insecure
    13. # sleep for replication to complete
    14. sleep 30
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. docs/site-replication/run-sse-kms-object-replication.sh

    1. echo -n "Preparing test data ..."
    2. mkdir -p /tmp/data
    3. echo "Hello from encrypted world" >/tmp/data/encrypted
    4. touch /tmp/data/mpartobj
    5. shred -s 500M /tmp/data/mpartobj
    6. touch /tmp/data/defpartsize
    7. shred -s 500M /tmp/data/defpartsize
    8. touch /tmp/data/custpartsize
    9. shred -s 500M /tmp/data/custpartsize
    10. echo "done"
    11.  
    12. # Add replication site
    13. ./mc admin replicate add minio1 minio2 --insecure
    14. # sleep for replication to complete
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. docs/site-replication/run-ssec-object-replication-with-compression.sh

    1. echo -n "Preparing test data ..."
    2. mkdir -p /tmp/data
    3. echo "Hello world" >/tmp/data/plainfile
    4. echo "Hello from encrypted world" >/tmp/data/encrypted
    5. touch /tmp/data/defpartsize
    6. shred -s 500M /tmp/data/defpartsize
    7. touch /tmp/data/mpartobj.txt
    8. shred -s 500M /tmp/data/mpartobj.txt
    9. echo "done"
    10.  
    11. # Enable compression for site minio1
    12. ./mc admin config set minio1 compression enable=on extensions=".txt" --insecure
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. docs/site-replication/run-replication-with-checksum-header.sh

    1. ./mc ready minio1 --insecure
    2. ./mc ready minio2 --insecure
    3.  
    4. # Prepare data for tests
    5. echo -n "Preparing test data ..."
    6. mkdir -p /tmp/data
    7. echo "Hello World" >/tmp/data/obj
    8. touch /tmp/data/mpartobj
    9. shred -s 500M /tmp/data/mpartobj
    10. echo "done"
    11.  
    12. # Add replication site
    13. ./mc admin replicate add minio1 minio2 --insecure
    14. # sleep for replication to complete
    15. sleep 30
    16.  
    17. # Create bucket in source cluster
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 08:02:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. docs/en/docs/js/custom.js

    1. ul.append(li)
    2. })
    3. }
    4.  
    5. setupTermynal();
    6. showRandomAnnouncement('announce-left', 5000)
    7. showRandomAnnouncement('announce-right', 10000)
    8. }
    9. document$.subscribe(() => {
    10. main()
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

    1. for (int i = 0; i < 8; i++) {
    2. limiter.acquire(); // #1
    3. }
    4. stopwatch.sleepMillis(500); // #2: to repay for the last acquire
    5. stopwatch.sleepMillis(4000); // #3: becomes cold again
    6. for (int i = 0; i < 8; i++) {
    7. limiter.acquire(); // // #4
    8. }
    9. stopwatch.sleepMillis(500); // #5: to repay for the last acquire
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

    1. for (int i = 0; i < 8; i++) {
    2. limiter.acquire(); // #1
    3. }
    4. stopwatch.sleepMillis(500); // #2: to repay for the last acquire
    5. stopwatch.sleepMillis(4000); // #3: becomes cold again
    6. for (int i = 0; i < 8; i++) {
    7. limiter.acquire(); // // #4
    8. }
    9. stopwatch.sleepMillis(500); // #5: to repay for the last acquire
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

    1. }
    2. assertEqualsUsingSeed(seed, expected, elements);
    3. }
    4. }
    5. }
    6.  
    7. public void testCorrectOrdering_mediumHeapsPollFirst() {
    8. for (int attempts = 0; attempts < reduceIterationsIfGwt(5000); attempts++) {
    9. int size = new Random().nextInt(256) + 16;
    10. ArrayList<Integer> elements = createOrderedList(size);
    11. List<Integer> expected = ImmutableList.copyOf(elements);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  9. docs/bucket/replication/setup_3site_replication.sh

    1. fi
    2.  
    3. sleep 5
    4.  
    5. head -c 221227088 </dev/urandom >200M
    6. ./mc.RELEASE.2021-03-12T03-36-59Z cp --config-dir ~/.mc --encrypt "sitea" --quiet 200M "sitea/bucket/200M-enc-v1"
    7. ./mc.RELEASE.2021-03-12T03-36-59Z cp --config-dir ~/.mc --quiet 200M "sitea/bucket/200M-v1"
    8.  
    9. ./mc cp --enc-s3 "sitea" --quiet 200M "sitea/bucket/200M-enc-v2"
    10. ./mc cp --quiet 200M "sitea/bucket/200M-v2"
    11.  
    12. sleep 10
    13.  
    14. echo "Verifying ETag for all objects"
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

    1. }
    2. assertEqualsUsingSeed(seed, expected, elements);
    3. }
    4. }
    5. }
    6.  
    7. public void testCorrectOrdering_mediumHeapsPollFirst() {
    8. for (int attempts = 0; attempts < reduceIterationsIfGwt(5000); attempts++) {
    9. int size = new Random().nextInt(256) + 16;
    10. ArrayList<Integer> elements = createOrderedList(size);
    11. List<Integer> expected = ImmutableList.copyOf(elements);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.9K bytes
    - Viewed (0)
Back to top