Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,433 for Dead (0.09 sec)

  1. src/runtime/tracestatus.go

    		// the final trace as if they're running, not blocked.
    		tgs = traceGoWaiting
    		if status == _Gwaiting && wr.isWaitingForGC() {
    			tgs = traceGoRunning
    		}
    	case _Gdead:
    		throw("tried to trace dead goroutine")
    	default:
    		throw("tried to trace goroutine with invalid or unsupported status")
    	}
    	return tgs
    }
    
    // traceSchedResourceState is shared state for scheduling resources (i.e. fields common to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/runtime/cgocall.go

    	// syscall PC/SP is rolled back and the GC sees this function
    	// back at the call to entersyscall. Normally, fn and arg
    	// would be live at entersyscall and dead at asmcgocall, so if
    	// time moved backwards, GC would see these arguments as dead
    	// and then live. Prevent these undead arguments from crashing
    	// GC by forcing them to stay live across this time warp.
    	KeepAlive(fn)
    	KeepAlive(arg)
    	KeepAlive(mp)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	// completed and their corresponding frames are dead. Not finding d3
    	// for frame 3 means we'll set frame 3's continpc == 0, which is correct
    	// (frame 3 is dead). At the end of the walk the panic stack can thus
    	// contain defers (d3 in this case) for dead frames. The inversion here
    	// always indicates a dead frame, and the effect of the inversion on the
    	// scan is to hide those dead frames, so the scan is still okay:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    		startingClusterRoles     []*rbacv1.ClusterRole
    		clusterRoleToSync        string
    		expectedClusterRole      *rbacv1.ClusterRole
    		expectedClusterRoleApply *rbacv1ac.ClusterRoleApplyConfiguration
    	}{
    		{
    			name: "remove dead rules",
    			startingClusterRoles: []*rbacv1.ClusterRole{
    				role("hammer", map[string]string{"foo": "bar"}, hammerRules()),
    				combinedRole([]map[string]string{{"foo": "bar"}}, sawRules()),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/syscall/exec_freebsd.go

    			_, _, err1 = RawSyscall6(SYS_PROCCTL, _P_PID, 0, _PROC_PDEATHSIG_CTL, uintptr(unsafe.Pointer(&sys.Pdeathsig)), 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.
    		r1, _, _ = RawSyscall(SYS_GETPPID, 0, 0, 0)
    		if r1 != ppid {
    			upid, _, _ = RawSyscall(SYS_GETPID, 0, 0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Each of these resources could be read or written in the function. If its
      // read, we need to replace the resource arg with a value arg to get the
      // read value. If its written, we need to replace the write with an additional
      // value to be written.
    
      // Now create read values that will be used to replace each resource that
      // is read in the function body. These read values are just the same argument
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/check.go

    				f.Fatalf("defer block %s has non-memory control value %s", b, b.Controls[0].LongString())
    			}
    		case BlockFirst:
    			if len(b.Succs) != 2 {
    				f.Fatalf("plain/dead block %s len(Succs)==%d, want 2", b, len(b.Succs))
    			}
    			if b.NumControls() != 0 {
    				f.Fatalf("plain/dead block %s has a control value", b)
    			}
    		case BlockJumpTable:
    			if b.NumControls() != 1 {
    				f.Fatalf("jumpTable block %s has no control value", b)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/net/http/cgi/host.go

    		// And kill the child CGI process so we don't hang on
    		// the deferred cmd.Wait above if the error was just
    		// the client (rw) going away. If it was a read error
    		// (because the child died itself), then the extra
    		// kill of an already-dead process is harmless (the PID
    		// won't be reused until the Wait above).
    		cmd.Process.Kill()
    	}
    }
    
    func (h *Handler) printf(format string, v ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&f.MaxPerPodContainerCount, "maximum-dead-containers-per-container", f.MaxPerPodContainerCount, "Maximum number of old instances to retain per container.  Each container takes up some disk space.")
    	fs.MarkDeprecated("maximum-dead-containers-per-container", "Use --eviction-hard or --eviction-soft instead. Will be removed in a future version.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. test/live.go

    	select { // ERROR "stack object .autotmp_[0-9]+ \[2\]runtime.scase$"
    	case <-c:
    		return nil
    	case <-c:
    		return nil
    	}
    }
    
    func f11b() *int {
    	p := new(int)
    	if b {
    		// At this point p is dead: the code here cannot
    		// get to the bottom of the function.
    		// This used to have a spurious "live at call to printint: p".
    		printint(1) // nothing live here!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top