Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Hangul (0.12 sec)

  1. cmd/metrics-v3-types.go

    const (
    	// CounterMT - represents a counter metric.
    	CounterMT MetricType = iota
    	// GaugeMT - represents a gauge metric.
    	GaugeMT
    	// HistogramMT - represents a histogram metric.
    	HistogramMT
    	// rangeL - represents a range label.
    	rangeL = "range"
    )
    
    func (mt MetricType) String() string {
    	switch mt {
    	case CounterMT:
    		return "counter"
    	case GaugeMT:
    		return "gauge"
    	case HistogramMT:
    		return "histogram"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. cmd/metrics-v3-bucket-replication.go

    		bucketL)
    	bucketReplLatencyMsMD = NewGaugeMD(bucketReplLatencyMs,
    		"Replication latency on a bucket in milliseconds",
    		bucketL, operationL, rangeL, targetArnL)
    	bucketReplProxiedDeleteTaggingRequestsTotalMD = NewCounterMD(bucketReplProxiedDeleteTaggingRequestsTotal,
    		"Number of DELETE tagging requests proxied to replication target",
    		bucketL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/internal/poll/fd_plan9.go

    	return fd.readLock()
    }
    
    // ReadUnlock wraps FD.readUnlock.
    func (fd *FD) ReadUnlock() {
    	fd.readUnlock()
    }
    
    func isHangup(err error) bool {
    	return err != nil && stringslite.HasSuffix(err.Error(), "Hangup")
    }
    
    func isInterrupted(err error) bool {
    	return err != nil && stringslite.HasSuffix(err.Error(), "interrupted")
    }
    
    // IsPollDescriptor reports whether fd is the descriptor being used by the poller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

     * <tr>
     * <td width="20%"><b>URL</b></td>
     * <td><b>Description</b></td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>smb://users-nyc;miallen:mypass@angus/tmp/</code></td>
     * <td>
     * This URL references a share called <code>tmp</code> on the server
     * <code>angus</code> as user <code>miallen</code> who's password is
     * <code>mypass</code>.
     * </td>
     * </tr>
     * 
     * <tr>
     * <td width="20%">
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  syscall.Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{1161, "EDC8161I", "The file system cannot currently be moved."},
    }
    
    // Signal table
    var signalList = [...]struct {
    	num  Signal
    	name string
    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGABT", "aborted"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGPOLL", "pollable event"},
    	{6, "SIGURG", "urgent I/O condition"},
    	{7, "SIGSTOP", "stop process"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/syscall/zerrors_solaris_amd64.go

    	148: "no route to host",
    	149: "operation already in progress",
    	150: "operation now in progress",
    	151: "stale NFS file handle",
    }
    
    // Signal table
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal Instruction",
    	5:  "trace/Breakpoint Trap",
    	6:  "abort",
    	7:  "emulation Trap",
    	8:  "arithmetic Exception",
    	9:  "killed",
    	10: "bus Error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  10. src/net/http/httputil/reverseproxy_test.go

    	const backendResponse = "I am the backend"
    	const backendStatus = 404
    	backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		if r.Method == "GET" && r.FormValue("mode") == "hangup" {
    			c, _, _ := w.(http.Hijacker).Hijack()
    			c.Close()
    			return
    		}
    		if len(r.TransferEncoding) > 0 {
    			t.Errorf("backend got unexpected TransferEncoding: %v", r.TransferEncoding)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top