Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for Hangul (0.17 sec)

  1. src/runtime/sigtab_linux_generic.go

    //go:build !mips && !mipsle && !mips64 && !mips64le && linux
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/* 0 */ {0, "SIGNONE: no trap"},
    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/signal_solaris.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/* 0 */ {0, "SIGNONE: no trap"},
    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt (rubout)"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit (ASCII FS)"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction (not reset when caught)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  3. src/runtime/sigtab_linux_mipsx.go

    //go:build (mips || mipsle || mips64 || mips64le) && linux
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/*  0 */ {0, "SIGNONE: no trap"},
    	/*  1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/*  2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/*  3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/*  4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/net/ipsock_plan9.go

    	if proto != "tcp" {
    		_, err := ctl.WriteString(msg)
    		return err
    	}
    	written := make(chan struct{})
    	errc := make(chan error)
    	go func() {
    		select {
    		case <-ctx.Done():
    			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
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. src/syscall/syscall_wasip1.go

    	SIGWINCH
    	SIGPOLL
    	SIGPWR
    	SIGSYS
    )
    
    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	switch s {
    	case SIGNONE:
    		return "no signal"
    	case SIGHUP:
    		return "hangup"
    	case SIGINT:
    		return "interrupt"
    	case SIGQUIT:
    		return "quit"
    	case SIGILL:
    		return "illegal instruction"
    	case SIGTRAP:
    		return "trace/breakpoint trap"
    	case SIGABRT:
    		return "abort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top