Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 887 for compiling (0.19 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppHelloWorldApp.groovy

                    void DLL_FUNC sayHello();
                };
    
                int DLL_FUNC sum(int a, int b);
    
                #ifdef FRENCH
                #pragma message("<==== compiling bonjour.h ====>")
                #else
                #pragma message("<==== compiling hello.h ====>")
                #endif
    
                #endif
            """)
        }
    
        @Override
        SourceFile getCommonHeader() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

    }
    
    absl::StatusOr<std::unique_ptr<xla::PjRtLoadedExecutable>>
    PjRtDeviceCompilerClient::BuildExecutable(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result) {
      VLOG(2) << "Compiling to xla::PjRtLoadedExecutable.";
    
      TF_ASSIGN_OR_RETURN(auto executable,
                          client_->Compile(*result.computation,
                                           GetPjRtCompileOptions(options, result)));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/artifacts/generatedFileDependencies/groovy/build.gradle

    // tag::generated-file-dependencies[]
    dependencies {
        implementation files(layout.buildDirectory.dir('classes')) {
            builtBy 'compile'
        }
    }
    
    tasks.register('compile') {
        doLast {
            println 'compiling classes'
        }
    }
    
    tasks.register('list') {
        FileCollection compileClasspath = configurations.compileClasspath
        dependsOn compileClasspath
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 600 bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            install.assertInstalled()
            install.exec().out == app.englishOutput
        }
    
        static final String DEFAULT_PCH_MESSAGE="<==== compiling hello.h ====>"
        static final String FRENCH_PCH_MESSAGE="<==== compiling bonjour.h ====>"
        static final String ALTERNATE_PCH_MESSAGE="<==== compiling alternate hello.h ====>"
    
        def preCompiledHeaderComponent(String path="", String pch="common.h") {
            """
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * Groovy 1.7 or higher. Defaults to {@code ImmutableList.of("java", "groovy")}.
         */
        @Input
        public List<String> getFileExtensions() {
            return fileExtensions;
        }
    
        /**
         * Sets the list of acceptable source file extensions. Only takes effect when compiling against
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue52870.go

    // Copyright 2022 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 52870: gofrontend gave incorrect error when incorrectly
    // compiling ambiguous promoted method.
    
    package p
    
    type S1 struct {
    	*S2
    }
    
    type S2 struct {
    	T3
    	T4
    }
    
    type T3 int32
    
    func (T3) M() {}
    
    type T4 int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 16 01:03:59 UTC 2022
    - 407 bytes
    - Viewed (0)
  7. cmd/dependencycheck/dependencycheck.go

    	}
    	depsPattern, err := regexp.Compile(*restrict)
    	if err != nil {
    		log.Fatalf("Error compiling restricted dependencies regex: %v", err)
    	}
    	var excludePattern *regexp.Regexp
    	if *exclude != "" {
    		excludePattern, err = regexp.Compile(*exclude)
    		if err != nil {
    			log.Fatalf("Error compiling excluded package regex: %v", err)
    		}
    	}
    	b, err := os.ReadFile(args[0])
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/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)
  9. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.java-conventions.gradle.kts

    // 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.add("-Xlint:deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 909 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

    // 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.add("-Xlint:deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 909 bytes
    - Viewed (0)
Back to top