Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 837 for provider (0.09 sec)

  1. src/encoding/gob/type.go

    	xText              // encoding.TextMarshaler or encoding.TextUnmarshaler
    )
    
    var userTypeCache sync.Map // map[reflect.Type]*userTypeInfo
    
    // validUserType returns, and saves, the information associated with user-provided type rt.
    // If the user type is not valid, err will be non-nil. To be used when the error handler
    // is not set up.
    func validUserType(rt reflect.Type) (*userTypeInfo, error) {
    	if ui, ok := userTypeCache.Load(rt); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/fipstls/stub.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    // runtime_arg0 is declared in tls.go without a body.
    // It's provided by package runtime,
    // but the go command doesn't know that.
    // Having this assembly file keeps the go command
    // from complaining about the missing body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 457 bytes
    - Viewed (0)
  3. src/cmd/covdata/metamerge.go

    	"io"
    	"os"
    	"path/filepath"
    	"sort"
    	"time"
    	"unsafe"
    )
    
    // metaMerge provides state and methods to help manage the process
    // of selecting or merging meta data files. There are three cases
    // of interest here: the "-pcombine" flag provided by merge, the
    // "-pkg" option provided by all merge/subtract/intersect, and
    // a regular vanilla merge with no package selection
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	}
    	logger := log.New(logWriter, "", log.Ltime|log.Lmicroseconds|log.Lshortfile)
    
    	// Fetch the upload config, if it is not provided.
    	config, configVersion, err := configstore.Download("latest", rcfg.Env)
    	if err != nil {
    		return nil, err
    	}
    
    	// Set the start time, if it is not provided.
    	startTime := time.Now().UTC()
    	if !rcfg.StartTime.IsZero() {
    		startTime = rcfg.StartTime
    	}
    
    	return &uploader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/hash/maphash/maphash.go

    // the first call to a Reset, Write, Seed, or Sum64 method.
    // For control over the seed, use SetSeed.
    //
    // The computed hash values depend only on the initial seed and
    // the sequence of bytes provided to the Hash object, not on the way
    // in which the bytes are provided. For example, the three sequences
    //
    //	h.Write([]byte{'f','o','o'})
    //	h.WriteByte('f'); h.WriteByte('o'); h.WriteByte('o')
    //	h.WriteString("foo")
    //
    // all have the same effect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/gover/gover.go

    // Package gover implements support for Go toolchain versions like 1.21.0 and 1.21rc1.
    // (For historical reasons, Go does not use semver for its toolchains.)
    // This package provides the same basic analysis that golang.org/x/mod/semver does for semver.
    // It also provides some helpers for extracting versions from go.mod files
    // and for dealing with module.Versions that may use Go versions or semver
    // depending on the module path.
    package gover
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cgo_syso_issue29253.txt

    env GO111MODULE=off
    [short] skip
    
    # This test tests that we can link in-package syso files that provides symbols
    # for cgo. See issue 29253.
    [!cgo] stop
    [!compiler:gc] stop
    cc -c -o pkg/o.syso ext.c
    go build main.go
    
    -- ext.c --
    // +build ignore
    
    int f() { return 42; }
    -- pkg/pkg.go --
    package pkg
    
    // extern int f(void);
    import "C"
    
    func init() {
    	if v := C.f(); v != 42 {
    		panic(v)
    	}
    }
    -- main.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 450 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/10-proposal.yml

          value: "Our proposal process is documented here: https://go.dev/s/proposal-process"
      - type: textarea
        id: proposal-details
        attributes:
          label: "Proposal Details"
          description: "Please provide the details of your proposal here."
        validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 471 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    	IgnoreBranchErrors bool
    
    	// If go115UsesCgo is set, the type checker expects the
    	// _cgo_gotypes.go file generated by running cmd/cgo to be
    	// provided as a package source file. Qualified identifiers
    	// referring to package C will be resolved to cgo-provided
    	// declarations within _cgo_gotypes.go.
    	//
    	// It is an error to set both FakeImportC and go115UsesCgo.
    	go115UsesCgo bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. src/os/exec/exec_unix.go

    //go:build !plan9 && !windows
    
    package exec
    
    import (
    	"io/fs"
    	"syscall"
    )
    
    // skipStdinCopyError optionally specifies a function which reports
    // whether the provided stdin copy error should be ignored.
    func skipStdinCopyError(err error) bool {
    	// Ignore EPIPE errors copying to stdin if the program
    	// completed successfully otherwise.
    	// See Issue 9173.
    	pe, ok := err.(*fs.PathError)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 13:47:05 UTC 2022
    - 635 bytes
    - Viewed (0)
Back to top