Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for attacks (0.49 sec)

  1. src/cmd/go/internal/test/test.go

    		} else {
    			testWaitDelay = wd
    		}
    
    		// We expect the test binary to terminate itself (and dump stacks) after
    		// exactly testTimeout. We give it up to one WaitDelay or one minute,
    		// whichever is longer, to finish dumping stacks before we send it an
    		// external signal: if the process has a lot of goroutines, dumping stacks
    		// after the timeout can take a while.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    	// dependencies, we prefer to add roots for packages with shorter import
    	// stacks first, on the theory that the module requirements for those will
    	// tend to fill in the requirements for their transitive imports (which have
    	// deeper import stacks). So we add the missing dependencies for one depth at
    	// a time, starting with the packages actually in "all" and expanding outwards
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    // loader instructs it to dynamically expand those roots to the full "all"
    // pattern as loading progresses.
    //
    // The pkgInAll flag on each loadPkg instance tracks whether that
    // package is known to match the "all" meta-pattern.
    // A package matches the "all" pattern if:
    // 	- it is in the main module, or
    // 	- it is imported by any test in the main module, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    attention to issues of being run as clients of untrusted servers. In contrast,
    Bazaar, Fossil, and Subversion have primarily been used in trusted,
    authenticated environments and are not as well scrutinized as attack surfaces.
    
    The version control command restrictions only apply when using direct version
    control access to download code. When downloading modules from a proxy,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	short      bool
    	cgoEnabled bool
    	json       bool
    
    	tests        []distTest // use addTest to extend
    	testNames    map[string]bool
    	timeoutScale int
    
    	worklist []*work
    }
    
    // work tracks command execution for a test.
    type work struct {
    	dt    *distTest     // unique test name, etc.
    	cmd   *exec.Cmd     // must write stdout/stderr to out
    	flush func()        // if non-nil, called after cmd.Run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top