Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 411 for compiling (0.39 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    You’ll discover that Gradle has a rich API for working with dependencies — one that takes time to master, but is straightforward to use for common scenarios.
    
    [[sec:swift_compile_link]]
    == Compiling and linking your code
    Compiling both your code can be trivially easy if you follow the conventions:
    
    1. Put your source code under the _src/main/swift_ directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    You’ll discover that Gradle has a rich API for working with dependencies — one that takes time to master, but is straightforward to use for common scenarios.
    
    [[sec:cpp_compile_link]]
    == Compiling and linking your code
    Compiling both your code can be trivially easy if you follow the conventions:
    
    1. Put your source code under the _src/main/cpp_ directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    It might be necessary to change how we resolve the dependencies of `app` depending upon the task we're performing (compiling against the API of `lib`, executing the application, compiling tests, etc.).
    To address this problem, you'll often find companion configurations, which are meant to unambiguously declare the usage:
    
    .Configurations representing concrete dependency graphs
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    _Default value_: `${name}CompileClasspath` configuration
    +
    The classpath to use when compiling the source files of this source set.
    
    `annotationProcessorPath` — link:{javadocPath}/org/gradle/api/file/FileCollection.html[FileCollection]::
    _Default value_: `${name}AnnotationProcessor` configuration
    +
    The processor path to use when compiling the source files of this source set.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    You'll discover that Gradle has a rich API for working with dependencies — one that takes time to master, but is straightforward to use for common scenarios.
    
    
    [[sec:compile]]
    == Compiling your code
    
    Compiling both your production and test code can be trivially easy if you follow the conventions:
    
     1. Put your production source code under the _src/main/java_ directory
     2. Put your test source code under _src/test/java_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

    project\u001B[m\u001B[14D\u001B[1B\u001B[2A\u001B[1m<\u001B[0;32;1;0;39;1m-------------> 0% CONFIGURING [1s]\u001B[m\u001B[35D\u001B[1B\u001B[1m> root project > Compiling /Users/ghale/repos/gradle/build/tmp/teŝt files/RichConsoleBasicGroupedTaskLoggingFunctionalTest/long_running_task_o...ter_delay/w661/build.gradle into local compilation cache > Compiling build file '/Users/ghale/repos/gradle/build/tmp/test files/RichConsoleBasicGroupedTaskLoggingFunctionalTest/long_running_task_o...ter_delay/w661/build.gradle'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

         * for your Gradle projects which allows you to have full control over language levels in Gradle projects, and means that Gradle and IDEA will use the same
         * settings when compiling.
         * <p>
         * When not explicitly set, this is calculated as the maximum language level for the Idea modules of this Idea project.
         */
        public IdeaLanguageLevel getLanguageLevel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    	}
    	h := sha1.New()
    	buildID := a.buildID
    	if a.Mode == "link" {
    		// For linking, use the main package's build ID instead of
    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    		// When compiling, we use actionID/actionID (instead of
    		// actionID/contentID) as a temporary build ID to compute
    		// the hash. Do the same here. (See buildid.go:useCache)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. .teamcity/mvnw

                if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
                    if [ "$MVNW_VERBOSE" = true ]; then
                      echo " - Compiling MavenWrapperDownloader.java ..."
                    fi
                    # Compiling the Java class
                    ("$JAVA_HOME/bin/javac" "$javaClass")
                fi
                if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    // limitations under the License.
    
    [[organizing_tasks]]
    = Organizing Tasks
    
    There are two types of tasks, actionable and lifecycle tasks.
    
    Actionable tasks in Gradle are tasks that perform actual work, such as compiling code.
    Lifecycle tasks are tasks that do not do work themselves.
    These tasks have no actions, instead, they bundle actionable tasks and serve as _targets_ for the build.
    
    image::writing-tasks-6.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top