Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 433 for provider (0.13 sec)

  1. src/cmd/compile/internal/ir/visit.go

    // IR visitors for walking the IR tree.
    //
    // The lowest level helpers are DoChildren and EditChildren, which
    // nodes help implement and provide control over whether and when
    // recursion happens during the walk of the IR.
    //
    // Although these are both useful directly, two simpler patterns
    // are fairly common and also provided: Visit and Any.
    
    package ir
    
    // DoChildren calls do(x) on each of n's non-nil child nodes x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/math/log1p.go

    // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
    //
    // Developed at SunPro, a Sun Microsystems, Inc. business.
    // Permission to use, copy, modify, and distribute this
    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    //
    // double log1p(double x)
    //
    // Method :
    //   1. Argument Reduction: find k and f such that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/stdlib.go

    // Copyright 2022 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:generate go run generate.go
    
    // Package stdlib provides a table of all exported symbols in the
    // standard library, along with the version at which they first
    // appeared.
    package stdlib
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Symbol struct {
    	Name    string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/database/sql/example_cli_test.go

    	appSignal := make(chan os.Signal, 3)
    	signal.Notify(appSignal, os.Interrupt)
    
    	go func() {
    		<-appSignal
    		stop()
    	}()
    
    	Ping(ctx)
    
    	Query(ctx, *id)
    }
    
    // Ping the database to verify DSN provided by the user is valid and the
    // server accessible. If the ping fails exit the program with an error.
    func Ping(ctx context.Context) {
    	ctx, cancel := context.WithTimeout(ctx, 1*time.Second)
    	defer cancel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/named_test.go

    type T struct{}
    
    func (T) a() {}
    func (T) c() {}
    func (T) b() {}
    `
    	// should get the same method order each time
    	var methods []string
    	for i := 0; i < 5; i++ {
    		// collect T methods as provided in src
    		pkg := mustTypecheck(src, nil, nil)
    		T := pkg.Scope().Lookup("T").Type().(*Named)
    
    		// add a few more methods manually
    		for _, name := range []string{"foo", "bar", "bal"} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/go/doc/testdata/testing.0.golden

    // Package testing provides support for automated testing of Go ...
    PACKAGE testing
    
    IMPORTPATH
    	testdata/testing
    
    IMPORTS
    	bytes
    	flag
    	fmt
    	io
    	os
    	runtime
    	runtime/pprof
    	strconv
    	strings
    	time
    
    FILENAMES
    	testdata/benchmark.go
    	testdata/example.go
    	testdata/testing.go
    
    FUNCTIONS
    	// An internal function but exported because it is cross-package; ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  7. src/net/textproto/textproto.go

    // license that can be found in the LICENSE file.
    
    // Package textproto implements generic support for text-based request/response
    // protocols in the style of HTTP, NNTP, and SMTP.
    //
    // The package provides:
    //
    // [Error], which represents a numeric error response from
    // a server.
    //
    // [Pipeline], to manage pipelined requests and responses
    // in a client.
    //
    // [Reader], to read numeric response code lines,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/runtime/cgo/handle.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgo
    
    import (
    	"sync"
    	"sync/atomic"
    )
    
    // Handle provides a way to pass values that contain Go pointers
    // (pointers to memory allocated by Go) between Go and C without
    // breaking the cgo pointer passing rules. A Handle is an integer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/histogram.go

    	if bucket < h.MinBucket || h.MaxBucket == 0 {
    		h.MinBucket = bucket
    	}
    	if bucket > h.MaxBucket {
    		h.MaxBucket = bucket
    	}
    	h.Count++
    }
    
    // BucketMin returns the minimum duration value for a provided bucket.
    func (h *TimeHistogram) BucketMin(bucket int) time.Duration {
    	return time.Duration(math.Exp(float64(bucket) * logDiv))
    }
    
    // ToHTML renders the histogram as HTML.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:28:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.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 inspector provides helper functions for traversal over the
    // syntax trees of a package, including node filtering by type, and
    // materialization of the traversal stack.
    //
    // During construction, the inspector does a complete traversal and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top