Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 190 for hung (0.1 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/interface.go

    	}
    }
    
    // NewFromKubeconfig will create a lock of a given type according to the input parameters.
    // Timeout set for a client used to contact to Kubernetes should be lower than
    // RenewDeadline to keep a single hung request from forcing a leader loss.
    // Setting it to max(time.Second, RenewDeadline/2) as a reasonable heuristic.
    // nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/testdata/script/test_fuzz_minimize.txt

    ! go test -fuzz=FuzzMinimizerNonrecoverable -run=FuzzMinimizerNonrecoverable -fuzztime=10000x .
    ! stdout '^ok'
    ! stdout 'minimizing'
    stdout -count=1 '^\s+fuzzing process hung or terminated unexpectedly: exit status 99'
    stdout FAIL
    
    # Check that re-running the value causes a crash.
    ! go test -run=FuzzMinimizerNonrecoverable .
    rm testdata
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 16:15:36 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  4. src/net/ipsock_plan9.go

    			ctl.WriteString("hangup")
    			errc <- mapErr(ctx.Err())
    		case <-written:
    			errc <- nil
    		}
    	}()
    	_, err := ctl.WriteString(msg)
    	close(written)
    	if e := <-errc; err == nil && e != nil { // we hung up
    		return e
    	}
    	return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/syscall/exec_unix.go

    // is done holding ForkLock for writing. At least, that's the idea.
    // There are some complications.
    //
    // Some system calls that create new file descriptors can block
    // for arbitrarily long times: open on a hung NFS server or named
    // pipe, accept on a socket, and so on. We can't reasonably grab
    // the lock across those operations.
    //
    // It is worse to inherit some file descriptors than others.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top