Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for runcom (1.29 sec)

  1. src/cmd/go/internal/modfetch/fetch.go

    	// create a .partial file before extracting the directory, and delete
    	// the .partial file afterward (all while holding the lock).
    	//
    	// Before Go 1.16, we extracted to a temporary directory with a random name
    	// then renamed it into place with os.Rename. On Windows, this failed with
    	// ERROR_ACCESS_DENIED when another process (usually an anti-virus scanner)
    	// opened files in the temporary directory.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	const (
    		notType = 1 << iota
    		notIntConst
    		notNumConst
    		notStrLiteral
    		notDeclared
    	)
    	sawUnmatchedErrors := false
    	for _, line := range strings.Split(stderr, "\n") {
    		// Ignore warnings and random comments, with one
    		// exception: newer GCC versions will sometimes emit
    		// an error on a macro #define with a note referring
    		// to where the expansion occurs. We care about where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. doc/go_spec.html

    or assignment are not yet evaluated.
    </li>
    
    <li>
    If one or more of the communications can proceed,
    a single one that can proceed is chosen via a uniform pseudo-random selection.
    Otherwise, if there is a default case, that case is chosen.
    If there is no default case, the "select" statement blocks until
    at least one of the communications can proceed.
    </li>
    
    <li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/par/work.go

    			w.waiting++
    			if w.waiting == w.running {
    				// All done.
    				w.wait.Broadcast()
    				w.mu.Unlock()
    				return
    			}
    			w.wait.Wait()
    			w.waiting--
    		}
    
    		// Pick something to do at random,
    		// to eliminate pathological contention
    		// in case items added at about the same time
    		// are most likely to contend.
    		i := rand.Intn(len(w.todo))
    		item := w.todo[i]
    		w.todo[i] = w.todo[len(w.todo)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_test.go

    	}
    	exe := tmpbase
    
    	runGoArgs := []string{"build", "-o", exe, "-gcflags=all=" + gcflags}
    	runGoArgs = append(runGoArgs, moreArgs...)
    	runGoArgs = append(runGoArgs, filepath.Join("testdata", base+".go"))
    
    	runGo(t, "", runGoArgs...)
    
    	nextlog := testbase + ".nexts"
    	tmplog := tmpbase + ".nexts"
    	var dbg dbgr
    	if *useGdb {
    		dbg = newGdb(t, tag, exe)
    	} else {
    		dbg = newDelve(t, tag, exe)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. doc/godebug.md

    preserving the behavior of earlier versions of Go.
    A future version of Go may change the defaults to
    `tarinsecurepath=0` and `zipinsecurepath=0`.
    
    Go 1.20 introduced automatic seeding of the
    [`math/rand`](/pkg/math/rand) global random number generator,
    controlled by the [`randautoseed` setting](/pkg/math/rand/#Seed).
    
    Go 1.20 introduced the concept of fallback roots for use during certificate verification,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    			} else {
    				to = filepath.Join("/_", toPath)
    			}
    			flags = append(slices.Clip(flags), prefixMapFlag+"="+from+"="+to)
    		}
    	}
    
    	// Tell gcc to not insert truly random numbers into the build process
    	// this ensures LTO won't create random numbers for symbols.
    	if b.gccSupportsFlag(compiler, "-frandom-seed=1") {
    		flags = append(flags, "-frandom-seed="+buildid.HashToString(a.actionID))
    	}
    
    	overlayPath := file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    or assignment are not yet evaluated.
    </li>
    
    <li>
    If one or more of the communications can proceed,
    a single one that can proceed is chosen via a uniform pseudo-random selection.
    Otherwise, if there is a default case, that case is chosen.
    If there is no default case, the "select" statement blocks until
    at least one of the communications can proceed.
    </li>
    
    <li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top