Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WaitForEvent (0.17 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor_test_util.cc

      return SE_EVENT_UNKNOWN;
    }
    void RecordEvent(const SP_Device* const device, SP_Stream stream,
                     SP_Event event, TF_Status* const status) {}
    void WaitForEvent(const SP_Device* const device, SP_Stream stream,
                      SP_Event event, TF_Status* const status) {}
    void CreateTimer(const SP_Device* const device, SP_Timer* timer,
                     TF_Status* const status) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 21 20:09:00 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/runtime-lldb_test.go

        print "Process launched"
        listener = debugger.GetListener()
        process.broadcaster.AddListener(listener, lldb.SBProcess.eBroadcastBitStateChanged)
        while True:
          event = lldb.SBEvent()
          if listener.WaitForEvent(TIMEOUT_SECS, event):
            if lldb.SBProcess.GetRestartedFromEvent(event):
              continue
            state = process.GetState()
            if state in [lldb.eStateUnloaded, lldb.eStateLaunching, lldb.eStateRunning]:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. misc/ios/go_ios_exec.go

    if platform != 'remote-ios':
    	# For the local emulator the program is ready to run.
    	# For remote device runs, we need to wait for eStateConnected,
    	# below.
    	run_program()
    
    while True:
    	if not listener.WaitForEvent(1, event):
    		continue
    	if not lldb.SBProcess.EventIsProcessEvent(event):
    		continue
    	if running:
    		# Pass through stdout and stderr.
    		while True:
    			out = process.GetSTDOUT(8192)
    			if not out:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
Back to top