Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for oldStat (0.23 sec)

  1. src/cmd/vendor/golang.org/x/term/term.go

    // commonly found on UNIX systems.
    //
    // Putting a terminal into raw mode is the most common requirement:
    //
    //	oldState, err := term.MakeRaw(int(os.Stdin.Fd()))
    //	if err != nil {
    //	        panic(err)
    //	}
    //	defer term.Restore(int(os.Stdin.Fd()), oldState)
    //
    // Note that on non-Unix systems os.Stdin.Fd() may not be 0.
    package term
    
    // State contains the state of a terminal.
    type State struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/pprof/readlineui.go

    	if v := strings.ToLower(os.Getenv("TERM")); v == "" || v == "dumb" {
    		return nil
    	}
    	// test if we can use term.ReadLine
    	// that assumes operation in the raw mode.
    	oldState, err := term.MakeRaw(0)
    	if err != nil {
    		return nil
    	}
    	term.Restore(0, oldState)
    
    	rw := struct {
    		io.Reader
    		io.Writer
    	}{os.Stdin, os.Stderr}
    	return &readlineUI{term: term.NewTerminal(rw, "")}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/term/term_unix.go

    	return err == nil
    }
    
    func makeRaw(fd int) (*State, error) {
    	termios, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
    	if err != nil {
    		return nil, err
    	}
    
    	oldState := State{state{termios: *termios}}
    
    	// This attempts to replicate the behaviour documented for cfmakeraw in
    	// the termios(3) manpage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

                parent = executing.get(event.getParentId()).test;
            }
            TestState state = new TestState(new DecoratingTestDescriptor(test, parent), event, executing);
            TestState oldState = executing.put(test.getId(), state);
            if (oldState != null) {
                throw new IllegalArgumentException(String.format("Received a start event for %s with duplicate id '%s'.",
                        test, test.getId()));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top