Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 247 for Exceeded (0.1 sec)

  1. pkg/probe/grpc/grpc_test.go

    		s := New()
    		p, o, err := s.Probe("", "", 32, time.Second)
    		assert.Equal(t, probe.Failure, p)
    		assert.Equal(t, nil, err)
    		assert.Equal(t, "timeout: failed to connect service \":32\" within 1s: context deadline exceeded", o)
    	})
    	t.Run("Should: return nil error because connection closed", func(t *testing.T) {
    		s := New()
    		server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 20 00:23:53 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprog/gc.go

    	// did not operate as expected.
    	//
    	// In the context of this test, this indicates a large amount of
    	// fragmentation with physical pages that are otherwise unused but not
    	// returned to the OS.
    	fmt.Printf("exceeded physical memory overuse threshold of %3.2f%%: %3.2f%%\n"+
    		"(alloc: %d, goal: %d, sys: %d, rel: %d, objs: %d)\n", threshold*100, overuse*100,
    		stats.HeapAlloc, stats.NextGC, stats.HeapSys, stats.HeapReleased, len(saved))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  3. pkg/test/framework/suitecontext.go

    }
    
    // RequestTestDump is called by the test context for a failed test to request a full
    // dump of the system state. Returns true if the dump may proceed, or false if the
    // maximum number of dumps has been exceeded for this suite.
    func (c *suiteContext) RequestTestDump() bool {
    	return c.dumpCount.Inc() < c.settings.MaxDumps
    }
    
    func (c *suiteContext) ID() string {
    	return c.globalScope.id
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{25, "SIGTSTP", "stopped"},
    	{26, "SIGTRAP", "trace/breakpoint trap"},
    	{27, "SIGIOER", "I/O error"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGXCPU", "CPU time limit exceeded"},
    	{30, "SIGXFSZ", "file size limit exceeded"},
    	{31, "SIGVTALRM", "virtual timer expired"},
    	{32, "SIGPROF", "profiling timer expired"},
    	{33, "SIGDANGER", "danger"},
    	{34, "SIGTHSTOP", "stop thread"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. src/syscall/tables_js.go

    	EPIPE           Errno = 32      /* Broken pipe */
    	ENAMETOOLONG    Errno = 36      /* File name too long */
    	ENOSYS          Errno = 38      /* Function not implemented */
    	EDQUOT          Errno = 122     /* Quota exceeded */
    	EDOM            Errno = 33      /* Math arg out of domain of func */
    	ERANGE          Errno = 34      /* Math result not representable */
    	EDEADLK         Errno = 35      /* Deadlock condition */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  6. cmd/storage-errors.go

    package cmd
    
    import (
    	"context"
    	"errors"
    )
    
    // errMaxVersionsExceeded return error beyond 10000 (default) versions per object
    var errMaxVersionsExceeded = StorageErr("maximum versions exceeded, please delete few versions to proceed")
    
    // errUnexpected - unexpected error, requires manual intervention.
    var errUnexpected = StorageErr("unexpected error, please report this issue at https://github.com/minio/minio/issues")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    	"k8s.io/client-go/tools/remotecommand"
    )
    
    const (
    	// idleTimeout is the read/write deadline set for websocket server connection. Reading
    	// or writing the connection will return an i/o timeout if this deadline is exceeded.
    	// Currently, we use the same value as the kubelet websocket server.
    	defaultIdleConnectionTimeout = 4 * time.Hour
    
    	// Deadline for writing errors to the websocket connection before io/timeout.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_386.go

    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    	24: "CPU time limit exceeded",
    	25: "file size limit exceeded",
    	26: "virtual timer expired",
    	27: "profiling timer expired",
    	28: "window changed",
    	29: "I/O possible",
    	30: "power failure",
    	31: "bad system call",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  9. src/net/pipe.go

    			close(d.cancel)
    		})
    		return
    	}
    
    	// Time in the past, so close immediately.
    	if !closed {
    		close(d.cancel)
    	}
    }
    
    // wait returns a channel that is closed when the deadline is exceeded.
    func (d *pipeDeadline) wait() chan struct{} {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	return d.cancel
    }
    
    func isClosedChan(c <-chan struct{}) bool {
    	select {
    	case <-c:
    		return true
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_windows.go

    	EDOM - APPLICATION_ERROR:            "numerical argument out of domain",
    	EDOTDOT - APPLICATION_ERROR:         "RFS specific error",
    	EDQUOT - APPLICATION_ERROR:          "disk quota exceeded",
    	EEXIST - APPLICATION_ERROR:          "file exists",
    	EFAULT - APPLICATION_ERROR:          "bad address",
    	EFBIG - APPLICATION_ERROR:           "file too large",
    	EHOSTDOWN - APPLICATION_ERROR:       "host is down",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
Back to top