Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for sounds (0.12 sec)

  1. src/runtime/mprof.go

    	// future records the profile events we're counting for cycles
    	// that have not yet been published. This is ring buffer
    	// indexed by the global heap profile cycle C and stores
    	// cycles C, C+1, and C+2. Unlike active, these counts are
    	// only for a single cycle; they are not cumulative across
    	// cycles.
    	//
    	// We store cycle C here because there's a window between when
    	// C becomes the active cycle and when we've flushed it to
    	// active.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/runtime/asm_amd64.s

    	// handled by runtime.sehtramp thanks to the SEH metadata added
    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    	// and Windows stops the stack unwinding without calling the exception handler
    	// when it reaches that point.
    	MOVQ	BX, CX		// CX = first argument in Win64
    	CALL	AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    //    off-heap runtime data structures. Scanning a stack stops a
    //    goroutine, shades any pointers found on its stack, and then
    //    resumes the goroutine.
    //
    //    d. GC drains the work queue of grey objects, scanning each grey
    //    object to black and shading all pointers found in the object
    //    (which in turn may add those pointers to the work queue).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = 16
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = ppc64.REGTMP
    
    			// Don't adding padding for
    			// alignment with small iteration
    			// counts.
    			if ctr > 3 {
    				p = s.Prog(obj.APCALIGN)
    				p.From.Type = obj.TYPE_CONST
    				p.From.Offset = 16
    			}
    
    			// Generate 16 byte loads and stores.
    			// Use temp register for index (16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    	// recursively. For deep composite literal nests, this can
    	// lead to an exponential algorithm. Remember previous
    	// results to prune the recursion (was issue 1628).
    	if size, found := p.nodeSizes[n]; found {
    		return size
    	}
    
    	size = maxSize + 1 // assume n doesn't fit
    	p.nodeSizes[n] = size
    
    	// nodeSize computation must be independent of particular
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_test.go

    		command = append(command, "-serverinfo", serverInfoPath)
    	}
    
    	if test.numRenegotiations > 0 || test.sendKeyUpdate {
    		found := false
    		for _, flag := range command[1:] {
    			if flag == "-state" {
    				found = true
    				break
    			}
    		}
    
    		if !found {
    			panic("-state flag missing to OpenSSL, you need this if testing renegotiation or KeyUpdate")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	}
    
    	var terminating int32 = 0
    	if onlyReplaceFailedPods(jobCtx.job) {
    		// For PodFailurePolicy specified but PodReplacementPolicy disabled
    		// we still need to count terminating pods for replica counts
    		// But we will not allow updates to status.
    		if jobCtx.terminating == nil {
    			terminating = controller.CountTerminatingPods(jobCtx.pods)
    		} else {
    			terminating = *jobCtx.terminating
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    	maxTrampSize := int64(callCount * callTrampSize)
    
    	// Compute instruction addresses.  Once we do that, we need to check for
    	// overextended jumps and branches.  Within each iteration, Pc differences
    	// are always lower bounds (since the program gets monotonically longer,
    	// a fixed point will be reached).  No attempt to handle functions > 2GiB.
    	for {
    		big, rescan := false, false
    		maxPC := setPCs(cursym.Func().Text, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	default:
    		panic(fmt.Sprintf("the state %d is not defined", state))
    	}
    }
    
    // PodWorkerSync is the summarization of a single pod worker for sync. Values
    // besides state are used to provide metric counts for operators.
    type PodWorkerSync struct {
    	// State of the pod.
    	State PodWorkerState
    	// Orphan is true if the pod is no longer in the desired set passed to SyncKnownPods.
    	Orphan bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    // standard output or standard error and fails, logging msg, if it is
    // found.
    func (tg *testgoData) grepBothNot(match, msg string) {
    	tg.t.Helper()
    	if tg.doGrepMatch(match, &tg.stdout) || tg.doGrepMatch(match, &tg.stderr) {
    		tg.t.Log(msg)
    		tg.t.Fatalf("pattern %v found unexpectedly in standard output or standard error", match)
    	}
    }
    
    // doGrepCount counts the number of times a regexp is seen in a buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top