Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for failOnError (0.17 sec)

  1. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/tasks/compile/GroovyCompileOptionsTest.groovy

            compileOptions = TestUtil.instantiatorFactory().decorateLenient(services).newInstance(GroovyCompileOptions.class)
        }
    
        @Test
        void testCompileOptions() {
            assertTrue(compileOptions.failOnError)
            assertFalse(compileOptions.listFiles)
            assertFalse(compileOptions.verbose)
            assertTrue(compileOptions.fork)
            assertEquals(['java', 'groovy'], compileOptions.fileExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.CompileOptions.xml

                    <tr>
                        <td>Name</td>
                        <td>Default with <literal>java</literal> plugin</td>
                    </tr>
                </thead>
                <tr>
                    <td>failOnError</td>
                    <td><literal>true</literal></td>
                </tr>
                <tr>
                    <td>verbose</td>
                    <td><literal>false</literal></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/CompileOptionsTest.groovy

        }
    
        @SuppressWarnings("GrDeprecatedAPIUsage")
        def "default compile options"() {
            expect:
            compileOptions.debug
            compileOptions.failOnError
            compileOptions.warnings
    
            !compileOptions.deprecation
            !compileOptions.listFiles
            !compileOptions.verbose
            !compileOptions.fork
    
            compileOptions.compilerArgs.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pom.xml

    				<executions>
    					<execution>
    						<id>check-compatibility</id>
    						<goals>
    							<goal>check</goal>
    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<failOnError>false</failOnError>
    					<ignored>
    						<difference>
    							<!-- seems to be a clirr bug that it cannot handle the different inherited 
    								return types -->
    							<className>**</className>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                                "methodName": "getFailOnError",
                                "methodDescriptor": "()Lorg/gradle/api/provider/Property;",
                                "propertyName": "failOnError",
                                "replacedAccessors": [{
                                    "binaryCompatibility": "ACCESSORS_REMOVED",
                                    "descriptor": "()Z",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. guava-gwt/pom.xml

                <goals>
                  <goal>compile</goal>
                </goals>
                <configuration>
                  <module>com.google.common.ForceGuavaCompilation</module>
                  <failOnError>true</failOnError>
                  <logLevel>${gwt.logLevel}</logLevel>
                  <generateJsInteropExports>true</generateJsInteropExports>
                  <validateOnly>true</validateOnly>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            javaClassFile("").assertHasDescendants()
        }
    
        def "can compile bad code without failing"() {
            given:
            badCode()
    
            and:
            buildFile << "compileJava.options.failOnError = false"
    
            when:
            succeeds("compileJava")
    
            then:
            output.contains(logStatement())
            result.assertHasErrorOutput("';' expected")
            javaClassFile("").assertHasDescendants()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top