Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,101 for ignoreMe (0.13 sec)

  1. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithInnerTypes.java

                InnerClass getOuter() { return null; }
            }
        }
    
        Sub2Interface getSomeProp() {
            // ignore classes in method bodies
            class IgnoreMe {}
    
            // ignore anonymous classes
            return new Sub2Interface() { };
        }
    
        // ignore anonymous classes
        final Runnable ignoreMe = new Runnable() {
            public void run() {
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 876 bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/BinariesLifecycleTaskIntegrationTest.groovy

            withLibBinaries("buildableBinary", "notBuildableBinary")
            withStandaloneBinaries("ignoreMe1", "ignoreMe2")
    
            when:
            run "assemble"
    
            then:
            result.assertTasksExecuted(":libBuildableBinary", ":assemble")
        }
    
        def "check task does not build binaries" () {
            withLibBinaries("buildableBinary1", "notBuildableBinary", "buildableBinary2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/UriTextResourceTest.groovy

            fileUri = file.toURI()
        }
    
        private URI createJar() throws URISyntaxException {
            TestFile jarFile = tmpDir.testDirectory.file('test.jar')
            testDir.file('ignoreme').write('content')
            testDir.zipTo(jarFile)
            return new URI("jar:${jarFile.toURI()}!/build.script")
        }
    
        def canConstructResourceFromFile() {
            when:
            file.createNewFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/TextResourceScriptSourceTest.java

            scriptFileUri = scriptFile.toURI();
            createJar();
        }
    
        private URI createJar() throws URISyntaxException {
            TestFile jarFile = tmpDir.getTestDirectory().file("test.jar");
            testDir.file("ignoreme").write("content");
            testDir.zipTo(jarFile);
            return new URI(String.format("jar:%s!/build.script", jarFile.toURI()));
        }
    
        @Test
        public void canConstructSourceFromFile() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 01:04:05 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandlerTest.groovy

            where:
            emptyScript                   | _
            ""                            | _
            "  \r\n\t   \n"               | _
            "\n // ignore me"             | _
            "/*\n\n*/"                    | _
            "import org.gradle.ignored.*" | _
        }
    
        def testCompileScriptToDirWithClassDefinitionOnlyScript() {
            def scriptText = "class SomeClass {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            0 * processor._
        }
    
        def "executes an ignored JUnit 4 test class"() {
            when:
            process(AnIgnoredTestClass)
    
            then:
            1 * processor.started({it.id == 1}, {it.parentId == null})
            1 * processor.started({ it.id == 2 && it.name == "ignored2" && it.className == AnIgnoredTestClass.name }, { it.parentId == 1 })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            def unused = file("app/src/main/headers/ignore1.h") << "broken!"
            def unusedPrivate = file("app/src/main/cpp/ignore2.h") << "broken!"
    
            run installApp
            libObjects.snapshot()
            appObjects.snapshot()
    
            when:
            unused << "even more broken"
            unusedPrivate << "even more broken"
            file("src/main/headers/ignored3.h") << "broken"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClass.groovy

         */
        final String readOnlyGroovyProp
    
        /**
         * An array property.
         */
        def String[] arrayProp
    
        private def ignoreMe1;
        public int ignoreMe2;
        protected int ignoreMe3;
        static String ignoreMe4;
    
        /**
         * A read-only property.
         */
        def getReadOnly() {
            'value'
        }
    
        /**
         * A property.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 915 bytes
    - Viewed (0)
  9. src/encoding/gob/codec_test.go

    	it0.B = "hello"
    	it0.C = 3.14159
    	it0.Ignore_d = []int{1, 2, 3}
    	it0.Ignore_e[0] = 1.0
    	it0.Ignore_e[1] = 2.0
    	it0.Ignore_e[2] = 3.0
    	it0.Ignore_f = true
    	it0.Ignore_g = "pay no attention"
    	it0.Ignore_h = []byte("to the curtain")
    	it0.Ignore_i = &RT1{3.1, "hi", 7, "hello"}
    	it0.Ignore_m = map[string]int{"one": 1, "two": 2}
    
    	b := new(bytes.Buffer)
    	NewEncoder(b).Encode(it0)
    	dec := NewDecoder(b)
    	var rt1 RT1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/resources/org/gradle/test/JavaClass.java

        /**
         * A read-only property.
         */
        public String getReadOnly() {
            return "value";
        }
    
        /**
         * An ignored field.
         */
        String ignoreMe1;
    
        /**
         * Another ignored field.
         */
        final long ignoreMe2 = 9;
    
        /**
         * Not a setter.
         */
        public void setIgnoreMe1() {
        }
    
        /**
         * Not a setter.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top