Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 433 for provider (0.32 sec)

  1. doc/next/6-stdlib/3-structs.md

    ### New structs package
    
    The new [structs] package provides
    types for struct fields that modify properties of
    the containing struct type such as memory layout.
    
    In this release, the only such type is
    [`HostLayout`](/pkg/structs#HostLayout)
    which indicates that a structure with a field of that
    type has a layout that conforms to host platform
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:06:02 UTC 2024
    - 356 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/README.md

    ## Notable Packages
    
    - The [x/telemetry/counter](https://pkg.go.dev/golang.org/x/telemetry/counter)
      package provides a library for instrumenting programs with counters and stack
      reports.
    - The [x/telemetry/upload](https://pkg.go.dev/golang.org/x/telemetry/upload)
      package provides a hook for Go toolchain programs to upload telemetry data,
      if the user has opted in to telemetry uploading.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  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/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)
  10. src/reflect/arena.go

    //go:build goexperiment.arenas
    
    package reflect
    
    import "arena"
    
    // ArenaNew returns a [Value] representing a pointer to a new zero value for the
    // specified type, allocating storage for it in the provided arena. That is,
    // the returned Value's Type is [PointerTo](typ).
    func ArenaNew(a *arena.Arena, typ Type) Value {
    	return ValueOf(arena_New(a, PointerTo(typ)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 574 bytes
    - Viewed (0)
Back to top