Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for tools (0.16 sec)

  1. doc/next/3-tools.md

    ## Tools {#tools}
    
    ### Go command {#go-command}
    
    Setting the `GOROOT_FINAL` environment variable no longer has an effect
    ([#62047](https://go.dev/issue/62047)).
    Distributions that install the `go` command to a location other than
    `$GOROOT/bin/go` should install a symlink instead of relocating
    or copying the `go` binary.
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 14 16:58:10 GMT 2024
    - 339 bytes
    - Viewed (0)
  2. doc/initial/3-tools.md

    ## Tools {#tools}
    
    ### Go command {#go-command}
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jan 22 18:07:49 GMT 2024
    - 65 bytes
    - Viewed (0)
  3. misc/ios/README

    First make sure you have a valid developer certificate and have setup your device properly
    to run apps signed by your developer certificate. Then install the libimobiledevice and
    ideviceinstaller tools from https://www.libimobiledevice.org/. Use the HEAD versions from
    source; the stable versions have bugs that prevents the Go exec wrapper to install and run
    apps.
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Dec 29 21:49:26 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/03-gopls.yml

    name: Gopls bugs or feature requests
    description: Issues or feature requests for the Go language server (gopls)
    title: "x/tools/gopls: issue title"
    labels: ["gopls", "Tools"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: input
        id: gopls-version
        attributes:
          label: "gopls version"
          description: "Output of `gopls -v version` on the command line"
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/11-language-change.yml

          description: "What is the cost of this proposal? (Every language change has a cost)"
    
      - type: input
        id: go-toolchain
        attributes:
          label: Changes to Go ToolChain
          description: "How many tools (such as vet, gopls, gofmt, goimports, etc.) would be affected? "
        validations:
          required: false
    
      - type: input
        id: perf-costs
        attributes:
          label: Performance Costs
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VGATHERQPD (DX)(Z23*1),K1,Z15 // 6272fd41933c3a
    	// EVEX: VCVTPD2DQ with Y suffix (VL=2).
    	VCVTPD2DQY (BX), X20  // 62e1ff28e623
    	VCVTPD2DQY (R11), X30 // 6241ff28e633
    	// XED encoder uses EVEX.X=0 for these; most x86 tools use EVEX.X=1.
    	// Either way is OK.
    	VMOVQ SP, X20  // 62e1fd086ee4 or 62a1fd086ee4
    	VMOVQ BP, X20  // 62e1fd086ee5 or 62a1fd086ee5
    	VMOVQ R14, X20 // 62c1fd086ee6 or 6281fd086ee6
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    are different characters.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may disallow the NUL character (U+0000) in the source text.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may ignore a UTF-8-encoded byte order mark
    (U+FEFF) if it is the first Unicode code point in the source text.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/clean.bat

    in the LICENSE file.
    L4:
    L5:@echo off
    L6:
    L7:setlocal
    L8:
    L9:set GOBUILDFAIL=0
    L10:
    L11:go tool dist env -w -p >env.bat
    L12:if errorlevel 1 goto fail
    L13:call .\env.bat
    L14:del env.bat
    L15:echo.
    L16:
    L17:if exist %GOTOOLDIR%\dist.exe goto distok
    L18:echo cannot find %GOTOOLDIR%\dist; nothing to clean
    L19:goto fail
    L20::distok
    L21:
    L22:"%GOBIN%\go" clean -i std
    L23:"%GOBIN%\go" tool dist clean
    L24:"%GOBIN%\go" clean -i cmd
    L25:
    L26:goto end
    L27:
    L28::fail
    L29:set GOBUILDFAIL=1
    ...
    Batch File
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu May 12 16:59:17 GMT 2022
    - 600 bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    from Go 1.9 and earlier, use the cftype or jni rewrites in the Go fix tool:
    
    	go tool fix -r cftype <pkg>
    	go tool fix -r jni <pkg>
    
    It will replace nil with 0 in the appropriate places.
    
    The EGLDisplay case was introduced in Go 1.12. Use the egl rewrite
    to auto-update code from Go 1.11 and earlier:
    
    	go tool fix -r egl <pkg>
    
    The EGLConfig case was introduced in Go 1.15. Use the eglconf rewrite
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  10. src/bootstrap.bash

    	# prepare a clean toolchain for others.
    	true
    else
    	rm -f bin/go_${goos}_${goarch}_exec
    	mv bin/*_*/* bin
    	rmdir bin/*_*
    	rm -rf "pkg/${gohostos}_${gohostarch}" "pkg/tool/${gohostos}_${gohostarch}"
    fi
    
    rm -rf pkg/bootstrap pkg/obj .git
    
    echo ----
    echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)".
    echo Building tbz.
    cd ..
    Shell Script
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jan 20 17:52:26 GMT 2023
    - 2.3K bytes
    - Viewed (0)
Back to top