Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for testResources (0.04 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

      val fileSystem: FileSystem = FileSystem.SYSTEM,
      val client: OkHttpClient = OkHttpClient(),
    ) {
      private val testResources = projectRoot / "okhttp/src/test/resources"
      private val publicSuffixListDotDat = testResources / "okhttp3/internal/publicsuffix/public_suffix_list.dat"
      private val outputFile = testResources / PUBLIC_SUFFIX_RESOURCE
    
      val request = Request("https://publicsuffix.org/list/public_suffix_list.dat".toHttpUrl())
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 22:00
    - 6.2K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

    }
    
    plugins.withType<IdeaPlugin> {
        configure<IdeaModel> {
            module {
                val testFixtures = sourceSets.testFixtures.get()
                testSources.from(testFixtures.java.srcDirs)
                testSources.from(testFixtures.groovy.srcDirs)
                testResources.from(testFixtures.resources.srcDirs)
            }
        }
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-07-02 15:42
    - 3.3K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        // We apply lazy as we don't want to depend on the order
        plugins.withType<IdeaPlugin> {
            with(model) {
                module {
                    testSources.from(sourceSet.java.srcDirs, sourceSet.the<GroovySourceDirectorySet>().srcDirs)
                    testResources.from(sourceSet.resources.srcDirs)
                }
            }
        }
    }
    
    
    private
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-06 08:02
    - 12.3K bytes
    - Viewed (0)
  4. android/pom.xml

            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
            <excludes>
              <exclude>**/*.java</exclude>
            </excludes>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-12 22:10
    - 24.5K bytes
    - Viewed (0)
  5. pom.xml

            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
            <excludes>
              <exclude>**/*.java</exclude>
            </excludes>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-04-04 22:08
    - 24.1K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java

            String READY = "ready";
            String PACKAGE = "package";
            String VERIFY = "verify";
            String UNIT_TEST = "unit-test";
            String TEST_SOURCES = "test-sources";
            String TEST_RESOURCES = "test-resources";
            String TEST_COMPILE = "test-compile";
            String TEST = "test";
            String INTEGRATION_TEST = "integration-test";
            String INSTALL = "install";
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-05 11:52
    - 7.8K bytes
    - Viewed (0)
Back to top