Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 433 for provider (0.14 sec)

  1. src/cmd/go/internal/auth/auth.go

    // Copyright 2019 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 auth provides access to user-provided authentication credentials.
    package auth
    
    import "net/http"
    
    // AddCredentials fills in the user's credentials for req, if any.
    // The return value reports whether any matching credentials were found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 767 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/cases.go

    type Option func(o options) options
    
    // TODO: consider these options to take a boolean as well, like FinalSigma.
    // The advantage of using this approach is that other providers of a lower-case
    // algorithm could set different defaults by prefixing a user-provided slice
    // of options with their own. This is handy, for instance, for the precis
    // package which would override the default to not handle the Greek final sigma.
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    #
    # The module dependency graph of m is initially empty.
    # Modules x and y look like:
    #
    # x.1 (provides package x that imports y, but does not depend on module y)
    #
    # x.2-pre (no dependencies, but does not provide package x)
    #
    # y.1 (no dependencies, but provides package y)
    #
    # y.2 --- x.2-pre (provides package y)
    #
    #
    # When we resolve the missing import of y in x_test, we add y@latest — which is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. src/syscall/asm_openbsd_riscv64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    //
    // System call support for RISCV64, OpenBSD
    //
    
    // Provide these function names via assembly so they are provided as ABI0,
    // rather than ABIInternal.
    
    // func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    TEXT	·Syscall(SB),NOSPLIT,$0-56
    	JMP	·syscallInternal(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. src/database/sql/driver/types.go

    )
    
    // ValueConverter is the interface providing the ConvertValue method.
    //
    // Various implementations of ValueConverter are provided by the
    // driver package to provide consistent implementations of conversions
    // between drivers. The ValueConverters have several uses:
    //
    //   - converting from the [Value] types as provided by the sql package
    //     into a database table's specific column type and making sure it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/nettest/nettest.go

    // Copyright 2019 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 nettest provides utilities for network testing.
    package nettest
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"os"
    	"os/exec"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    )
    
    var (
    	stackOnce               sync.Once
    	ipv4Enabled             bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    stderr '^go: example\.net/m imports\n\texample\.net/y: package example\.net/y provided by example\.net/y at latest version v0\.1\.0 but not at required version v0\.2\.0-pre$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    }
    
    // The Range interface provides a range. It's equivalent to and satisfied by
    // ast.Node.
    type Range interface {
    	Pos() token.Pos // position of first character belonging to the node
    	End() token.Pos // position of first character immediately after the node
    }
    
    // ReportRangef is a helper function that reports a Diagnostic using the
    // range provided. ast.Node values can be passed in as the range because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/errors.go

    	}
    	return &error_{check: check, code: code}
    }
    
    // addf adds formatted error information to err.
    // It may be called multiple times to provide additional information.
    // The position of the first call to addf determines the position of the reported Error.
    // Subsequent calls to addf provide additional information in the form of additional lines
    // in the error message (types2) or continuation errors identified by a tab-indented error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/outbuf.go

    // OutBuf is a buffered file writer.
    //
    // It is similar to the Writer in cmd/internal/bio with a few small differences.
    //
    // First, it tracks the output architecture and uses it to provide
    // endian helpers.
    //
    // Second, it provides a very cheap offset counter that doesn't require
    // any system calls to read the value.
    //
    // Third, it also mmaps the output file (if available). The intended usage is:
    //   - Mmap the output file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
Back to top