Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for oldStat (0.12 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/CurrentBuildOperationRef.java

            BuildOperationRef oldState = get();
            try {
                set(state);
                return block.call();
            } finally {
                set(oldState);
            }
        }
    
        public void with(@Nullable BuildOperationRef state, Runnable block) {
            BuildOperationRef oldState = get();
            try {
                set(state);
                block.run();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/internal/trace/resources.go

    	// we don't need fields for every kind of resource.
    	id       int64
    	oldState uint8
    	newState uint8
    }
    
    func goStateTransition(id GoID, from, to GoState) StateTransition {
    	return StateTransition{
    		Resource: ResourceID{Kind: ResourceGoroutine, id: int64(id)},
    		oldState: uint8(from),
    		newState: uint8(to),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top