Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Team (0.05 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)
  7. misc/ios/go_ios_exec.go

    	// e.g. Z8B3JBXXXX.org.golang.sample, Z8B3JBXXXX prefix is available at
    	// https://developer.apple.com/membercenter/index.action#accountSummary as Team ID.
    	appID = getenv("GOIOS_APP_ID")
    
    	// e.g. Z8B3JBXXXX, available at
    	// https://developer.apple.com/membercenter/index.action#accountSummary as Team ID.
    	teamID = getenv("GOIOS_TEAM_ID")
    
    	// Device IDs as listed with ios-deploy -c.
    	deviceID = os.Getenv("GOIOS_DEVICE_ID")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  8. src/strings/example_test.go

    	fmt.Println(strings.Contains("seafood", ""))
    	fmt.Println(strings.Contains("", ""))
    	// Output:
    	// true
    	// false
    	// true
    	// true
    }
    
    func ExampleContainsAny() {
    	fmt.Println(strings.ContainsAny("team", "i"))
    	fmt.Println(strings.ContainsAny("fail", "ui"))
    	fmt.Println(strings.ContainsAny("ure", "ui"))
    	fmt.Println(strings.ContainsAny("failure", "ui"))
    	fmt.Println(strings.ContainsAny("foo", ""))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. src/internal/testenv/testenv.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package testenv provides information about what functionality
    // is available in different testing environments run by the Go team.
    //
    // It is an internal package because these details are specific
    // to the Go team's test setup (on build.golang.org) and not
    // fundamental to tests in general.
    package testenv
    
    import (
    	"bytes"
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    // By default, the go command may download modules from https://proxy.golang.org.
    // It may authenticate modules using the checksum database at
    // https://sum.golang.org. Both services are operated by the Go team at Google.
    // The privacy policies for these services are available at
    // https://proxy.golang.org/privacy and https://sum.golang.org/privacy,
    // respectively.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top