Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for customCode (0.2 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

            !file("build/reports/pmd/main.xml").exists()
            file("htmlReport.html").exists()
        }
    
        def "use custom rule set files"() {
            assumeTrue(fileLockingIssuesSolved())
    
            customCode()
            file("customRuleSet.xml") << customRuleSet()
    
            buildFile << """
                pmd {
                    ruleSetFiles = files("customRuleSet.xml")
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/CustomModel.java

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.fixtures;
    
    import java.io.Serializable;
    
    public class CustomModel implements Serializable {
        public int value;
    
        public CustomModel(int value) {
            this.value = value;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 840 bytes
    - Viewed (0)
  3. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/CustomModel.java

     * limitations under the License.
     */
    
    package org.gradle.internal.daemon.client.serialization;
    
    import java.io.Serializable;
    
    public class CustomModel implements Serializable {
        public CustomModel(CustomAction customAction) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 816 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/CustomModel.java

     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r86;
    
    import java.io.Serializable;
    
    class CustomModel implements Serializable {
        public int value;
    
        public CustomModel(int value) {
            this.value = value;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 23:23:41 UTC 2023
    - 830 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/CustomModel.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r85
    
    interface CustomModel {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 14:01:21 UTC 2023
    - 686 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/plugin/src/main/java/org/gradle/sample/plugin/CustomModel.java

    import org.gradle.tooling.model.Model;
    import org.gradle.tooling.model.DomainObjectSet;
    
    /**
     * This is a custom tooling model. It must be assignable to {@link Model} and it must be an interface.
     */
    public interface CustomModel extends Model {
        String getName();
    
        DomainObjectSet<String> getTasks();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r44/CustomModel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r44;
    
    public interface CustomModel {
    
        boolean isBuiltWithParameter();
    
        String getParameterValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 764 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/CustomModel.java

     */
    
    package org.gradle.integtests.tooling.r18;
    
    import org.gradle.tooling.model.GradleProject;
    import org.gradle.tooling.model.eclipse.EclipseProject;
    
    import java.io.Serializable;
    
    class CustomModel implements Serializable {
        EclipseProject eclipse;
        GradleProject gradle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 895 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/CustomModel.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r82
    
    interface CustomModel {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 686 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CustomModel.java

     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r68;
    
    import java.io.File;
    import java.util.List;
    
    public interface CustomModel {
        String getPath();
    
        List<File> getRuntimeClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 800 bytes
    - Viewed (0)
Back to top