Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for aiofiles (0.17 sec)

  1. src/cmd/cgo/doc.go

    to auto-update code from Go 1.14 and earlier:
    
    	go tool fix -r eglconf <pkg>
    
    # Using cgo directly
    
    Usage:
    
    	go tool cgo [cgo options] [-- compiler options] gofiles...
    
    Cgo transforms the specified input Go source files into several output
    Go and C source files.
    
    The compiler options are passed through uninterpreted when
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg go/build, type Package struct, CgoCFLAGS []string
    pkg go/build, type Package struct, CgoFiles []string
    pkg go/build, type Package struct, CgoLDFLAGS []string
    pkg go/build, type Package struct, CgoPkgConfig []string
    pkg go/build, type Package struct, Dir string
    pkg go/build, type Package struct, Doc string
    pkg go/build, type Package struct, GoFiles []string
    pkg go/build, type Package struct, Goroot bool
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  3. misc/ios/detect.go

    	}
    
    	mps := detectMobileProvisionFiles(udids)
    	if len(mps) == 0 {
    		fail("did not find mobile provision matching device udids %q", udids)
    	}
    
    	fmt.Println("# Available provisioning profiles below.")
    	fmt.Println("# NOTE: Any existing app on the device with the app id specified by GOIOS_APP_ID")
    	fmt.Println("# will be overwritten when running Go programs.")
    	for _, mp := range mps {
    		fmt.Println()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 19 23:33:30 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  4. misc/go_android_exec/main.go

    			if err := adbCopyTree(deviceCwd, importPath); err != nil {
    				return 0, err
    			}
    
    			// Copy .go files from the package.
    			goFiles, err := filepath.Glob("*.go")
    			if err != nil {
    				return 0, err
    			}
    			if len(goFiles) > 0 {
    				args := append(append([]string{"push"}, goFiles...), deviceCwd)
    				if err := adb(args...); err != nil {
    					return 0, err
    				}
    			}
    		}
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/api/main_test.go

    	if usePkgCache {
    		if _, ok := pkgTags[dir]; !ok {
    			pkgTags[dir] = info.AllTags
    			key = tagKey(dir, context, info.AllTags)
    		}
    	}
    
    	filenames := append(append([]string{}, info.GoFiles...), info.CgoFiles...)
    
    	// Parse package files.
    	var files []*ast.File
    	for _, file := range filenames {
    		f, err := w.parseFile(dir, file)
    		if err != nil {
    			log.Fatalf("error parsing package %s: %s", name, err)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top