Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for DEAD (0.1 sec)

  1. src/runtime/mprof.go

    	// Visit each goroutine that existed as of the startTheWorld call above.
    	//
    	// New goroutines may not be in this list, but we didn't want to know about
    	// them anyway. If they do appear in this list (via reusing a dead goroutine
    	// struct, or racing to launch between the world restarting and us getting
    	// the list), they will already have their goroutineProfiled field set to
    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/mbitmap.go

    // means the word is a live pointer to be visited by the GC (referred to
    // as "pointer"). A "0" bit means the word should be ignored by GC
    // (referred to as "scalar", though it could be a dead pointer value).
    //
    // Heap bitmaps
    //
    // The heap bitmap comprises 1 bit for each pointer-sized word in the heap,
    // recording whether a pointer is stored in that word or not. This bitmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::mhlo::CreateInfeedsOpsXlaAdjustLayoutPass());
    
      if (lower_to_xla_hlo) {
        // This has to run after legalization to delete non legal but dead ops.
        // This must run before Shape Inference.
        pm.addNestedPass<mlir::func::FuncOp>(mlir::createCanonicalizerPass());
    
        // Run shape inference pass to propagate shapes through tensor_cast
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    on the socket to enable TCP Keepalives. properties: interval: description: The time duration between keep-alive probes. type: string probes: 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 needs to be idle before keep-alive probes start being sent. type: string type: object type: object type: object loadBalancer: description: Settings controlling the load balancer algorithms....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. test/escape2n.go

    	copy(slice2, slice1)
    	return slice2[0]
    }
    
    func issue12397(x, y int) { // ERROR "moved to heap: y$"
    	// x does not escape below, because all relevant code is dead.
    	if false {
    		gxx = &x
    	} else {
    		gxx = &y
    	}
    
    	if true {
    		gxx = &y
    	} else {
    		gxx = &x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/obj6.go

    	if p.As == obj.ACALL || p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ARET || p.As == obj.AJMP {
    		// These opcodes don't use a GOT to access their argument (see rewriteToUseGot),
    		// or R15 would be dead at them anyway.
    		return false
    	}
    	if p.As == ALEAQ {
    		// The GOT entry is placed directly in the destination register; R15 is not used.
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

       resource is written later.
    
    Assumption of this pass:
     . Compound resource operations have already been decomposed.
     . Dead functions have already been removed, as resource arguments in dead
       functions can cause the pass to fail.
    
    #### Options
    ```
    -functions : Comma separated list of functions whose resources read/writes should be promoted to function inputs/outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	mp := getg().m
    
    	// Emit a trace event for this syscall -> dead transition.
    	//
    	// N.B. the tracer can run on a bare M just fine, we just have
    	// to make sure to do this before setg(nil) and unminit.
    	var trace traceLocker
    	if !mp.isExtraInSig {
    		trace = traceAcquire()
    	}
    
    	// Return mp.curg to dead state.
    	casgstatus(mp.curg, _Gsyscall, _Gdead)
    	mp.curg.preemptStop = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/runtime/asm_arm64.s

    	MOVD	$runtime·mainPC(SB), R0		// entry
    	SUB	$16, RSP
    	MOVD	R0, 8(RSP) // arg
    	MOVD	$0, 0(RSP) // dummy LR
    	BL	runtime·newproc(SB)
    	ADD	$16, RSP
    
    	// start this M
    	BL	runtime·mstart(SB)
    
    	// Prevent dead-code elimination of debugCallV2 and debugPinnerV1, which are
    	// intended to be called by debuggers.
    	MOVD	$runtime·debugPinnerV1<ABIInternal>(SB), R0
    	MOVD	$runtime·debugCallV2<ABIInternal>(SB), R0
    
    	MOVD	$0, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  10. src/runtime/map.go

    	}
    	return h.count
    }
    
    // mapinitnoop is a no-op function known the Go linker; if a given global
    // map (of the right size) is determined to be dead, the linker will
    // rewrite the relocation (from the package init func) from the outlined
    // map init function to this symbol. Defined in assembly so as to avoid
    // complications with instrumentation (coverage, etc).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top