Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for provider (0.18 sec)

  1. src/runtime/traceallocfree.go

    func (tl traceLocker) GoroutineStackExists(base, size uintptr) {
    	order := traceCompressStackSize(size)
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoroutineStack, traceGoroutineStackID(base), order)
    }
    
    // GoroutineStackAlloc records that a goroutine stack was newly allocated at address base with the provided size..
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/slices/65238.md

    The [Repeat] function returns a new slice that repeats the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 101 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest.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.
    
    // countertest provides testing utilities for counters.
    // This package cannot be used except for testing.
    package countertest
    
    import (
    	"sync"
    
    	"golang.org/x/telemetry/counter"
    	ic "golang.org/x/telemetry/internal/counter"
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s

    // Copyright 2024 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 zos && s390x && gc
    
    #include "textflag.h"
    
    //  provide the address of function variable to be fixed up.
    
    TEXT ·getPipe2Addr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Pipe2(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_FlockAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Flock(SB), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. src/internal/runtime/exithook/hooks.go

    // Copyright 2024 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 exithook provides limited support for on-exit cleanup.
    //
    // CAREFUL! The expectation is that Add should only be called
    // from a safe context (e.g. not an error/panic path or signal
    // handler, preemption enabled, allocation allowed, write barriers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. src/internal/trace/raw/doc.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 raw provides an interface to interpret and emit Go execution traces.
    It can interpret and emit execution traces in its wire format as well as a
    bespoke but simple text format.
    
    The readers and writers in this package perform no validation on or ordering of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/net/http/cgi/cgi_main.go

    		testCGI()
    		return
    	}
    	childCGIProcess()
    }
    
    // testCGI is a CGI program translated from a Perl program to complete host_test.
    // test cases in host_test should be provided by testCGI.
    func testCGI() {
    	req, err := Request()
    	if err != nil {
    		panic(err)
    	}
    
    	err = req.ParseForm()
    	if err != nil {
    		panic(err)
    	}
    
    	params := req.Form
    	if params.Get("loc") != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/debug/stack.go

    func Stack() []byte {
    	buf := make([]byte, 1024)
    	for {
    		n := runtime.Stack(buf, false)
    		if n < len(buf) {
    			return buf[:n]
    		}
    		buf = make([]byte, 2*len(buf))
    	}
    }
    
    // CrashOptions provides options that control the formatting of the
    // fatal crash message.
    type CrashOptions struct {
    	/* for future expansion */
    }
    
    // SetCrashOutput configures a single additional file where unhandled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/settings.go

    type configMenuEntry struct {
    	Name       string
    	URL        string
    	Current    bool // Is this the currently selected config?
    	UserConfig bool // Is this a user-provided config?
    }
    
    // configMenu returns a list of items to add to a menu in the web UI.
    func configMenu(fname string, u url.URL) []configMenuEntry {
    	// Start with system configs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # This module selects the same versions in Go 1.16 and 1.17 for all modules
    # that provide packages (or test dependencies of packages) imported by the
    # main module. However, in Go 1.16 it selects a higher version of a
    # transitive module dependency that is not otherwise relevant to the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top