Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for notPackage (0.11 sec)

  1. android-test/build.gradle.kts

        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
        testInstrumentationRunnerArguments += mapOf(
          "runnerBuilder" to "de.mannodermaus.junit5.AndroidJUnit5Builder",
          "notPackage" to "org.bouncycastle",
          "configurationParameters" to "junit.jupiter.extensions.autodetection.enabled=true"
        )
      }
    
      if (androidBuild) {
        sourceSets["androidTest"].java.srcDirs(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/query.go

    			found = append(found, r.QueryResult)
    		case *PackageNotInModuleError:
    			// Given the option, prefer to attribute “package not in module”
    			// to modules other than the main one.
    			if noPackage == nil || MainModules.Contains(noPackage.Mod.Path) {
    				noPackage = rErr
    			}
    		case *NoMatchingVersionError:
    			if noVersion == nil {
    				noVersion = rErr
    			}
    		case *NoPatchBaseError:
    			if noPatchBase == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    // that does exist does not actually contain the package.
    func isNoSuchPackageVersion(err error) bool {
    	var noPackage *modload.PackageNotInModuleError
    	return isNoSuchModuleVersion(err) || errors.As(err, &noPackage)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    //
    // Notes on the layout of global symbol index space:
    //
    //   - Go object files are read before host object files; each Go object
    //     read adds its defined package symbols to the global index space.
    //     Nonpackage symbols are not yet added.
    //
    //   - In loader.LoadNonpkgSyms, add non-package defined symbols and
    //     references in all object files to the global index space.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top