Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 316 for enter_1 (0.22 sec)

  1. src/internal/singleflight/singleflight_test.go

    		if calls.Add(1) == 1 {
    			// First invocation.
    			wg1.Done()
    		}
    		v := <-c
    		c <- v // pump; make available for any future calls
    
    		time.Sleep(10 * time.Millisecond) // let more goroutines enter Do
    
    		return v, nil
    	}
    
    	const n = 10
    	wg1.Add(1)
    	for i := 0; i < n; i++ {
    		wg1.Add(1)
    		wg2.Add(1)
    		go func() {
    			defer wg2.Done()
    			wg1.Done()
    			v, err, _ := g.Do("key", fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:21:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/term/terminal.go

    	// lock protects the terminal and the state in this object from
    	// concurrent processing of a key press and a Write() call.
    	lock sync.Mutex
    
    	c      io.ReadWriter
    	prompt []rune
    
    	// line is the current line being entered.
    	line []rune
    	// pos is the logical position of the cursor in line
    	pos int
    	// echo is true if local echo is enabled
    	echo bool
    	// pasteActive is true iff there is a bracketed paste operation in
    	// progress.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  3. bin/init.sh

    # Params:
    #   $1: The URL of the Envoy tar.gz to be downloaded.
    #   $2: The full path of the output binary.
    #   $3: Non-versioned name to use
    function download_envoy_if_necessary () {
      if [[ ! -f "$2" ]] ; then
        # Enter the output directory.
        mkdir -p "$(dirname "$2")"
        pushd "$(dirname "$2")"
    
        # Download and extract the binary to the output directory.
        echo "Downloading ${SIDECAR}: $1 to $2"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. docs/debugging/inspect/main.go

    		}
    
    		// Prompt for decryption key if no --key or --private-key are provided
    		if len(privateKey) == 0 && !*stdin {
    			reader := bufio.NewReader(os.Stdin)
    			fmt.Print("Enter Decryption Key: ")
    
    			text, _ := reader.ReadString('\n')
    			// convert CRLF to LF
    			*keyHex = strings.ReplaceAll(text, "\n", "")
    			*keyHex = strings.TrimSpace(*keyHex)
    		}
    	}
    
    	var inputs []string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

                }
            }
            handle.stdinPipe.write((javaOption + TextUtil.platformLineSeparator).bytes)
    
            // Enter a Java version
            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains("Enter target Java version (min: 7, default: 21)")
            }
            handle.stdinPipe.write(("17" + TextUtil.platformLineSeparator).bytes)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/runtime/trace/trace.go

    // for the Go execution tracer.
    //
    // # Tracing runtime activities
    //
    // The execution trace captures a wide range of execution events such as
    // goroutine creation/blocking/unblocking, syscall enter/exit/block,
    // GC-related events, changes of heap size, processor start/stop, etc.
    // When CPU profiling is active, the execution tracer makes an effort to
    // include those samples as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

            }
        }
    
        @Override
        public SnapshotVisitResult accept(RelativePathTracker pathTracker, RelativePathTrackingFileSystemSnapshotHierarchyVisitor visitor) {
            pathTracker.enter(getName());
            try {
                SnapshotVisitResult result = visitor.visitEntry(this, pathTracker);
                switch (result) {
                    case CONTINUE:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

            public Collection<CachingProvider<?>> providers() {
                return provided.values();
            }
        }
    
        private final List<ScopeState> values = new CopyOnWriteArrayList<>();
    
        public void enter() {
            values.add(0, new ScopeState());
        }
    
        protected ScopeState getScopeState() {
            if (values.isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/universe.go

    	universeRune = Universe.Lookup("rune").Type()
    	universeError = Universe.Lookup("error").Type()
    	universeComparable = Universe.Lookup("comparable")
    }
    
    // Objects with names containing blanks are internal and not entered into
    // a scope. Objects with exported names are inserted in the unsafe package
    // scope; other objects are inserted in the universe scope.
    func def(obj Object) {
    	assert(obj.color() == black)
    	name := obj.Name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/go/types/universe.go

    	universeRune = Universe.Lookup("rune").Type()
    	universeError = Universe.Lookup("error").Type()
    	universeComparable = Universe.Lookup("comparable")
    }
    
    // Objects with names containing blanks are internal and not entered into
    // a scope. Objects with exported names are inserted in the unsafe package
    // scope; other objects are inserted in the universe scope.
    func def(obj Object) {
    	assert(obj.color() == black)
    	name := obj.Name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top