Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for Mitake (0.21 sec)

  1. misc/ios/go_ios_exec.go

    		return err
    	}
    
    	if err := installDevice(appdir); err != nil {
    		return err
    	}
    
    	if err := mountDevImage(); err != nil {
    		return err
    	}
    
    	// Kill any hanging debug bridges that might take up port 3222.
    	exec.Command("killall", "idevicedebugserverproxy").Run()
    
    	closer, err := startDebugBridge()
    	if err != nil {
    		return err
    	}
    	defer closer()
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  2. doc/go_mem.html

    allowing a racing thread to read 1 as well.
    </p>
    
    <p>
    Note that all these optimizations are permitted in C/C++ compilers:
    a Go compiler sharing a back end with a C/C++ compiler must take care
    to disable optimizations that are invalid for Go.
    </p>
    
    <p>
    Note that the prohibition on introducing data races
    does not apply if the compiler can prove that the races
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
Back to top