Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/runtime/mgcmark.go

    	// Scan this shard.
    	scanblock(b, n, ptrmask, gcw, nil)
    	return int64(n)
    }
    
    // markrootFreeGStacks frees stacks of dead Gs.
    //
    // This does not free stacks of dead Gs cached on Ps, but having a few
    // cached stacks around isn't a problem.
    func markrootFreeGStacks() {
    	// Take list of dead Gs with stacks.
    	lock(&sched.gFree.lock)
    	list := sched.gFree.stack
    	sched.gFree.stack = gList{}
    	unlock(&sched.gFree.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/ssa/branchelim_test.go

    		t.Run(arch, func(t *testing.T) {
    			c := testConfigArch(t, arch)
    			boolType := c.config.Types.Bool
    			intType := c.config.Types.Int32
    
    			// The control flow here is totally bogus,
    			// but a dead cycle seems like the only plausible
    			// way to arrive at a diamond CFG that is also a loop.
    			fun := c.Fun("entry",
    				Bloc("entry",
    					Valu("start", OpInitMem, types.TypeMem, 0, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  10. 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)
Back to top