Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for notPackage (0.12 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)
Back to top