Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for LoadTests (0.41 sec)

  1. okhttp/src/test/java/okhttp3/WebPlatformUrlTest.kt

    /** Runs the web platform URL tests against Java URL models.  */
    class WebPlatformUrlTest {
      class TestDataParamProvider : SimpleProvider() {
        override fun arguments() = ArrayList<Any>(loadTests())
      }
    
      /** Test how [HttpUrl] does against the web platform test suite.  */
      @ArgumentsSource(TestDataParamProvider::class)
      @ParameterizedTest
      fun httpUrl(testData: WebPlatformUrlTestData) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/workcmd/sync.go

    	mms := modload.MainModules
    
    	opts := modload.PackageOpts{
    		Tags:                     imports.AnyTags(),
    		VendorModulesInGOROOTSrc: true,
    		ResolveMissingImports:    false,
    		LoadTests:                true,
    		AllowErrors:              true,
    		SilencePackageErrors:     true,
    		SilenceUnmatchedWarnings: true,
    	}
    	for _, m := range mms.Versions() {
    		opts.MainModule = m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/why.go

    	modload.ExplicitWriteGoMod = true // don't write go.mod in ListModules
    
    	loadOpts := modload.PackageOpts{
    		Tags:                     imports.AnyTags(),
    		VendorModulesInGOROOTSrc: true,
    		LoadTests:                !*whyVendor,
    		SilencePackageErrors:     true,
    		UseVendorAll:             *whyVendor,
    	}
    
    	if *whyM {
    		for _, arg := range args {
    			if strings.Contains(arg, "@") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/tidy.go

    		Tidy:                     true,
    		TidyDiff:                 tidyDiff,
    		TidyCompatibleVersion:    tidyCompat.String(),
    		VendorModulesInGOROOTSrc: true,
    		ResolveMissingImports:    true,
    		LoadTests:                true,
    		AllowErrors:              tidyE,
    		SilenceMissingStdImports: true,
    		Switcher:                 new(toolchain.Switcher),
    	}, "all")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    	AllowPackage func(ctx context.Context, path string, mod module.Version) error
    
    	// LoadTests loads the test dependencies of each package matching a requested
    	// pattern. If ResolveMissingImports is also true, test dependencies will be
    	// resolved if missing.
    	LoadTests bool
    
    	// UseVendorAll causes the "all" package pattern to be interpreted as if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	opts := modload.PackageOpts{
    		Tags:                     imports.AnyTags(),
    		VendorModulesInGOROOTSrc: true,
    		LoadTests:                *getT,
    		AssumeRootsImported:      true, // After 'go get foo', imports of foo should build.
    		SilencePackageErrors:     true, // May be fixed by subsequent upgrades or downgrades.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    				return pkgs
    			}
    		}
    	}
    
    	var matches []*search.Match
    	if modload.Init(); cfg.ModulesEnabled {
    		modOpts := modload.PackageOpts{
    			ResolveMissingImports: true,
    			LoadTests:             opts.ModResolveTests,
    			SilencePackageErrors:  true,
    		}
    		matches, _ = modload.LoadPackages(ctx, modOpts, patterns...)
    	} else {
    		noModRoots := []string{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top