Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,389 for serveur (0.1 sec)

  1. cmd/erasure-server-pool-rebalance.go

    Klaus Post <******@****.***> 1759093161 +0200
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 28.7K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-rebalance_gen_test.go

    Klaus Post <******@****.***> 1759093161 +0200
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         *
         * @param repositories The repositories into which to inject the authentication information, may be {@code null}.
         * @param servers The available servers, may be {@code null}.
         */
        void injectAuthentication(List<ArtifactRepository> repositories, List<Server> servers);
    
        void injectMirror(RepositorySystemSession session, List<ArtifactRepository> repositories);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. internal/grid/README.md

    A subroute on a client must match a subroute on the server. So routes cannot be used for dynamic routing, unlike HTTP.
    
    Handlers should remain backwards compatible. If a breaking API change is required, a new handler ID should be created.
    
    ## Setup & Configuration
    
    A **Manager** is used to manage all incoming and outgoing connections to a server.
    
    On startup all remote servers must be specified.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Oct 10 18:57:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

     * <td>
     * This references only a server. The behavior of some methods is different
     * in this context(e.g. you cannot <code>delete</code> a server) however
     * as you might expect the <code>list</code> method will list the available
     * shares on this server.
     * </td>
     * </tr>
     *
     * <tr>
     * <td ><code>smb://angus.foo.net/d/jcifs/pipes.doc</code></td>
     * <td>
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  6. buildscripts/test-timeout.sh

    	"${MINIO[@]}" --address ":$start_port" --read-header-timeout ${srv_hdr_timeout}s --idle-timeout ${srv_idle_timeout}s "${WORK_DIR}/disk/" >"${WORK_DIR}/server1.log" 2>&1 &
    	pid=$!
    	disown $pid
    	sleep 1
    
    	if ! ps -p ${pid} 1>&2 >/dev/null; then
    		echo "server1 log:"
    		cat "${WORK_DIR}/server1.log"
    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	set -e
    
    	"${PWD}/mc" mb minio/testbucket
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Mon Dec 02 13:21:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. docs/distributed/distributed-from-config-file.sh

         - 'http://localhost:9004/tmp/xl/node9004/mnt/disk4/'
    EOF
    done
    
    minio server --config /tmp/minio.configfile.1 >/tmp/minio1_1.log 2>&1 &
    site1_pid=$!
    minio server --config /tmp/minio.configfile.2 >/tmp/minio2_1.log 2>&1 &
    site2_pid=$!
    minio server --config /tmp/minio.configfile.3 >/tmp/minio3_1.log 2>&1 &
    site3_pid=$!
    minio server --config /tmp/minio.configfile.4 >/tmp/minio4_1.log 2>&1 &
    site4_pid=$!
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Jun 28 09:06:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. buildscripts/verify-healing-with-root-disks.sh

    if [ ! -x "$PWD/minio" ]; then
    	echo "minio executable binary not found in current directory"
    	exit 1
    fi
    
    WORK_DIR="$(mktemp -d)"
    MINIO_CONFIG_DIR="$WORK_DIR/.minio"
    MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR" server)
    
    function start_minio() {
    	start_port=$1
    
    	export MINIO_ROOT_USER=minio
    	export MINIO_ROOT_PASSWORD=minio123
    	unset MINIO_KMS_AUTO_ENCRYPTION # do not auto-encrypt objects
    	unset MINIO_CI_CD
    	unset CI
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. internal/grid/benchmark_test.go

    	const payloadSize = 512
    	rng := rand.New(rand.NewSource(time.Now().UnixNano()))
    	payload := make([]byte, payloadSize)
    	_, err = rng.Read(payload)
    	errFatal(err)
    
    	// Wait for all to connect
    	// Parallel writes per server.
    	b.Run("bytes", func(b *testing.B) {
    		for par := 1; par <= 32; par *= 2 {
    			b.Run("par="+strconv.Itoa(par*runtime.GOMAXPROCS(0)), func(b *testing.B) {
    				defer timeout(60 * time.Second)()
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  10. docs/de/docs/deployment/concepts.md

    ### Auf einem entfernten Server { #in-a-remote-server }
    
    Wenn Sie einen entfernten Server (einen Cloud-Server, eine virtuelle Maschine, usw.) einrichten, können Sie am einfachsten `fastapi run` (welches Uvicorn verwendet) oder etwas Ähnliches manuell ausführen, genau wie bei der lokalen Entwicklung.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 17:32:56 UTC 2025
    - 21.5K bytes
    - Viewed (0)
Back to top