Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Keyboard (0.11 sec)

  1. src/runtime/signal_freebsd.go

    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    	/* 20 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  2. src/runtime/signal_openbsd.go

    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    	/* 20 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 18:58:08 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. src/runtime/signal_darwin.go

    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    	/* 20 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  4. src/runtime/signal_dragonfly.go

    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    	/* 20 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/signal_netbsd.go

    	/* 15 */ {_SigNotify + _SigKill, "SIGTERM: termination"},
    	/* 16 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/* 17 */ {0, "SIGSTOP: stop"},
    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 19 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue after stop"},
    	/* 20 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status has changed"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

                .assertHasCause('Could not resolve org.group.name:projectA:1.2')
                .assertHasCause("Could not connect to SFTP server at ${ivySftpRepo.serverUri}")
                .assertHasCause("Auth fail for methods 'password,keyboard-interactive,publickey'")
        }
    
        void "resolve dependencies from a SFTP Ivy repository with unsupported password authentication"() {
            given:
            server.withPasswordAuthenticationDisabled()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/os/signal/example_unix_test.go

    	ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt)
    	defer stop()
    
    	p, err := os.FindProcess(os.Getpid())
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// On a Unix-like system, pressing Ctrl+C on a keyboard sends a
    	// SIGINT signal to the process of the program in execution.
    	//
    	// This example simulates that by sending a SIGINT signal to itself.
    	if err := p.Signal(os.Interrupt); err != nil {
    		log.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test2json_interrupt.txt

    		ppid := os.Getppid()
    		os.Setenv("GO_TEST_INTERRUPT_PIDS", fmt.Sprintf("%d,%d", ppid, pid))
    	}
    
    	sentInterrupt := false
    	f.Fuzz(func(t *testing.T, orig string) {
    		if !sentInterrupt {
    			// Simulate a ctrl-C on the keyboard by sending SIGINT
    			// to the main test process and its parent.
    			for _, pid := range strings.Split(pids, ",") {
    				i, err := strconv.Atoi(pid)
    				if err != nil {
    					t.Fatal(err)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 08 03:52:44 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/runtime/sigtab_linux_generic.go

    	/* 18 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue"},
    	/* 19 */ {0, "SIGSTOP: stop, unblockable"},
    	/* 20 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/* 21 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTTIN: background read from tty"},
    	/* 22 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTTOU: background write to tty"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. src/runtime/sigtab_linux_mipsx.go

    	/*  21 */ {_SigNotify + _SigIgn, "SIGURG: urgent condition on socket"},
    	/*  22 */ {_SigNotify, "SIGIO: i/o now possible"},
    	/*  23 */ {0, "SIGSTOP: stop, unblockable"},
    	/*  24 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTSTP: keyboard stop"},
    	/*  25 */ {_SigNotify + _SigDefault + _SigIgn, "SIGCONT: continue"},
    	/*  26 */ {_SigNotify + _SigDefault + _SigIgn, "SIGTTIN: background read from tty"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6K bytes
    - Viewed (0)
Back to top