Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for hung (0.04 sec)

  1. src/cmd/asm/internal/asm/operand_test.go

    	{"·callReflect(SB)", "pkg.callReflect(SB)"},
    	{"[X0-X0]", "[X0-X0]"},
    	{"[ Z9 - Z12 ]", "[Z9-Z12]"},
    	{"[X0-AX]", "[X0-AX]"},
    	{"[AX-X0]", "[AX-X0]"},
    	{"[):[o-FP", ""}, // Issue 12469 - asm hung parsing the o-FP range on non ARM platforms.
    }
    
    var amd64RuntimeOperandTests = []operandTest{
    	{"$bar<ABI0>(SB)", "$bar<ABI0>(SB)"},
    	{"$foo<ABIInternal>(SB)", "$foo<ABIInternal>(SB)"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. docs/vi/docs/index.md

    ---
    
    "_Thành thật, những gì bạn đã xây dựng nhìn siêu chắc chắn và bóng bẩy. Theo nhiều cách, nó là những gì tôi đã muốn Hug trở thành - thật sự truyền cảm hứng để thấy ai đó xây dựng nó._"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        long hangDelayMillis =
            (expectedOutcome == Outcome.HANG)
                ? EXPECTED_HANG_DELAY_MILLIS
                : UNEXPECTED_HANG_DELAY_MILLIS;
        boolean hung =
            !awaitUninterruptibly(callCompletedLatch, hangDelayMillis, TimeUnit.MILLISECONDS);
        if (hung) {
          assertEquals(expectedOutcome, Outcome.HANG);
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        long hangDelayMillis =
            (expectedOutcome == Outcome.HANG)
                ? EXPECTED_HANG_DELAY_MILLIS
                : UNEXPECTED_HANG_DELAY_MILLIS;
        boolean hung =
            !awaitUninterruptibly(callCompletedLatch, hangDelayMillis, TimeUnit.MILLISECONDS);
        if (hung) {
          assertEquals(expectedOutcome, Outcome.HANG);
        } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. pkg/proxy/metrics/metrics.go

    		},
    		[]string{"code"},
    	)
    
    	// SyncProxyRulesLastQueuedTimestamp is the last time a proxy sync was
    	// requested. If this is much larger than
    	// kubeproxy_sync_proxy_rules_last_timestamp_seconds, then something is hung.
    	SyncProxyRulesLastQueuedTimestamp = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_last_queued_timestamp_seconds",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/internal/fuzz/worker.go

    			}
    			// Worker exited non-zero or was terminated by a non-interrupt
    			// signal (for example, SIGSEGV) while fuzzing.
    			return fmt.Errorf("fuzzing process hung or terminated unexpectedly: %w", err)
    			// TODO(jayconrod,katiehockman): if -keepfuzzing, restart worker.
    
    		case input := <-w.coordinator.inputC:
    			// Received input from coordinator.
    			args := fuzzArgs{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin.go

    	return
    }
    func pthread_kill_trampoline()
    
    // osinit_hack is a clumsy hack to work around Apple libc bugs
    // causing fork+exec to hang in the child process intermittently.
    // See go.dev/issue/33565 and go.dev/issue/56784 for a few reports.
    //
    // The stacks obtained from the hung child processes are in
    // libSystem_atfork_child, which is supposed to reinitialize various
    // parts of the C library in the new process.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. docs/vi/docs/tutorial/first-steps.md

    
    ...
    ```
    
    #### OpenAPI dùng để làm gì?
    
    Cấu trúc OpenAPI là sức mạnh của tài liệu tương tác.
    
    Và có hàng tá các bản thay thế, tất cả đều dựa trên OpenAPI. Bạn có thể dễ dàng thêm bất kì bản thay thế bào cho ứng dụng của bạn được xây dựng với **FastAPI**.
    
    Bạn cũng có thể sử dụng nó để sinh code tự động, với các client giao viết qua API của bạn. Ví dụ, frontend, mobile hoặc các ứng dụng IoT.
    
    ## Tóm lại, từng bước một
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. src/compress/gzip/gunzip_test.go

    		if err == nil {
    			t.Errorf("Copy succeeded")
    		} else {
    			t.Logf("Copy failed (correctly): %v", err)
    		}
    		done <- true
    	}()
    	select {
    	case <-time.After(1 * time.Second):
    		t.Errorf("Copy hung")
    	case <-done:
    		// ok
    	}
    }
    
    func TestMultistreamFalse(t *testing.T) {
    	// Find concatenation test.
    	var tt gunzipTest
    	for _, tt = range gunzipTests {
    		if strings.HasSuffix(tt.desc, " x2") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  10. 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)
Back to top