Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for GO (0.07 sec)

  1. src/cmd/compile/internal/inline/inlheur/testdata/props/returns2.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // DO NOT EDIT (use 'go test -v -update-expected' instead.)
    // See cmd/compile/internal/inline/inlheur/testdata/props/README.txt
    // for more information on the format of this file.
    // <endfilepreamble>
    
    package returns2
    
    // returns2.go T_return_feeds_iface_call 18 0 1
    // <endpropsdump>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/go.mod

    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    	github.com/emicklei/go-restful/v3 v3.11.0 // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-errors/errors v1.4.2 // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    	github.com/go-openapi/swag v0.22.4 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/go/build/doc.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package build gathers information about Go packages.
    //
    // # Go Path
    //
    // The Go path is a list of directory trees containing Go source code.
    // It is consulted to resolve imports that cannot be found in the standard
    // Go tree. The default path is the value of the GOPATH environment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/runtime/race/testdata/waitgroup_test.go

    	var x int
    	_ = x
    	var wg sync.WaitGroup
    	go func() {
    		wg.Add(1)
    		runtime.Gosched()
    		x = 1
    		wg.Done()
    		c <- true
    	}()
    	go func() {
    		wg.Add(1)
    		runtime.Gosched()
    		x = 2
    		wg.Done()
    		c <- true
    	}()
    	wg.Wait()
    	<-c
    	<-c
    }
    
    func TestRaceWaitGroupWrongAdd(t *testing.T) {
    	c := make(chan bool, 2)
    	var wg sync.WaitGroup
    	go func() {
    		wg.Add(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 22:09:38 UTC 2017
    - 5.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package versions
    
    import (
    	"strings"
    )
    
    // Note: If we use build tags to use go/versions when go >=1.22,
    // we run into go.dev/issue/53737. Under some operations users would see an
    // import of "go/versions" even if they would not compile the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // DO NOT EDIT (use 'go test -v -update-expected' instead.)
    // See cmd/compile/internal/inline/inlheur/testdata/props/README.txt
    // for more information on the format of this file.
    // <endfilepreamble>
    
    package funcflags
    
    import "os"
    
    // funcflags.go T_simple 20 0 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/toolchain.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modfetch
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"sort"
    	"strings"
    
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch/codehost"
    )
    
    // A toolchainRepo is a synthesized repository reporting Go toolchain versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/msan_test.go

    	cases := []struct {
    		src         string
    		wantErr     bool
    		experiments []string
    	}{
    		{src: "msan.go"},
    		{src: "msan2.go"},
    		{src: "msan2_cmsan.go"},
    		{src: "msan3.go"},
    		{src: "msan4.go"},
    		{src: "msan5.go"},
    		{src: "msan6.go"},
    		{src: "msan7.go"},
    		{src: "msan8.go"},
    		{src: "msan_fail.go", wantErr: true},
    		// This may not always fail specifically due to MSAN. It may sometimes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/runtime/cgo/handle.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgo
    
    import (
    	"sync"
    	"sync/atomic"
    )
    
    // Handle provides a way to pass values that contain Go pointers
    // (pointers to memory allocated by Go) between Go and C without
    // breaking the cgo pointer passing rules. A Handle is an integer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/mod_test.go

    		out := slices.Clone(list)
    		ModSort(out)
    		return out
    	})
    }
    
    var modSortTests = []testCase1[[]module.Version, []module.Version]{
    	{
    		mvl(`z v1.1; a v1.2; a v1.1; go 1.3; toolchain 1.3; toolchain 1.2; go 1.2`),
    		mvl(`a v1.1; a v1.2; go 1.2; go 1.3; toolchain 1.2; toolchain 1.3; z v1.1`),
    	},
    }
    
    func mvl(s string) []module.Version {
    	var list []module.Version
    	for _, f := range strings.Split(s, ";") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 17:51:28 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top