Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for ProcessID (0.34 sec)

  1. misc/ios/go_ios_exec.go

    		return fmt.Errorf("xcrun simctl launch booted %q: %v", bundleID, err)
    	}
    	var processID int
    	var ignore string
    	if _, err := fmt.Sscanf(string(out), "%s %d", &ignore, &processID); err != nil {
    		return fmt.Errorf("runSimulator: couldn't find processID from `simctl launch`: %v (%q)", err, out)
    	}
    	_, err = runLLDB("ios-simulator", appdir, strconv.Itoa(processID), args)
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/service.go

    	CurrentState            uint32
    	ControlsAccepted        uint32
    	Win32ExitCode           uint32
    	ServiceSpecificExitCode uint32
    	CheckPoint              uint32
    	WaitHint                uint32
    	ProcessId               uint32
    	ServiceFlags            uint32
    }
    
    type ENUM_SERVICE_STATUS_PROCESS struct {
    	ServiceName          *uint16
    	DisplayName          *uint16
    	ServiceStatusProcess SERVICE_STATUS_PROCESS
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/emit.go

    // 's', returning an error if something went wrong.
    func (s *emitState) openCounterFile(metaHash [16]byte) error {
    	processID := os.Getpid()
    	fn := fmt.Sprintf(coverage.CounterFileTempl, coverage.CounterFilePref, metaHash, processID, time.Now().UnixNano())
    	s.cfname = filepath.Join(s.outdir, fn)
    	s.cftmp = filepath.Join(s.outdir, "tmp."+fn)
    	var err error
    	s.cf, err = os.Create(s.cftmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/syscall/types_windows.go

    }
    
    const _EXTENDED_STARTUPINFO_PRESENT = 0x00080000
    
    type ProcessInformation struct {
    	Process   Handle
    	Thread    Handle
    	ProcessId uint32
    	ThreadId  uint32
    }
    
    type ProcessEntry32 struct {
    	Size            uint32
    	Usage           uint32
    	ProcessID       uint32
    	DefaultHeapID   uintptr
    	ModuleID        uint32
    	Threads         uint32
    	ParentProcessID uint32
    	PriClassBase    int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

        }
    
        private static String[] determinePsCommand() {
            if (isWindows()) {
                return new String[]{"wmic", "process", "get", "processid,commandline"};
            } else if (isMacOS()) {
                return new String[]{"ps", "x", "-o", "pid,command"};
            } else {
                return new String[]{"ps", "x", "-o", "pid,cmd"};
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

                return line.contains("jetbrains.buildServer.agent.AgentMain");
            }
        }
    
        private StdoutAndPatterns ps() {
            String[] command = isWindows() ? new String[]{"wmic", "process", "get", "processid,commandline"} : new String[]{"ps", "x"};
            ExecResult result = run(command);
            output.printf("Run: %s", Arrays.toString(command));
            output.printf("Stdout: %s", result.stdout);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/syscall_windows.go

    	TH32CS_SNAPMODULE   = 0x08
    	TH32CS_SNAPMODULE32 = 0x10
    )
    
    const MAX_MODULE_NAME32 = 255
    
    type ModuleEntry32 struct {
    	Size         uint32
    	ModuleID     uint32
    	ProcessID    uint32
    	GlblcntUsage uint32
    	ProccntUsage uint32
    	ModBaseAddr  uintptr
    	ModBaseSize  uint32
    	ModuleHandle syscall.Handle
    	Module       [MAX_MODULE_NAME32 + 1]uint16
    	ExePath      [syscall.MAX_PATH]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. src/syscall/exec_windows.go

    	}
    	if err != nil {
    		return 0, 0, err
    	}
    	defer CloseHandle(Handle(pi.Thread))
    	runtime.KeepAlive(fd)
    	runtime.KeepAlive(sys)
    
    	return int(pi.ProcessId), uintptr(pi.Process), nil
    }
    
    func Exec(argv0 string, argv []string, envv []string) (err error) {
    	return EWINDOWS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	data     *ProcThreadAttributeList
    	pointers []unsafe.Pointer
    }
    
    type ProcessInformation struct {
    	Process   Handle
    	Thread    Handle
    	ProcessId uint32
    	ThreadId  uint32
    }
    
    type ProcessEntry32 struct {
    	Size            uint32
    	Usage           uint32
    	ProcessID       uint32
    	DefaultHeapID   uintptr
    	ModuleID        uint32
    	Threads         uint32
    	ParentProcessID uint32
    	PriClassBase    int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. api/go1.4.txt

    pkg syscall (windows-386), type ProcessEntry32 struct, ParentProcessID uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, PriClassBase int32
    pkg syscall (windows-386), type ProcessEntry32 struct, ProcessID uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, Size uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, Threads uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, Usage uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
Back to top