Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 358 for slop (0.02 sec)

  1. cmd/url_test.go

    	b.ResetTimer()
    
    	if err := req.ParseForm(); err != nil {
    		b.Fatal(err)
    	}
    
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			req.Form.Get("uploadId")
    		}
    	})
    
    	// Benchmark ends here. Stop timer.
    	b.StopTimer()
    }
    
    // BenchmarkURLQuery - benchmark URL memory allocations
    func BenchmarkURLQuery(b *testing.B) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.data_config.json

            "standard_analyzer": {
              "type": "custom",
              "tokenizer": "standard",
              "filter": [
                "cjk_width",
                "asciifolding",
                "lowercase",
                "stop",
                "stemmer"
              ]
            }
          }
        }
      }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 484 bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_aws/fess.json

                "連体詞"
              ]
            },
            "japanese_stop": {
              "type":       "stop",
              "stopwords": []
            },
            "korean_stop": {
              "type":       "stop",
              "stopwords": []
            },
            "latvian_stop": {
              "type":       "stop",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 117.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess.json

                "連体詞"
              ]
            },
            "japanese_stop": {
              "type":       "stop",
              "stopwords": []
            },
            "korean_stop": {
              "type":       "stop",
              "stopwords": []
            },
            "latvian_stop": {
              "type":       "stop",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/witness/MockWitnessService.java

            serverThread.setDaemon(true);
            serverThread.start();
    
            log.info("Mock witness service started on port {}", serverSocket.getLocalPort());
        }
    
        /**
         * Stop the mock witness service
         */
        public void stop() {
            running.set(false);
    
            if (serverSocket != null && !serverSocket.isClosed()) {
                try {
                    serverSocket.close();
                } catch (IOException e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  6. docs/docker/README.md

    ```sh
    docker start <container_id>
    ```
    
    To stop a running container, you can use the [`docker stop`](https://docs.docker.com/engine/reference/commandline/stop/) command.
    
    ```sh
    docker stop <container_id>
    ```
    
    ### MinIO container logs
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. cmd/benchmark-utils_test.go

    			b.Fatal(err)
    		}
    		if objInfo.ETag != md5hex {
    			b.Fatalf("Write no: %d: Md5Sum mismatch during object write into the bucket: Expected %s, got %s", i+1, objInfo.ETag, md5hex)
    		}
    	}
    	// Benchmark ends here. Stop timer.
    	b.StopTimer()
    }
    
    // Benchmark utility functions for ObjectLayer.PutObjectPart().
    // Creates Object layer setup ( MakeBucket ) and then runs the PutObjectPart benchmark.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. cmd/utils.go

    	p.records[recordName] = buf.Bytes()
    }
    
    // Records returns the recorded profiling if any.
    func (p profilerWrapper) Records() map[string][]byte {
    	return p.records
    }
    
    // Stop the currently running benchmark.
    func (p profilerWrapper) Stop() ([]byte, error) {
    	return p.stopFn()
    }
    
    // Extension returns the extension without dot prefix.
    func (p profilerWrapper) Extension() string {
    	return p.ext
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33K bytes
    - Viewed (0)
  9. buildscripts/test-timeout.sh

    		exit 1
    	fi
    
    	set -e
    
    	"${PWD}/mc" mb minio/testbucket
    	"${PWD}/mc" anonymous set public minio/testbucket
    
    	# slow header writing
    	send_put_object_request 20 0 && exit -1
    	"${PWD}/mc" stat minio/testbucket/testobject && exit -1
    
    	# quick header write and slow bodywrite
    	send_put_object_request 0 40 && exit -1
    	"${PWD}/mc" stat minio/testbucket/testobject && exit -1
    
    	# quick header and body write
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Dec 02 13:21:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. docs/resiliency/resiliency-tests.sh

    	./mc ready myminio
    }
    
    function test_resiliency_failure_with_servers_down() {
    	echo
    	echo -e "${GREEN}Running test_resiliency_failure_with_servers_down ...${NC}"
    	# Stop two nodes
    	docker stop resiliency-minio1-1
    	docker stop resiliency-minio2-1
    	sleep 10
    
    	verify_resiliency_failure "${FUNCNAME[0]}"
    
    	# Restart the nodes
    	docker start resiliency-minio1-1
    	docker start resiliency-minio2-1
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Dec 21 04:24:45 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top