Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 166 for seni (0.05 sec)

  1. src/syscall/zerrors_freebsd_386.go

    	53: "software caused connection abort",
    	54: "connection reset by peer",
    	55: "no buffer space available",
    	56: "socket is already connected",
    	57: "socket is not connected",
    	58: "can't send after socket shutdown",
    	59: "too many references: can't splice",
    	60: "operation timed out",
    	61: "connection refused",
    	62: "too many levels of symbolic links",
    	63: "file name too long",
    	64: "host is down",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  2. src/syscall/zerrors_freebsd_amd64.go

    	53: "software caused connection abort",
    	54: "connection reset by peer",
    	55: "no buffer space available",
    	56: "socket is already connected",
    	57: "socket is not connected",
    	58: "can't send after socket shutdown",
    	59: "too many references: can't splice",
    	60: "operation timed out",
    	61: "connection refused",
    	62: "too many levels of symbolic links",
    	63: "file name too long",
    	64: "host is down",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers_test.go

    	drainAllWorkers(podWorkers)
    
    	// should observe pod running
    	pod1 := podWorkers.podSyncStatuses[types.UID("1")]
    	if pod1.IsTerminated() {
    		t.Fatalf("unexpected pod state: %#v", pod1)
    	}
    
    	// send another update to the pod
    	podWorkers.UpdatePod(UpdatePodOptions{
    		Pod:        newNamedPod("1", "test1", "pod1", false),
    		UpdateType: kubetypes.SyncPodUpdate,
    	})
    	drainAllWorkers(podWorkers)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go

    	{54, "ECONNRESET", "connection reset by peer"},
    	{55, "ENOBUFS", "no buffer space available"},
    	{56, "EISCONN", "socket is already connected"},
    	{57, "ENOTCONN", "socket is not connected"},
    	{58, "ESHUTDOWN", "can't send after socket shutdown"},
    	{59, "ETOOMANYREFS", "too many references: can't splice"},
    	{60, "ETIMEDOUT", "operation timed out"},
    	{61, "ECONNREFUSED", "connection refused"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go

    	{54, "ECONNRESET", "connection reset by peer"},
    	{55, "ENOBUFS", "no buffer space available"},
    	{56, "EISCONN", "socket is already connected"},
    	{57, "ENOTCONN", "socket is not connected"},
    	{58, "ESHUTDOWN", "can't send after socket shutdown"},
    	{59, "ETOOMANYREFS", "too many references: can't splice"},
    	{60, "ETIMEDOUT", "operation timed out"},
    	{61, "ECONNREFUSED", "connection refused"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    		p.expr(x.Key)
    		p.print(token.RBRACK)
    		p.expr(x.Value)
    
    	case *ast.ChanType:
    		switch x.Dir {
    		case ast.SEND | ast.RECV:
    			p.print(token.CHAN)
    		case ast.RECV:
    			p.print(token.ARROW, token.CHAN) // x.Arrow and x.Pos() are the same
    		case ast.SEND:
    			p.print(token.CHAN)
    			p.setPos(x.Arrow)
    			p.print(token.ARROW)
    		}
    		p.print(blank)
    		p.expr(x.Value)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    	rxAsmComment = regexp.MustCompile(`^\s*(.*?)\s*(?://\s*(.+)\s*)?$`)
    
    	// Regexp to extract an architecture check: architecture name (or triplet),
    	// followed by semi-colon, followed by a comma-separated list of opcode checks.
    	// Extraneous spaces are ignored.
    	//
    	// An example: arm64/v8.1 : -`ADD` , `SUB`
    	//	"(\w+)" matches "arm64" (architecture name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. okhttp/api/okhttp.api

    	public abstract fun cancel ()V
    	public abstract fun close (ILjava/lang/String;)Z
    	public abstract fun queueSize ()J
    	public abstract fun request ()Lokhttp3/Request;
    	public abstract fun send (Ljava/lang/String;)Z
    	public abstract fun send (Lokio/ByteString;)Z
    }
    
    public abstract interface class okhttp3/WebSocket$Factory {
    	public abstract fun newWebSocket (Lokhttp3/Request;Lokhttp3/WebSocketListener;)Lokhttp3/WebSocket;
    }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	{54, "ECONNRESET", "connection reset by peer"},
    	{55, "ENOBUFS", "no buffer space available"},
    	{56, "EISCONN", "socket is already connected"},
    	{57, "ENOTCONN", "socket is not connected"},
    	{58, "ESHUTDOWN", "can't send after socket shutdown"},
    	{59, "ETOOMANYREFS", "too many references: can't splice"},
    	{60, "ETIMEDOUT", "operation timed out"},
    	{61, "ECONNREFUSED", "connection refused"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	{54, "ECONNRESET", "connection reset by peer"},
    	{55, "ENOBUFS", "no buffer space available"},
    	{56, "EISCONN", "socket is already connected"},
    	{57, "ENOTCONN", "socket is not connected"},
    	{58, "ESHUTDOWN", "can't send after socket shutdown"},
    	{59, "ETOOMANYREFS", "too many references: can't splice"},
    	{60, "ETIMEDOUT", "operation timed out"},
    	{61, "ECONNREFUSED", "connection refused"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
Back to top