Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for notPackage (0.21 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/testdata/script/fmt_load_errors.txt

    exec $GOROOT/bin/gofmt gofmt-dir/no-extension
    stdout 'package x'
    
    exec $GOROOT/bin/gofmt gofmt-dir
    ! stdout 'package x'
    
    ! exec $GOROOT/bin/gofmt empty.go nopackage.go
    stderr -count=1 'empty\.go:1:1: expected .package., found .EOF.'
    stderr -count=1 'nopackage\.go:1:1: expected .package., found not'
    
    -- exclude/empty/x.txt --
    -- exclude/ignore/_x.go --
    package x
    -- exclude/x.go --
    // +build linux,!linux
    
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 09:17:34 UTC 2022
    - 775 bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/reflect/ReflectionTest.java

        assertEquals("java", Reflection.getPackageName("java.MyType"));
        assertEquals("java.lang", Reflection.getPackageName(Iterable.class.getName()));
        assertEquals("", Reflection.getPackageName("NoPackage"));
        assertEquals("java.util", Reflection.getPackageName(Map.Entry.class));
      }
    
      public void testNewProxy() throws Exception {
        Runnable runnable = Reflection.newProxy(Runnable.class, X_RETURNER);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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