Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 754 for provider (0.11 sec)

  1. src/net/rpc/server.go

    // Copyright 2009 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 rpc provides access to the exported methods of an object across a
    network or other I/O connection.  A server registers an object, making it visible
    as a service with the name of the type of the object.  After registration, exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. src/internal/saferio/io.go

    // license that can be found in the LICENSE file.
    
    // Package saferio provides I/O functions that avoid allocating large
    // amounts of memory unnecessarily. This is intended for packages that
    // read data from an [io.Reader] where the size is part of the input
    // data but the input may be corrupt, or may be provided by an
    // untrustworthy attacker.
    package saferio
    
    import (
    	"io"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 00:34:05 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/net/http/socks_bundle.go

    	// It must return an error when the authentication is failed.
    	Authenticate func(context.Context, io.ReadWriter, socksAuthMethod) error
    }
    
    // DialContext connects to the provided address on the provided
    // network.
    //
    // The returned error value may be a net.OpError. When the Op field of
    // net.OpError contains "socks", the Source field contains a proxy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. src/io/fs/fs.go

    // Package fs defines basic interfaces to a file system.
    // A file system can be provided by the host operating system
    // but also by other packages.
    //
    // See the [testing/fstest] package for support with testing
    // implementations of file systems.
    package fs
    
    import (
    	"internal/oserror"
    	"time"
    	"unicode/utf8"
    )
    
    // An FS provides access to a hierarchical file system.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. src/sort/slice.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sort
    
    import (
    	"internal/reflectlite"
    	"math/bits"
    )
    
    // Slice sorts the slice x given the provided less function.
    // It panics if x is not a slice.
    //
    // The sort is not guaranteed to be stable: equal elements
    // may be reversed from their original order.
    // For a stable sort, use [SliceStable].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/go/types/api.go

    	FakeImportC bool
    
    	// If go115UsesCgo is set, the type checker expects the
    	// _cgo_gotypes.go file generated by running cmd/cgo to be
    	// provided as a package source file. Qualified identifiers
    	// referring to package C will be resolved to cgo-provided
    	// declarations within _cgo_gotypes.go.
    	//
    	// It is an error to set both FakeImportC and go115UsesCgo.
    	go115UsesCgo bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/runtime/mem.go

    }
    
    // sysNoHugePage does not transition memory regions, but instead provides a
    // hint to the OS that it would be less efficient to back this memory region
    // with pages of a larger size transparently.
    func sysNoHugePage(v unsafe.Pointer, n uintptr) {
    	sysNoHugePageOS(v, n)
    }
    
    // sysHugePageCollapse attempts to immediately back the provided memory region
    // with huge pages. It is best-effort and may fail silently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_error.txt

    ! go mod vendor
    ! stderr 'package nonexist is not in std'
    stderr '^go: issue27063 imports\n\tnonexist.example.com: no required module provides package nonexist.example.com; to add it:\n\tgo get nonexist.example.com$'
    stderr '^go: issue27063 imports\n\tissue27063/other imports\n\tother.example.com/nonexist: no required module provides package other.example.com/nonexist; to add it:\n\tgo get other.example.com/nonexist$'
    
    -- go.mod --
    module issue27063
    
    go 1.13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/trace/gstate.go

    	startCause struct {
    		time     trace.Time
    		name     string
    		resource uint64
    		stack    trace.Stack
    	}
    }
    
    // newGState constructs a new goroutine state for the goroutine
    // identified by the provided ID.
    func newGState[R resource](goID trace.GoID) *gState[R] {
    	return &gState[R]{
    		baseName:     fmt.Sprintf("G%d", goID),
    		executing:    R(noResource),
    		activeRanges: make(map[string]activeRange),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/registry/value.go

    // byte count n. If buf is too small to fit the stored value it returns
    // ErrShortBuffer error along with the required buffer size n.
    // If no buffer is provided, it returns true and actual buffer size n.
    // If no buffer is provided, GetValue returns the value's type only.
    // If the value does not exist, the error returned is ErrNotExist.
    //
    // GetValue is a low level function. If value's type is known, use the appropriate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top