Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 203 for DEAD (0.07 sec)

  1. 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)
  2. src/cmd/link/internal/ld/dwarf.go

    			dirIdx = len(dirNums) + 1
    			dirNums[dir] = dirIdx
    			dirs = append(dirs, dir)
    		}
    		files = append(files, fileDir{base: file, dir: dirIdx})
    
    		// We can't use something that may be dead-code
    		// eliminated from a binary here. proc.go contains
    		// main and the scheduler, so it's not going anywhere.
    		if i := strings.Index(name, "runtime/proc.go"); i >= 0 && unit.Lib.Pkg == "runtime" {
    			d.dwmu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K 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. src/cmd/compile/internal/staticinit/sched.go

    		}
    	}
    	varToMapInit = nil
    }
    
    // OutlineMapInits replaces global map initializers with outlined
    // calls to separate "map init" functions (where possible and
    // profitable), to facilitate better dead-code elimination by the
    // linker.
    func OutlineMapInits(fn *ir.Func) {
    	if base.Debug.WrapGlobalMapCtl == 1 {
    		return
    	}
    
    	outlined := 0
    	for i, stmt := range fn.Body {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/runtime/mgcsweep.go

    					} else {
    						// All other specials only apply when an object is freed,
    						// so just keep the special record.
    						siter.next()
    					}
    				}
    			} else {
    				// Pass 2: the object is truly dead, free (and handle) all specials.
    				for siter.valid() && uintptr(siter.s.offset) < endOffset {
    					// Find the exact byte for which the special was setup
    					// (as opposed to object beginning).
    					special := siter.s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. 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)
  7. src/index/suffixarray/sais.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
    - 32.4K bytes
    - Viewed (0)
  8. test/escape2.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)
  9. src/runtime/stack.go

    				}
    			}
    		}
    	}
    }
    
    // Note: the argument/return area is adjusted by the callee.
    func adjustframe(frame *stkframe, adjinfo *adjustinfo) {
    	if frame.continpc == 0 {
    		// Frame is dead.
    		return
    	}
    	f := frame.fn
    	if stackDebug >= 2 {
    		print("    adjusting ", funcname(f), " frame=[", hex(frame.sp), ",", hex(frame.fp), "] pc=", hex(frame.pc), " continpc=", hex(frame.continpc), "\n")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

           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.
      }];
    
      let constructor = "TF::CreatePromoteResourcesToArgsPass()";
    
    let options = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top