Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 754 for provider (0.12 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/config/config.go

    // license that can be found in the LICENSE file.
    
    // package config provides methods for loading and querying a
    // telemetry upload config file.
    package config
    
    import (
    	"encoding/json"
    	"os"
    	"strings"
    
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // Config is a wrapper around telemetry.UploadConfig that provides some
    // convenience methods for checking the contents of a report.
    type Config struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/internal/coverage/cmerge/merge.go

    package cmerge
    
    // package cmerge provides a few small utility APIs for helping
    // with merging of counter data for a given function.
    
    import (
    	"fmt"
    	"internal/coverage"
    	"math"
    )
    
    type ModeMergePolicy uint8
    
    const (
    	ModeMergeStrict ModeMergePolicy = iota
    	ModeMergeRelaxed
    )
    
    // Merger provides state and methods to help manage the process of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 23:26:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/runtime/mmap.go

    package runtime
    
    import "unsafe"
    
    // mmap calls the mmap system call. It is implemented in assembly.
    // We only pass the lower 32 bits of file offset to the
    // assembly routine; the higher bits (if required), should be provided
    // by the assembly routine as 0.
    // The err result is an OS error code such as ENOMEM.
    func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (p unsafe.Pointer, err int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 844 bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/crypto/tls/63691.md

    The [QUICConn] type used by QUIC implementations includes new events
    reporting on the state of session resumption, and provides a way for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 211 bytes
    - Viewed (0)
  5. src/syscall/badlinkname_unix.go

    //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
    
    package syscall
    
    import _ "unsafe"
    
    // As of Go 1.22, the symbols below are found to be pulled via
    // linkname in the wild. We provide a push linkname here, to
    // keep them accessible with pull linknames.
    // This may change in the future. Please do not depend on them
    // in new code.
    
    // golang.org/x/sys linknames getsockopt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 679 bytes
    - Viewed (0)
  6. src/go/token/position.go

    // A File is a handle for a file belonging to a [FileSet].
    // A File has a name, size, and line offset table.
    type File struct {
    	name string // file name as provided to AddFile
    	base int    // Pos value range for this file is [base...base+size]
    	size int    // file size as provided to AddFile
    
    	// lines and infos are protected by mutex
    	mutex sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_replace_old.txt

    cp go.mod go.mod.orig
    
    ! go mod tidy
    ! stderr panic
    stderr '^go: golang\.org/issue46659 imports\n\texample\.com/missingpkg/deprecated: package example\.com/missingpkg/deprecated provided by example\.com/missingpkg at latest version v1\.0\.0 but not at required version v1\.0\.1-beta$'
    
    go mod tidy -e
    
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module golang.org/issue46659
    
    go 1.17
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1004 bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/LICENSE

    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    copyright notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with the
    distribution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/rand.go

    // it is "cheap" in the sense of both expense and quality.
    //
    // cheaprand must not be exported to other packages:
    // the rule is that other packages using runtime-provided
    // randomness must always use rand.
    //
    // cheaprand should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/inspect/inspect.go

    // Copyright 2018 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 inspect defines an Analyzer that provides an AST inspector
    // (golang.org/x/tools/go/ast/inspector.Inspector) for the syntax trees
    // of a package. It is only a building block for other analyzers.
    //
    // Example of use in another analysis:
    //
    //	import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top