Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 433 for provider (0.11 sec)

  1. src/internal/pkgbits/doc.go

    //
    // Individual elements are sequences of variable-length values (e.g.,
    // integers, booleans, strings, go/constant values, cross-references
    // to other elements). Package pkgbits provides APIs for encoding and
    // decoding these low-level values, but the details of mapping
    // higher-level Go constructs into elements is left to higher-level
    // abstractions.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 20 19:01:40 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. test/typeparam/orderedmap.go

    			if !isNaN(v1) || !isNaN(v2) {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    // Ranger returns a Sender and a Receiver. The Receiver provides a
    // Next method to retrieve values. The Sender provides a Send method
    // to send values and a Close method to stop sending values. The Next
    // method indicates when the Sender has been closed, and the Send
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/internal/browser/browser.go

    // Copyright 2016 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 browser provides utilities for interacting with users' browsers.
    package browser
    
    import (
    	"os"
    	"os/exec"
    	"runtime"
    	"time"
    )
    
    // Commands returns a list of possible commands to use to open a url.
    func Commands() [][]string {
    	var cmds [][]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/route/route.go

    	RIBTypeInterface RIBType = syscall.NET_RT_IFLIST
    )
    
    // FetchRIB fetches a routing information base from the operating
    // system.
    //
    // The provided af must be an address family.
    //
    // The provided arg must be a RIBType-specific argument.
    // When RIBType is related to routes, arg might be a set of route
    // flags. When RIBType is related to network interfaces, arg might be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/go/types/eval.go

    // Eval returns the type and, if constant, the value for the
    // expression expr, evaluated at position pos of package pkg,
    // which must have been derived from type-checking an AST with
    // complete position information relative to the provided file
    // set.
    //
    // The meaning of the parameters fset, pkg, and pos is the
    // same as in [CheckExpr]. An error is returned if expr cannot
    // be parsed successfully, or the resulting expr AST cannot be
    // type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/methods.go

    // actual type argument provided to an instantiated T1.
    func (t T1[A]) m1() A { return t.a }
    
    // For instance, if T1 is instantiated with the type int, the type
    // parameter A in m1 assumes that type (int) as well and we can write
    // code like this:
    var x T1[int]
    var _ int = x.m1()
    
    // Because the type parameter provided to a parameterized receiver type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    // Telemetry config (golang.org/x/telemetry/config) is distributed as a go
    // module containing go.mod and config.json. Programs that upload collected
    // counters download the latest config using `go mod download`. This provides
    // verification of downloaded configuration and cacheability.
    package configstore
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"os"
    	"os/exec"
    	"path/filepath"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/net/http/httptrace/trace.go

    // provided context. If none, it returns nil.
    func ContextClientTrace(ctx context.Context) *ClientTrace {
    	trace, _ := ctx.Value(clientEventContextKey{}).(*ClientTrace)
    	return trace
    }
    
    // WithClientTrace returns a new context based on the provided parent
    // ctx. HTTP client requests made with the returned context will use
    // the provided trace hooks, in addition to any previous hooks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/text7.txt

    -- input --
    Package gob manages streams of gobs - binary values exchanged between an
    Encoder (transmitter) and a Decoder (receiver). A typical use is
    transporting arguments and results of remote procedure calls (RPCs) such as
    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. src/syscall/syscall.go

    func (tv *Timeval) Nano() int64 {
    	return int64(tv.Sec)*1e9 + int64(tv.Usec)*1000
    }
    
    // Getpagesize and Exit are provided by the runtime.
    
    func Getpagesize() int
    func Exit(code int)
    
    // runtimeSetenv and runtimeUnsetenv are provided by the runtime.
    func runtimeSetenv(k, v string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top