Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 118 for provider (0.54 sec)

  1. src/math/rand/rand.go

    }
    
    // New returns a new [Rand] that uses random values from src
    // to generate other random values.
    func New(src Source) *Rand {
    	s64, _ := src.(Source64)
    	return &Rand{src: src, s64: s64}
    }
    
    // Seed uses the provided seed value to initialize the generator to a deterministic state.
    // Seed should not be called concurrently with any other [Rand] method.
    func (r *Rand) Seed(seed int64) {
    	if lk, ok := r.src.(*lockedSource); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/operand.go

    	} else { // go/types
    		return x.mode == value && x.typ == Typ[UntypedNil]
    	}
    }
    
    // assignableTo reports whether x is assignable to a variable of type T. If the
    // result is false and a non-nil cause is provided, it may be set to a more
    // detailed explanation of the failure (result != ""). The returned error code
    // is only valid if the (first) result is false. The check parameter may be nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    // eliminate potential nondeterminism.
    func printSource(w io.Writer, rpt *Report) error {
    	o := rpt.options
    	g := rpt.newGraph(nil)
    
    	// Identify all the functions that match the regexp provided.
    	// Group nodes for each matching function.
    	var functions graph.Nodes
    	functionNodes := make(map[string]graph.Nodes)
    	for _, n := range g.Nodes {
    		if !o.Symbol.MatchString(n.Info.Name) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    		cmd.cachedLookExtensions = lp
    		if err != nil {
    			cmd.Err = err
    		}
    	}
    	return cmd
    }
    
    // CommandContext is like [Command] but includes a context.
    //
    // The provided context is used to interrupt the process
    // (by calling cmd.Cancel or [os.Process.Kill])
    // if the context becomes done before the command completes on its own.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/signature.go

    				// TODO(gri) maybe the receiver should be marked as invalid instead?
    				if recv := asNamed(check.genericType(rname, nil)); recv != nil {
    					recvTParams = recv.TypeParams().list()
    				}
    			}
    			// provide type parameter bounds
    			if len(tparams) == len(recvTParams) {
    				smap := makeRenameMap(recvTParams, tparams)
    				for i, tpar := range tparams {
    					recvTPar := recvTParams[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/crypto/rsa/pkcs1v15.go

    //
    // This function is deterministic. Thus, if the set of possible
    // messages is small, an attacker may be able to build a map from
    // messages to signatures and identify the signed messages. As ever,
    // signatures provide authenticity, not confidentiality.
    func SignPKCS1v15(random io.Reader, priv *PrivateKey, hash crypto.Hash, hashed []byte) ([]byte, error) {
    	// pkcs1v15ConstructEM is called before boring.SignRSAPKCS1v15 to return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/runtime/type.go

    // may not be representable as a 32-bit offset. Moreover the GC may
    // one day start moving heap memory, in which case there is no stable
    // offset that can be defined.
    //
    // To provide stable offsets, we add pin *rtype objects in a global map
    // and treat the offset as an identifier. We use negative offsets that
    // do not overlap with any compile-time module offsets.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    	c.verifiedChains = hs.session.verifiedChains
    	c.ocspResponse = hs.session.ocspResponse
    	// Let the ServerHello SCTs override the session SCTs from the original
    	// connection, if any are provided
    	if len(c.scts) == 0 && len(hs.session.scts) != 0 {
    		c.scts = hs.session.scts
    	}
    
    	return true, nil
    }
    
    // checkALPN ensure that the server's choice of ALPN protocol is compatible with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.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 elfexec provides utility routines to examine ELF binaries.
    package elfexec
    
    import (
    	"bufio"
    	"debug/elf"
    	"encoding/binary"
    	"fmt"
    	"io"
    )
    
    const (
    	maxNoteSize        = 1 << 20 // in bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/sym.go

    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top