Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 672 for Berner (0.04 sec)

  1. buildscripts/verify-healing-empty-erasure-set.sh

    1. continue
    2. fi
    3.  
    4. # Failure
    5. fail
    6. done
    7.  
    8. if ! ps -p $pid1 1>&2 >/dev/null; then
    9. echo "minio-server-1 is not running." && fail
    10. fi
    11.  
    12. if ! ps -p $pid2 1>&2 >/dev/null; then
    13. echo "minio-server-2 is not running." && fail
    14. fi
    15.  
    16. if ! ps -p $pid3 1>&2 >/dev/null; then
    17. echo "minio-server-3 is not running." && fail
    18. fi
    19.  
    20. if ! pkill minio; then
    21. fail
    22. fi
    23.  
    24. sleep 1
    25. if pgrep minio; then
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 20:51:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. docs/throttle/README.md

    1. # MinIO Server Throttling Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) [![Docker Pulls](https://img.shields.io/docker/pulls/minio/minio.svg?maxAge=604800)](https://hub.docker.com/r/minio/minio/)
    2.  
    3. MinIO server allows to throttle incoming requests:
    4.  
    5. - limit the number of active requests allowed across the cluster
    6. - limit the wait duration for each request in the queue
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Aug 16 08:43:49 UTC 2024
    - 1.5K bytes
    - Viewed (1)
  3. docs/bucket/lifecycle/setup_ilm_transition.sh

    1. if [ ! -f ./mc ]; then
    2. wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    3. chmod +x mc
    4. fi
    5.  
    6. minio server --address 127.0.0.1:9001 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    7. "http://127.0.0.1:9002/tmp/multisitea/data/disterasure/xl{5...8}" >/tmp/sitea_1.log 2>&1 &
    8. minio server --address 127.0.0.1:9002 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. docs/erasure/README.md

    1. Install MinIO - [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#quickstart-for-linux)
    2.  
    3. ### 2. Run MinIO Server with Erasure Code
    4.  
    5. Example: Start MinIO server in a 12 drives setup, using MinIO binary.
    6.  
    7. ```sh
    8. minio server /data{1...12}
    9. ```
    10.  
    11. Example: Start MinIO server in a 8 drives setup, using MinIO Docker image.
    12.  
    13. ```sh
    14. podman run \
    15. -p 9000:9000 \
    16. -p 9001:9001 \
    17. --name minio \
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. cni/pkg/log/uds.go

    1. l := &UDSLogger{}
    2. mux := http.NewServeMux()
    3. mux.HandleFunc(constants.UDSLogPath, l.handleLog)
    4. loggingServer := &http.Server{
    5. Handler: mux,
    6. }
    7. l.loggingServer = loggingServer
    8. pluginLog.SetOutputLevel(level)
    9. return l
    10. }
    11.  
    12. // StartUDSLogServer starts up a UDS server which receives log reported from CNI network plugin.
    13. func (l *UDSLogger) StartUDSLogServer(sockAddress string, stop <-chan struct{}) error {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jun 28 19:12:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NetworkExplorer.java

    1. UniAddress dc;
    2. String msg, pathInfo, server = null;
    3. boolean offerBasic, possibleWorkgroup = true;
    4. NtlmPasswordAuthentication ntlm = null;
    5. HttpSession ssn = req.getSession( false );
    6.  
    7. if(( pathInfo = req.getPathInfo() ) != null ) {
    8. int i;
    9. server = parseServerAndShare( pathInfo );
    10. if( server != null && ( i = server.indexOf( '/' )) > 0 ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 22 03:57:31 UTC 2020
    - 19.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

    1. }
    2.  
    3. String server = this.fileLocator.getServerWithDfs();
    4. if ( resolve ) {
    5. if (this.fileLocator.getDfsPath() == null && this.fileLocator.getPort() != -1) {
    6. server = server + ":" + this.fileLocator.getPort();
    7. }
    8. try {
    9. ownerUser.resolve(server, getContext());
    10. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

    1. dataService.delete(sessionId);
    2. } finally {
    3. server.stop();
    4. }
    5. }
    6.  
    7. public void test_execute_xmlSitemaps() throws Exception {
    8. final CrawlerWebServer server = new CrawlerWebServer(7070);
    9. server.start();
    10.  
    11. final String url = "http://localhost:7070/";
    12. try {
    13. final int maxCount = 50;
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. cmd/testdata/config/invalid-types.yaml

    1. - 'https://server4-pool1:9000/mnt/disk{1...4}/'
    2. -
    3. - 'https://server-example-pool2:9000/mnt/disk{1...4}/'
    4. - 'https://server1-pool2:9000/mnt/disk{1...4}/'
    5. - 'https://server3-pool2:9000/mnt/disk{1...4}/'
    6. - 'https://server4-pool2:9000/mnt/disk{1...4}/'
    7.  
    8. options:
    9. ftp: # settings for MinIO to act as an ftp server
    10. address: ':8021'
    11. passive-port-range: '30000-40000'
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 836 bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

    1. if (repositories != null) {
    2. Map<String, Server> serversById = new HashMap<>();
    3.  
    4. if (servers != null) {
    5. for (Server server : servers) {
    6. if (!serversById.containsKey(server.getId())) {
    7. serversById.put(server.getId(), server);
    8. }
    9. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top