Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for provider (0.14 sec)

  1. .github/ISSUE_TEMPLATE/03-gopls.yml

          render: shell
        validations:
          required: true
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is better. A failing unit test is the best."
        validations:
          required: true
      - type: textarea
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:09:04 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/io/fs/readdir.go

    // license that can be found in the LICENSE file.
    
    package fs
    
    import (
    	"errors"
    	"internal/bytealg"
    	"slices"
    )
    
    // ReadDirFS is the interface implemented by a file system
    // that provides an optimized implementation of [ReadDir].
    type ReadDirFS interface {
    	FS
    
    	// ReadDir reads the named directory
    	// and returns a list of directory entries sorted by filename.
    	ReadDir(name string) ([]DirEntry, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/runtime/cpuprof.go

    			abi.FuncPCABIInternal(_System) + sys.PCQuantum,
    		}
    		p.log.write(nil, 0, hdr[:], lostStk[:])
    		p.lostAtomic = 0
    	}
    
    }
    
    // CPUProfile panics.
    // It formerly provided raw access to chunks of
    // a pprof-format profile generated by the runtime.
    // The details of generating that format have changed,
    // so this functionality has been removed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/version.go

    	// so use that.
    	DefaultGoWorkVersion = "1.18"
    
    	// ExplicitIndirectVersion is the Go version at which a
    	// module's go.mod file is expected to list explicit requirements on every
    	// module that provides any package transitively imported by that module.
    	//
    	// Other indirect dependencies of such a module can be safely pruned out of
    	// the module graph; see https://golang.org/ref/mod#graph-pruning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work.txt

    go env GOWORK
    ! stdout .
    
    go work init ./a ./b
    cmpenv go.work go.work.want
    go env GOWORK
    stdout '^'$WORK'(\\|/)gopath(\\|/)src(\\|/)go.work$'
    
    ! go run  example.com/b
    stderr 'a(\\|/)a.go:4:8: no required module provides package rsc.io/quote; to add it:\n\tcd '$WORK(\\|/)gopath(\\|/)src(\\|/)a'\n\tgo get rsc.io/quote'
    cd a
    go get rsc.io/quote
    cat go.mod
    go env GOMOD # go env GOMOD reports the module in a single module context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/internal/godebugs/table.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 godebugs provides a table of known GODEBUG settings,
    // for use by a variety of other packages, including internal/godebug,
    // runtime, runtime/metrics, and cmd/go/internal/load.
    package godebugs
    
    // An Info describes a single known GODEBUG setting.
    type Info struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/internal/telemetry/telemetry.go

    }
    
    // SetMode sets the global telemetry mode to the given value.
    //
    // See the documentation of [Mode] for a description of the supported mode
    // values.
    //
    // An error is returned if the provided mode value is invalid, or if an error
    // occurs while persisting the mode value to the file system.
    func SetMode(mode string) error {
    	return telemetry.SetMode(mode)
    }
    
    // Dir returns the telemetry directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    [exec:patch] ! exists go.sum
    
    # In 'go 1.16' mode we should error out in the way we claimed.
    
    cd 116-outside
    ! go list -deps -f $MODFMT example.com/m
    stderr '^\.\.[/\\]m\.go:4:2: no required module provides package example\.net/deleted; to add it:\n\tgo get example\.net/deleted$'
    cd ..
    
    go mod edit -go=1.16
    ! go list -deps -f $MODFMT example.com/m
    stderr '^go: updates to go\.mod needed; to update it:\n\tgo mod tidy$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/ts_test.go

    			return dir
    		}
    	}
    	return t.TempDir()
    }
    
    // TestTestSupport does a basic verification of the functionality in
    // ProcessCoverTestDir (doing this here as opposed to
    // relying on other test paths will provide a better signal when
    // running "go test -cover" for this package).
    func TestTestSupport(t *testing.T) {
    	if !goexperiment.CoverageRedesign {
    		return
    	}
    	if testing.CoverMode() == "" {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/bug/bug.go

    		fmt.Print(body)
    	}
    }
    
    const bugHeader = `<!-- Please answer these questions before submitting your issue. Thanks! -->
    
    `
    const bugFooter = `### What did you do?
    
    <!--
    If possible, provide a recipe for reproducing the error.
    A complete runnable program is good.
    A link on play.golang.org is best.
    -->
    
    
    
    ### What did you expect to see?
    
    
    
    ### What did you see instead?
    
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top