Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 963 for compiling (0.28 sec)

  1. test/fixedbugs/issue22660.go

    		log.Fatal(err)
    	}
    
    	out, err := exec.Command("go", "tool", "compile", "-p=p", fmt.Sprintf("-trimpath=%s", path), f.Name()).CombinedOutput()
    	if err == nil {
    		log.Fatalf("expected compiling %s to fail", f.Name())
    	}
    
    	if !strings.HasPrefix(string(out), path) {
    		log.Fatalf("expected full path (%s) in error message, got:\n%s", path, out)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/language/base/compile/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * General purpose types for related to compiling.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 718 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.java-conventions.gradle

    // Do not allow any warnings
    checkstyle {
        config = resources.text.fromString(com.example.CheckstyleUtil.getCheckstyleConfig("/checkstyle.xml"))
        maxWarnings = 0
    }
    
    // Enable deprecation messages when compiling Java code
    tasks.withType(JavaCompile).configureEach {
        options.compilerArgs << "-Xlint:deprecation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 914 bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for compiling Swift sources for a native runtime.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 725 bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/objectivec/tasks/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for compiling Objective-C sources for a native runtime.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 736 bytes
    - Viewed (0)
  6. test/fixedbugs/bug432.go

    // compile
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gccgo crashed compiling this.
    
    package p
    
    var v struct{ I }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 30 15:42:21 UTC 2012
    - 255 bytes
    - Viewed (0)
  7. test/fixedbugs/issue8079.go

    // compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 8079: gccgo crashes when compiling interface with blank type name.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 13 19:33:45 UTC 2014
    - 279 bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/testing/toolchains/internal/JUnit4ToolchainParameters.java

    /**
     * Parameters for configuring a JUnit 4 test toolchain.
     *
     * @since 8.5
     */
    public interface JUnit4ToolchainParameters extends JvmTestToolchainParameters {
        /**
         * The version of JUnit 4 to use for compiling and executing tests.
         */
        Property<String> getVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 10:55:40 UTC 2023
    - 998 bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/CommandLineJavaCompilerForExecutableIntegrationTest.groovy

                    forkOptions.executable = "${TextUtil.normaliseFileSeparators(Jvm.current().getExecutable("javac").absolutePath)}"
                }
            """
        }
    
        @Override
        String logStatement() {
            "Compiling with Java command line compiler"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':compileDebugCpp'.")
            failure.assertHasCause("A build operation failed.")
            failure.assertThatCause(containsText("C++ compiler failed while compiling broken.cpp"))
        }
    
        @ToBeFixedForConfigurationCache
        def "finds C and C++ standard library headers"() {
            given:
            buildFile << """
                apply plugin: 'cpp-library'
             """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
Back to top