Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 754 for provider (0.12 sec)

  1. src/cmp/cmp.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 cmp provides types and functions related to comparing
    // ordered values.
    package cmp
    
    // Ordered is a constraint that permits any ordered type: any type
    // that supports the operators < <= >= >.
    // If future releases of Go add new ordered types,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. test/stress/runstress.go

    // The runstress tool stresses the runtime.
    //
    // It runs forever and should never fail. It tries to stress the garbage collector,
    // maps, channels, the network, and everything else provided by the runtime.
    package main
    
    import (
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"math/rand"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"os/exec"
    	"strconv"
    	"time"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/net/tcpsockopt_windows.go

    func setKeepAliveIdleAndInterval(fd *netFD, idle, interval time.Duration) error {
    	// WSAIoctl with SIO_KEEPALIVE_VALS control code requires all fields in
    	// `tcp_keepalive` struct to be provided.
    	// Otherwise, if any of the fields were not provided, just leaving them
    	// zero will knock off any existing values of keep-alive.
    	// Unfortunately, Windows doesn't support retrieving current keep-alive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package driver provides an external entry point to the pprof driver.
    package driver
    
    import (
    	"io"
    	"net/http"
    	"regexp"
    	"time"
    
    	internaldriver "github.com/google/pprof/internal/driver"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/cryptobyte/string.go

    // contains useful ASN.1 constants.)
    //
    // The String type is for parsing. It wraps a []byte slice and provides helper
    // functions for consuming structures, value by value.
    //
    // The Builder type is for constructing messages. It providers helper functions
    // for appending values and also for appending length-prefixed submessages –
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/math/big/arith_mipsx.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !math_big_pure_go && (mips || mipsle)
    
    #include "textflag.h"
    
    // This file provides fast assembly versions for the elementary
    // arithmetic operations on vectors implemented in arith.go.
    
    TEXT ·addVV(SB),NOSPLIT,$0
    	JMP	·addVV_g(SB)
    
    TEXT ·subVV(SB),NOSPLIT,$0
    	JMP	·subVV_g(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 759 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/plan9/syscall.go

    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    // to freebsd and $GOARCH to arm.
    //
    // The primary use of this package is inside other packages that provide a more
    // portable interface to the system, such as "os", "time" and "net".  Use
    // those packages rather than this one if you can.
    //
    // For details of the functions and data types in this package consult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // Copyright 2014 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 sha3
    
    // This file provides functions for creating instances of the SHA-3
    // and SHAKE hash functions, as well as utility functions for hashing
    // bytes.
    
    import (
    	"hash"
    )
    
    // New224 creates a new SHA3-224 hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_fossil.txt

    [short] skip
    [!exec:fossil] skip
    
    # Regression test for 'go get' to ensure repositories
    # provided by fossil v2.12 and up are able to be fetched
    # and parsed correctly.
    # Verifies golang.org/issue/42323.
    
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get' for the fossil repo will fail if fossil
    # is unable to determine your fossil user. Easiest
    # way to set it for use by 'go get' is specifying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  10. src/go/types/interface.go

    var emptyInterface = Interface{complete: true, tset: &topTypeSet}
    
    // NewInterface returns a new interface for the given methods and embedded types.
    // NewInterface takes ownership of the provided methods and may modify their types
    // by setting missing receivers.
    //
    // Deprecated: Use NewInterfaceType instead which allows arbitrary embedded types.
    func NewInterface(methods []*Func, embeddeds []*Named) *Interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top