Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 837 for provider (0.34 sec)

  1. 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)
  2. src/cmd/compile/internal/types2/typexpr.go

    	if isInteger(x.typ) {
    		msg = "invalid array length %s"
    	} else {
    		msg = "array length %s must be integer"
    	}
    	check.errorf(&x, InvalidArrayLen, msg, &x)
    	return -1
    }
    
    // typeList provides the list of types corresponding to the incoming expression list.
    // If an error occurred, the result is nil, but all list elements were type-checked.
    func (check *Checker) typeList(list []syntax.Expr) []Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/fcntl.go

    	var err error
    	if errno != 0 {
    		err = errno
    	}
    	return int(valptr), err
    }
    
    // FcntlInt performs a fcntl syscall on fd with the provided command and argument.
    func FcntlInt(fd uintptr, cmd, arg int) (int, error) {
    	return fcntl(int(fd), cmd, arg)
    }
    
    // FcntlFlock performs a fcntl syscall for the F_GETLK, F_SETLK or F_SETLKW command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    Omit the format to get an interactive shell whose commands can be used
    to generate various views of a profile
    
       pprof [options] [binary] <source> ...
    
    Omit the format and provide the "-http" flag to get an interactive web
    interface at the specified host:port that can be used to navigate through
    various views of a profile.
    
       pprof -http [host]:[port] [options] [binary] <source> ...
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    go get -u=patch
    go list -m all
    stdout '^patch.example.com/direct v1.0.1'
    stdout '^patch.example.com/indirect v1.0.1'
    stdout '^patch.example.com/depofdirectpatch v1.0.0'
    
    # 'get all@patch' should patch the modules that provide packages in 'all'.
    cp go.mod.orig go.mod
    go get all@patch
    go list -m all
    stdout '^patch.example.com/direct v1.0.1'
    stdout '^patch.example.com/indirect v1.0.1'
    stdout '^patch.example.com/depofdirectpatch v1.0.0'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    # When we run 'go mod tidy -e', we should proceed past the first error and follow
    # it with a second error describing the version discrepancy.
    #
    # We should not provide advice on how to push past the version discrepancy,
    # because the '-e' flag should already do that, writing out an otherwise-tidied
    # go.mod file.
    
    go mod tidy -e
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	    when all tests are complete.
    //	    Writes test binary as -c would.
    //
    //	-blockprofilerate n
    //	    Control the detail provided in goroutine blocking profiles by
    //	    calling runtime.SetBlockProfileRate with n.
    //	    See 'go doc runtime.SetBlockProfileRate'.
    //	    The profiler aims to sample, on average, one blocking event every
    //	    n nanoseconds the program spends blocked. By default,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/named.go

    //    type or methods, so that we may resolve recursive references.
    //  - When loading from export data, we may load its methods and underlying
    //    type lazily using a provided load function.
    //  - After instantiating, we lazily expand the underlying type and methods
    //    (note that instances may be created while still in the process of
    //    type-checking the original type declaration).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/boring.go

    	}
    	sig.BoringCrypto()
    }
    
    // Unreachable marks code that should be unreachable
    // when BoringCrypto is in use. It panics.
    func Unreachable() {
    	panic("boringcrypto: invalid code execution")
    }
    
    // provided by runtime to avoid os import.
    func runtime_arg0() string
    
    // UnreachableExceptTests marks code that should be unreachable
    // when BoringCrypto is in use. It panics.
    func UnreachableExceptTests() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top