Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for GO (0.04 sec)

  1. src/cmd/go/internal/modindex/scan.go

    // Copyright 2022 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 modindex
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/str"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"go/build"
    	"go/doc"
    	"go/scanner"
    	"go/token"
    	"io/fs"
    	"path/filepath"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vet/vet.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 vet implements the “go vet” command.
    package vet
    
    import (
    	"context"
    	"fmt"
    	"path/filepath"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/trace"
    	"cmd/go/internal/work"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/sort/sort_impl_go121.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.
    
    //go:build go1.21
    
    // Starting with Go 1.21, we can leverage the new generic functions from the
    // slices package to implement some `sort` functions faster. However, until
    // the bootstrap compiler uses Go 1.21 or later, we keep a fallback version
    // in sort_impl_120.go that retains the old implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 13:00:18 UTC 2023
    - 876 bytes
    - Viewed (0)
  4. utils/utils_unix_test.go

    	}{
    		{
    			file: "/Users/name/go/pkg/mod/gorm.io/gorm@v1.2.3/utils/utils.go",
    			want: "/Users/name/go/pkg/mod/gorm.io/",
    		},
    		{
    			file: "/go/work/proj/gorm/utils/utils.go",
    			want: "/go/work/proj/gorm/",
    		},
    		{
    			file: "/go/work/proj/gorm_alias/utils/utils.go",
    			want: "/go/work/proj/gorm_alias/",
    		},
    		{
    			file: "/go/work/proj/my.gorm.io/gorm@v1.2.3/utils/utils.go",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Nov 21 02:48:13 UTC 2022
    - 731 bytes
    - Viewed (0)
  5. test/fixedbugs/issue4463.go

    	go unsafe.Alignof(a)		// ERROR "not used|discards result"
    	go unsafe.Offsetof(s.f)		// ERROR "not used|discards result"
    	go unsafe.Sizeof(a)		// ERROR "not used|discards result"
    
    	go close(c)
    	go copy(a, a)
    	go delete(m, 0)
    	go panic(0)
    	go print("foo")
    	go println("bar")
    	go recover()
    
    	defer append(a, 0)		// ERROR "not used|discards result"
    	defer cap(a)			// ERROR "not used|discards result"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/go.sum

    github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
    github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
    github.com/google/pprof v0.0.0-20240528025155-186aa0362fba h1:ql1qNgCyOB7iAEk8JTNM+zJrgIbnyCKX/wdlyPufP5g=
    github.com/google/pprof v0.0.0-20240528025155-186aa0362fba/go.mod h1:K1liHPHnj73Fdn/EKuT8nrFqBihUSKXoLYU0BuatOYo=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

                            z.go
                    quux/              (go code in package main)
                        y.go
    
    
    The code in z.go is imported as "foo/internal/baz", but that
    import statement can only appear in source files in the subtree
    rooted at foo. The source files foo/f.go, foo/bar/x.go, and
    foo/quux/y.go can all import "foo/internal/baz", but the source file
    crash/bang/b.go cannot.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. src/runtime/fastlog2table.go

    // Code generated by mkfastlog2table.go; DO NOT EDIT.
    // Run go generate from src/runtime to update.
    // See mkfastlog2table.go for comments.
    
    package runtime
    
    const fastlogNumBits = 5
    
    var fastlog2Table = [1<<fastlogNumBits + 1]float64{
    	0,
    	0.0443941193584535,
    	0.08746284125033943,
    	0.12928301694496647,
    	0.16992500144231248,
    	0.2094533656289499,
    	0.24792751344358555,
    	0.28540221886224837,
    	0.3219280948873623,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 09 07:21:16 UTC 2019
    - 904 bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    	// from updating go.mod and go.sum or reporting errors when updates are
    	// needed. A package should set this if it would cause go.mod to be written
    	// multiple times (for example, 'go get' calls LoadPackages multiple times) or
    	// if it needs some other operation to be successful before go.mod and go.sum
    	// can be written (for example, 'go mod download' must download modules before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/cmd/trace/testdata/generate.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.
    
    //go:generate go run mktests.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 209 bytes
    - Viewed (0)
Back to top