Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for TestResource (0.2 sec)

  1. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
          </testResource>
          <testResource>
            <directory>${project.basedir}/src/test/resources-filtered</directory>
            <filtering>true</filtering>
          </testResource>
        </testResources>
      </build>
    
      <reporting>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/groovy/quickstart/kotlin/src/test/groovy/org/gradle/PersonTest.groovy

        @Test public void usingCorrectVersionOfGroovy() {
            assertEquals('2.4.15', GroovySystem.version)
        }
    
        @Test public void testResourcesAreAvailable() {
            assertNotNull(getClass().getResource('/testResource.txt'))
            assertNotNull(getClass().getResource('/testScript.groovy'))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 727 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/groovy/quickstart/groovy/src/test/groovy/org/gradle/PersonTest.groovy

        @Test public void usingCorrectVersionOfGroovy() {
            assertEquals('2.4.15', GroovySystem.version)
        }
    
        @Test public void testResourcesAreAvailable() {
            assertNotNull(getClass().getResource('/testResource.txt'))
            assertNotNull(getClass().getResource('/testScript.groovy'))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 727 bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    	}
    }
    
    func TestPodContainerDeviceAllocation(t *testing.T) {
    	res1 := TestResource{
    		resourceName:     "domain1.com/resource1",
    		resourceQuantity: *resource.NewQuantity(int64(2), resource.DecimalSI),
    		devs:             checkpoint.DevicesPerNUMA{0: []string{"dev1", "dev2"}},
    		topology:         true,
    	}
    	res2 := TestResource{
    		resourceName:     "domain2.com/resource2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. guava-gwt/pom.xml

          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>test</directory>
          </testResource>
          <testResource>
            <directory>test-super</directory>
          </testResource>
          <testResource>
            <directory>${project.build.directory}/guava-test-gwt-sources</directory>
          </testResource>
        </testResources>
      </build>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.pom

        <resources>
          <resource>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>src/test/resources</directory>
          </testResource>
        </testResources>
        <directory>target</directory>
        <plugins>
          <plugin>
            <artifactId>maven-release-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

          <type>war</type>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <build>
        <testResources>
          <testResource>
            <directory>src/test/resources</directory>
            <filtering>true</filtering>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 08:59:31 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  8. 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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. 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: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                            implementationClass = "com.plugin.WorkerRunningPlugin"
                        }
                    }
                }
            """
            file("included/src/main/resources/TestResource.txt") << "Test Content"
            file("included/src/main/java/com/plugin/WorkerRunningPlugin.java") << """
                package com.plugin;
    
                import org.gradle.api.DefaultTask;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top