Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for TestResources (0.37 sec)

  1. maven-core/src/test/resources-project-builder/pom-inheritance/pom.xml

        <resources>
          <resource>
            <directory>res/main</directory>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>res/test</directory>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-expression</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    		devs:             checkpoint.DevicesPerNUMA{0: []string{"dev3", "dev4"}},
    		topology:         false,
    	}
    	testResources := make([]TestResource, 2)
    	testResources = append(testResources, res1)
    	testResources = append(testResources, res2)
    	as := require.New(t)
    	podsStub := activePodsStub{
    		activePods: []*v1.Pod{},
    	}
    	tmpDir, err := os.MkdirTemp("", "checkpoint")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperSSLTest.groovy

        @Rule
        SetSystemProperties properties = new SetSystemProperties()
        @Rule
        final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
        @Rule
        TestResources resources = new TestResources(temporaryFolder)
        @Rule
        BlockingHttpsServer server = new BlockingHttpsServer()
    
        private HttpClientHelper client
        private TestKeyStore keyStore
    
        def cleanup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 05:29:07 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLayoutIntegrationTest.groovy

        @Rule
        public final ZincScalaCompileFixture zincScalaCompileFixture = new ZincScalaCompileFixture(executer, testDirectoryProvider)
    
        @Rule
        public final TestResources resources = new TestResources(testDirectoryProvider)
    
        @Before
        void setUp() {
            executer.withRepositoryMirrors()
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.integtests.fixtures.executer.ExecutionResult
    import org.gradle.plugins.ide.AbstractIdeIntegrationTest
    import org.junit.Rule
    import org.junit.Test
    import spock.lang.Issue
    
    class IdeaModuleIntegrationTest extends AbstractIdeIntegrationTest {
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.plugins.ide.AbstractIdeIntegrationTest
    import org.junit.Rule
    import org.junit.Test
    
    class IdeaMultiModuleIntegrationTest extends AbstractIdeIntegrationTest {
        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  7. maven-core/src/test/remote-repo/org/apache/maven/plugins/maven-resources-plugin/0.1/maven-resources-plugin-0.1.jar

    1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-resources-plugin 0.1 resources false true testResources Does nothing. false true false false false true org.apache.maven.plugin.coreit.TestMojo java per-lookup once-per-session resources Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 7.8K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        private Set<File> resourceDirs = new LinkedHashSet<>();
        /**
         * <strong>This field is {@code @Deprecated}, please use {@link #testResources} instead.</strong>
         */
        @Deprecated
        private Set<File> testResourceDirs = new LinkedHashSet<>();
        private ConfigurableFileCollection testResources;
        private Map<String, Map<String, Collection<Configuration>>> scopes = new LinkedHashMap<>();
        private boolean downloadSources = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. testing/smoke-ide-test/build.gradle.kts

    }
    
    plugins.withType<IdeaPlugin> {
        with(model) {
            module {
                testSources.from(smokeIdeTestSourceSet.java.srcDirs, smokeIdeTestSourceSet.groovy.srcDirs)
                testResources.from(smokeIdeTestSourceSet.resources.srcDirs)
            }
        }
    }
    
    tasks.register<SmokeIdeTest>("smokeIdeTest") {
        group = "Verification"
        maxParallelForks = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 18:13:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-resources-plugin/0.1/maven-resources-plugin-0.1.jar

    1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: BEBE Build-Jdk: 1.6.0_07 META-INF/maven/plugin.xml A test plugin to assist testing of Maven core. org.apache.maven.plugins maven-resources-plugin 0.1 resources false true testResources Does nothing. false true false false false true org.apache.maven.plugin.coreit.TestMojo java per-lookup once-per-session resources Does nothing. false true false false false true org.apache.maven.plugin.coreit.ItMojo java per-lookup once-per-session...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top