Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Team (0.03 sec)

  1. src/crypto/internal/edwards25519/doc.go

    // operations can use filippo.io/edwards25519, an extended version of this
    // package repackaged as an importable module.
    //
    // (Note that filippo.io/edwards25519 and github.com/gtank/ristretto255 are not
    // maintained by the Go team and are not covered by the Go 1 Compatibility Promise.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/README.md

    hosting [telemetry.go.dev](https://telemetry.go.dev) and instrumenting Go
    toolchain programs with opt-in telemetry.
    
    **Warning**: this repository is intended for use only in tools maintained by
    the Go team, including tools in the Go distribution and auxiliary tools like
    [gopls](https://pkg.go.dev/golang.org/x/tools/gopls) or
    [govulncheck](https://pkg.go.dev/golang.org/x/vuln/cmd/govulncheck). There are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. misc/ios/detect.go

    		appID, err := plistExtract(fname, "Entitlements:application-identifier")
    		check(err)
    		fmt.Printf("export GOIOS_APP_ID=%s\n", appID)
    
    		teamID, err := plistExtract(fname, "Entitlements:com.apple.developer.team-identifier")
    		check(err)
    		fmt.Printf("export GOIOS_TEAM_ID=%s\n", teamID)
    	}
    }
    
    func detectMobileProvisionFiles(udids [][]byte) []string {
    	cmd := exec.Command("mdfind", "-name", ".mobileprovision")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. doc/README.md

    ```
    go run golang.org/x/website/cmd/golangorg@latest -goroot=..
    ```
    
    Then open http://localhost:6060/doc/next. Refresh the page to see your latest edits.
    
    ## For the release team
    
    The `relnote` tool, at `golang.org/x/build/cmd/relnote`, operates on the files
    in `doc/next`.
    
    As a release cycle nears completion, run `relnote todo` to get a list of
    unfinished release note work.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/doc.go

    //
    // The SHAKE functions are recommended for most new uses. They can produce
    // output of arbitrary length. SHAKE256, with an output length of at least
    // 64 bytes, provides 256-bit security against all attacks.  The Keccak team
    // recommends it for most applications upgrading from SHA2-512. (NIST chose a
    // much stronger, but much slower, sponge instance for SHA3-512.)
    //
    // The SHA-3 functions are "drop-in" replacements for the SHA-2 functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/go/build/vendor_test.go

    			_, pkg, found = strings.Cut(fullPkg, "/vendor/")
    			if !found {
    				continue
    			}
    		}
    		if !isAllowed(pkg) {
    			t.Errorf(`
    		Package %q should not be vendored into this repo.
    		After getting approval from the Go team, add it to allowedPackagePrefixes
    		in %s.`,
    				pkg, thisFile)
    		}
    	}
    }
    
    func isAllowed(pkg string) bool {
    	for _, pre := range allowedPackagePrefixes {
    		if pkg == pre || strings.HasPrefix(pkg, pre+"/") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 16:29:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top