Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 203 for DEAD (0.12 sec)

  1. src/unicode/utf8/utf8_test.go

    func BenchmarkDecodeJapaneseRune(b *testing.B) {
    	nihon := []byte("本")
    	for i := 0; i < b.N; i++ {
    		DecodeRune(nihon)
    	}
    }
    
    // boolSink is used to reference the return value of benchmarked
    // functions to avoid dead code elimination.
    var boolSink bool
    
    func BenchmarkFullRune(b *testing.B) {
    	benchmarks := []struct {
    		name string
    		data []byte
    	}{
    		{"ASCII", []byte("a")},
    		{"Incomplete", []byte("\xf0\x90\x80")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	// Loop backward through sa, always tracking
    	// the next index to populate from sa[:numLMS].
    	// When we get to one, populate it.
    	// Zero the rest of the slots; they have dead values in them.
    	x := numLMS - 1
    	saX := sa[x]
    	c := text[saX]
    	b := bucket[c] - 1
    	bucket[c] = b
    
    	for i := len(sa) - 1; i >= 0; i-- {
    		if i != int(b) {
    			sa[i] = 0
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                          description: Maximum number of keepalive probes
                                            to send without response before deciding the
                                            connection is dead.
                                          type: integer
                                        time:
                                          description: The time duration a connection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    def TF_GlobalIterIdEffect : MemoryEffects<[MemRead<TF_GlobalIterIdResource>]>;
    
    // Trait for enforcing that a side-effecting op is executed, even if it would be
    // considered dead by MLIR (see b/195782952).
    // The trait is implemented as a write effect for a fake resource which is
    // ignored by side effect analysis, so it does not affect execution order
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/convert.go

    	slice.SetEsc(ir.EscNone)
    
    	init.Append(mkcall("checkptrArithmetic", nil, init, typecheck.ConvNop(cheap, types.Types[types.TUNSAFEPTR]), slice))
    	// TODO(khr): Mark backing store of slice as dead. This will allow us to reuse
    	// the backing store for multiple calls to checkptrArithmetic.
    
    	return cheap
    }
    
    // walkSliceToArray walks an OSLICE2ARR expression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  6. src/runtime/gc_test.go

    		// it isn't live, due to conservative scanning of stack frames.
    		// See issue 67204. For now, we allow a "slop" of 1 unintentionally
    		// retained object.
    		t.Fatalf("dead object in reachable set; want %b, got %b", want, got)
    	}
    	runtime.KeepAlive(half)
    }
    
    var pointerClassBSS *int
    var pointerClassData = 42
    
    func TestGCTestPointerClass(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    	// While this pointer can't escape into user code as a
    	// _live_ pointer until we return, conservative scanning
    	// may find a dead pointer that happens to point into this
    	// object. Delaying this update until now ensures that
    	// conservative scanning considers this pointer dead until
    	// this point.
    	span.freeIndexForScan = span.freeindex
    
    	// Allocate black during GC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		for off := head; off != old; {
    			ename, enext, v, ok := m.entryAt(off)
    			if !ok {
    				return nil, nil, errCorrupt
    			}
    			if string(ename) == name {
    				next.Store(^uint32(0)) // mark ours as dead
    				return v, nil, nil
    			}
    			off = enext
    		}
    	}
    }
    
    func (m *mappedFile) extend(end uint32) (*mappedFile, error) {
    	end = round(end, pageSize)
    	info, err := m.f.Stat()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/runtime/metrics/description.go

    			"physical memory.",
    		Kind: KindUint64,
    	},
    	{
    		Name:        "/memory/classes/heap/objects:bytes",
    		Description: "Memory occupied by live objects and dead objects that have not yet been marked free by the garbage collector.",
    		Kind:        KindUint64,
    	},
    	{
    		Name: "/memory/classes/heap/released:bytes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. src/syscall/exec_linux.go

    	if sys.Pdeathsig != 0 {
    		_, _, err1 = RawSyscall6(SYS_PRCTL, PR_SET_PDEATHSIG, uintptr(sys.Pdeathsig), 0, 0, 0, 0)
    		if err1 != 0 {
    			goto childerror
    		}
    
    		// Signal self if parent is already dead. This might cause a
    		// duplicate signal in rare cases, but it won't matter when
    		// using SIGKILL.
    		pid, _ = rawSyscallNoError(SYS_GETPPID, 0, 0, 0)
    		if pid != ppid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top