Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 545 for Here (0.09 sec)

  1. platforms/documentation/docs/src/samples/java/modules-with-transform/kotlin/buildSrc/build.gradle.kts

    }
    
    dependencies {
        implementation("org.ow2.asm:asm:8.0.1")
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            // here we register our plugin with an ID
            register("extra-java-module-info") {
                id = "extra-java-module-info"
                implementationClass = "org.gradle.sample.transform.javamodules.ExtraModuleInfoPlugin"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 460 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/internal/cache/CacheDirUtil.java

                                "#\thttps://bford.info/cachedir/"
                        ).getBytes("UTF-8")
                    );
                } finally {
                    // stream close is done here so if it throws, we can re-use the outer catch block
                    stream.close();
                }
            } catch (IOException e) {
                LOGGER.debug("Failed to write cache directory tag file: " + cacheDirTag, e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/stopExecutionException/kotlin/build.gradle.kts

    val compile by tasks.registering {
        doLast {
            println("We are doing the compile.")
        }
    }
    
    compile {
        doFirst {
            // Here you would put arbitrary conditions in real life.
            if (true) {
                throw StopExecutionException()
            }
        }
    }
    tasks.register("myTask") {
        dependsOn(compile)
        doLast {
            println("I am not affected")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/swiftLibrary/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        `swift-library`
    }
    // end::apply-plugin[]
    
    // tag::dependency-management[]
    library {
        dependencies {
            // FIXME: Put real deps here.
            api("io.qt:core:5.1")
            implementation("io.qt:network:5.1")
        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = listOf(machines.linux.x86_64, machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 575 bytes
    - Viewed (0)
  5. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildTreeLifecycleBuildActionExecutor.java

                    // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
                    // Cleanup has failed, combine the cleanup failure with other failures that may be packed in the result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/OutputDirSelectorUtil.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.results;
    
    /**
     * Moved here from OutputDirSelector to work around
     * <a href="https://issues.apache.org/jira/browse/GROOVY-10591">GROOVY-10591</a>
     */
    public class OutputDirSelectorUtil {
    
        public static String fileSafeNameFor(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/swift/swiftLibrary/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'swift-library'
    }
    // end::apply-plugin[]
    
    // tag::dependency-management[]
    library {
        dependencies {
            // FIXME: Write better deps here.
            api "io.qt:core:5.1"
            implementation "io.qt:network:5.1"
        }
    }
    // end::dependency-management[]
    
    // tag::configure-target-machines[]
    library {
        targetMachines = [
            machines.linux.x86_64,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 590 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeLanguage.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal;
    
    // This should be replaced by some stronger modelling and made open rather than hardcoding a set of source languages here
    public enum NativeLanguage {
        // For legacy software model behaviour, which is to assume that any kind of runtime can be built when any compiler is available
        ANY() {
            @Override
            public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

        </a>
    </div>
    ++++
    
    == For Software Developers
    
    For software developers that need to build, test, and publish their app, or add dependencies to their build, get started here:
    
    === 1. Core Concepts
    
    [sidebar]
    _Description_: *Learn how to invoke tasks and add dependencies.* +
    _Training level_: **Beginner** +
    _Reading time_: **25 minutes** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top