Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 111 for bigptr (0.16 sec)

  1. tensorflow/compiler/jit/clone_constants_for_better_clustering.h

    //    by nodes X and Y.  If X and Y are put in different clusters (for whatever
    //    reason) Y's cluster now has to wait for all the operations in X's cluster
    //    to finish before it starts running.
    //
    //  - It lets us create bigger clusters in multi-GPU benchmarks.  Consider the
    //    following graph:
    //
    //    digraph {
    //      Const -> GPU_1
    //      Const -> GPU_0_Y
    //      GPU_0_X -> GPU_0_Y
    //    }
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 23:57:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/version/helpers.go

    limitations under the License.
    */
    
    package version
    
    import (
    	"regexp"
    	"strconv"
    	"strings"
    )
    
    type versionType int
    
    const (
    	// Bigger the version type number, higher priority it is
    	versionTypeAlpha versionType = iota
    	versionTypeBeta
    	versionTypeGA
    )
    
    var kubeVersionRegex = regexp.MustCompile("^v([\\d]+)(?:(alpha|beta)([\\d]+))?$")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 20 08:40:04 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  3. src/runtime/sigtab_linux_generic.go

    	/* 27 */ {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
    	/* 28 */ {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
    	/* 29 */ {_SigNotify, "SIGIO: i/o now possible"},
    	/* 30 */ {_SigNotify, "SIGPWR: power failure restart"},
    	/* 31 */ {_SigThrow, "SIGSYS: bad system call"},
    	/* 32 */ {_SigSetStack + _SigUnblock, "signal 32"}, /* SIGCANCEL; see issue 6997 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_generic.go

    // and don't use hardware acceleration.
    //
    // The simple (and slow) CRC32 implementation only uses a 256*4 bytes table.
    //
    // The slicing-by-8 algorithm is a faster implementation that uses a bigger
    // table (8*256*4 bytes).
    
    package crc32
    
    import "internal/byteorder"
    
    // simpleMakeTable allocates and constructs a Table for the specified
    // polynomial. The table is suitable for use with the simple algorithm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/httpresponse/httpresponse.go

    		return false // the call is not of the form x.f()
    	}
    
    	res := sig.Results()
    	if res.Len() != 2 {
    		return false // the function called does not return two values.
    	}
    	isPtr, named := typesinternal.ReceiverNamed(res.At(0))
    	if !isPtr || named == nil || !analysisutil.IsNamedType(named, "net/http", "Response") {
    		return false // the first return type is not *http.Response.
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/runtime/signal_solaris.go

    	/* 16 */ {_SigNotify, "SIGUSR1: user defined signal 1"},
    	/* 17 */ {_SigNotify, "SIGUSR2: user defined signal 2"},
    	/* 18 */ {_SigNotify + _SigUnblock + _SigIgn, "SIGCHLD: child status change alias (POSIX)"},
    	/* 19 */ {_SigNotify, "SIGPWR: power-fail restart"},
    	/* 20 */ {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
    	/* 21 */ {_SigNotify + _SigIgn, "SIGURG: urgent socket condition"},
    	/* 22 */ {_SigNotify, "SIGPOLL: pollable event occurred"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  7. src/runtime/cpuprof.go

    // and cannot allocate memory or acquire locks that might be
    // held at the time of the signal, nor can it use substantial amounts
    // of stack.
    //
    //go:nowritebarrierrec
    func (p *cpuProfile) add(tagPtr *unsafe.Pointer, stk []uintptr) {
    	// Simple cas-lock to coordinate with setcpuprofilerate.
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		// TODO: Is it safe to osyield here? https://go.dev/issue/52672
    		osyield()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/syscall/syscall_wasip1.go

    	SIGUSR2
    	SIGPIPE
    	SIGALRM
    	SIGTERM
    	SIGCHLD
    	SIGCONT
    	SIGSTOP
    	SIGTSTP
    	SIGTTIN
    	SIGTTOU
    	SIGURG
    	SIGXCPU
    	SIGXFSZ
    	SIGVTARLM
    	SIGPROF
    	SIGWINCH
    	SIGPOLL
    	SIGPWR
    	SIGSYS
    )
    
    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	switch s {
    	case SIGNONE:
    		return "no signal"
    	case SIGHUP:
    		return "hangup"
    	case SIGINT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/struct.go

    			// (via under(t)) a possibly incomplete type.
    			embeddedTyp := typ // for closure below
    			embeddedPos := pos
    			check.later(func() {
    				t, isPtr := deref(embeddedTyp)
    				switch u := under(t).(type) {
    				case *Basic:
    					if !isValid(t) {
    						// error was reported before
    						return
    					}
    					// unsafe.Pointer is treated like a regular pointer
    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. cmd/dynamic-timeouts.go

    	dynamicTimeoutLogSize              = 16
    	maxDuration                        = math.MaxInt64
    	maxDynamicTimeout                  = 24 * time.Hour // Never set timeout bigger than this.
    )
    
    // timeouts that are dynamically adapted based on actual usage results
    type dynamicTimeout struct {
    	timeout       int64
    	minimum       int64
    	entries       int64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Aug 19 23:21:05 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top