Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 203 for DEAD (0.04 sec)

  1. src/cmd/compile/internal/ssa/copyelim.go

    		if x == v {
    			continue
    		}
    		if x == w {
    			continue
    		}
    		if w != nil {
    			return false
    		}
    		w = x
    	}
    
    	if w == nil {
    		// v references only itself. It must be in
    		// a dead code loop. Don't bother modifying it.
    		return false
    	}
    	v.Op = OpCopy
    	v.SetArgs1(w)
    	f := v.Block.Func
    	if f.pass.debug > 0 {
    		f.Warnl(v.Pos, "eliminated phi")
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/internal/concurrent/hashtriemap_test.go

    			e = e.overflow.Load()
    		}
    		return
    	}
    	i := n.indirect()
    	fmt.Printf("%s%p [Indirect Parent=%p Dead=%t Children=[", prefix, i, i.parent, i.dead.Load())
    	for j := range i.children {
    		c := i.children[j].Load()
    		fmt.Printf("%p", c)
    		if j != len(i.children)-1 {
    			fmt.Printf(", ")
    		}
    	}
    	fmt.Printf("]]\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    				}
    				changed = true
    				k--
    				break
    			}
    			ft.restore()
    		}
    		if len(b.Preds) == 0 && b != f.Entry {
    			// Block is now dead.
    			b.Kind = BlockInvalid
    		}
    	}
    	ft.restore()
    	ft.cleanup(f)
    	return changed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. internal/http/dial_linux.go

    				_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPINTVL, 15)
    			}
    
    			// Set tcp user timeout in addition to the keep-alive - tcp-keepalive is not enough to close a socket
    			// with dead end because tcp-keepalive is not fired when there is data in the socket buffer.
    			//    https://blog.cloudflare.com/when-tcp-sockets-refuse-to-die/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    // of following two conditions:
    // 1: The user is already in the current subgraph.
    // 2: The user will reach a dead end.
    //
    // If the op should be added to the subgraph and there are users who
    // will reach the dead end, add the ops on the dead end to the subgraph as well.
    bool ShouldAddOpToSubgraph(Operation* op,
                               const SetVector<Operation*>& reverse_subgraph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. src/runtime/debuglog_test.go

    //
    // 1. Make these tests re-build the runtime test with the debuglog
    // build tag and re-invoke themselves.
    //
    // 2. Always build the whole debuglog infrastructure and depend on
    // linker dead-code elimination to drop it. This is easy for dlog()
    // since there won't be any calls to it. For printDebugLog, we can
    // make panic call a wrapper that is call printDebugLog if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/DependentComponentsReport.java

        }
    
        @TaskAction
        public void report() {
            // Once we are here, the project lock is held. If we synchronize to avoid cross-project operations, we will have a dead lock.
            getWorkerLeaseService().runAsIsolatedTask(() -> {
                // Output reports per execution, not mixed.
                // Cross-project ModelRegistry operations do not happen concurrently.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. src/compress/gzip/gunzip_test.go

    			"nobly advanced.  It is rather for us to be here dedicated to\n" +
    			"the great task remaining before us — that from these honored\n" +
    			"dead we take increased devotion to that cause for which they\n" +
    			"gave the last full measure of devotion —\n" +
    			"  that we here highly resolve that these dead shall not have\n" +
    			"died in vain — that this nation, under God, shall have a new\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/liveness/plive.go

    	// a part of it is used, but we may not initialize all parts.
    	partLiveArgs map[*ir.Name]bool
    
    	doClobber     bool // Whether to clobber dead stack slots in this function.
    	noClobberArgs bool // Do not clobber function arguments
    
    	// treat "dead" writes as equivalent to reads during the analysis;
    	// used only during liveness analysis for stack slot merging (doesn't
    	// make sense for stackmap analysis).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

                                  const StandardPipelineOptions &options) {
      OpPassManager &func_pm = pm.nest<func::FuncOp>();
    
      // First operates on the executor dialect:
      // - remove dead islands.
      // - fuse islands as much as possible.
      // - materialize the eventual "pass-through" ops by inlining their content.
      func_pm.addPass(tf_executor::CreateTFExecutorGraphPruningPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top