Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 190 for hung (0.07 sec)

  1. cmd/admin-handlers.go

    // if a "restart/stop" was successful or not. Service signal now supports
    // a dry-run that helps skip the nodes that may have hung drives. By default
    // restart/stop will ignore the servers that are hung on drives. You can use
    // 'force' param to force restart even with hung drives if needed.
    func (a adminAPIHandlers) ServiceV2Handler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	vars := mux.Vars(r)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. docs/vi/docs/tutorial/index.md

        Và tương tự với từng phụ thuộc tùy chọn mà bạn muốn sử dụng.
    
    ## Hướng dẫn nâng cao
    
    Cũng có một **Hướng dẫn nâng cao** mà bạn có thể đọc nó sau **Hướng dẫn sử dụng**.
    
    **Hướng dẫn sử dụng nâng cao**, xây dựng dựa trên cái này, sử dụng các khái niệm tương tự, và dạy bạn những tính năng mở rộng.
    
    Nhưng bạn nên đọc **Hướng dẫn sử dụng** đầu tiên (những gì bạn đang đọc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. cmd/xl-storage-disk-id-check.go

    	lastSuccess int64
    
    	// atomic time of last time a token was grabbed.
    	lastStarted int64
    
    	// Atomic status of disk.
    	status atomic.Int32
    
    	// Atomic number indicates if a disk is hung
    	waiting atomic.Int32
    }
    
    // newDiskHealthTracker creates a new disk health tracker.
    func newDiskHealthTracker() *diskHealthTracker {
    	d := diskHealthTracker{
    		lastSuccess: time.Now().UnixNano(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. docs/vi/docs/features.md

    * Hỗ trợ hệ thống xác thực người dùng phức tạp, **các kết nối cơ sở dữ liệu**,...
    * **Không làm tổn hại** cơ sở dữ liệu, frontends,... Nhưng dễ dàng tích hợp với tất cả chúng.
    
    ### Không giới hạn "plug-ins"
    
    Hoặc theo một cách nào khác, không cần chúng, import và sử dụng code bạn cần.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. docs/vi/docs/python-types.md

    Những kiểu dữ liệu nội bộ này được gọi là những kiểu dữ liệu "**tổng quát**". Và có khả năng khai báo chúng, thậm chí với các kiểu dữ liệu nội bộ của chúng.
    
    Để khai báo những kiểu dữ liệu và những kiểu dữ liệu nội bộ đó, bạn có thể sử dụng mô đun chuẩn của Python là `typing`. Nó có hỗ trợ những gợi ý kiểu dữ liệu này.
    
    #### Những phiên bản mới hơn của Python
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. src/os/exec/exec_test.go

    //
    // Forking multiple child processes concurrently would sometimes hang on darwin.
    // (This test hung on a gomote with -count=100 after only a few iterations.)
    func TestConcurrentExec(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    
    	// This test will spawn nHangs subprocesses that hang reading from stdin,
    	// and nExits subprocesses that exit immediately.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    				_, err = fmt.Fprint(targ, body)
    				if err == nil {
    					err = targ.Close()
    				}
    				if err != nil {
    					if !test.readBody {
    						// Server likely already hung up on us.
    						// See larger comment below.
    						t.Logf("On test %#v, acceptable error writing request body: %v", test, err)
    						return
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    		// this request.
    		return true
    	}
    	if err == errMissingHost {
    		// User error.
    		return false
    	}
    	if !pc.isReused() {
    		// This was a fresh connection. There's no reason the server
    		// should've hung up on us.
    		//
    		// Also, if we retried now, we could loop forever
    		// creating new connections and retrying if the server
    		// is just hanging up on us because it doesn't like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

        def "disconnect during hanging build does not block the client"() {
            setup:
            file("gradle.properties") << "systemProp.org.gradle.internal.testing.daemon.hang=60000"
            buildFile.text = """
                task hang {
                    doLast {
                        ${server.callFromBuild("waiting")}
                    }
                }
            """.stripIndent()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/HandleStop.java

            // number of milliseconds before continuing to shutdown. This simulates builds for daemons
            // that are very slow to respond.
            int hang = Integer.getInteger("org.gradle.internal.testing.daemon.hang", 0);
            if (hang > 0) {
                try {
                    Thread.sleep(hang);
                } catch (InterruptedException e) {
                    // ignore
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top