Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for Lyding (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    4. <<nameddomainobjectcontainer,`NamedDomainObjectContainer<T>`>>: A container for managing objects of type T, where each object has a unique name. This container provides methods for adding, removing, and querying objects by name.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

        int periodicCheckInterval = 5
        //normally, state transition timeout must be lower than the daemon timeout
        //so that the daemon does not timeout in the middle of the state verification
        //effectively hiding some bugs or making tests fail
        int stateTransitionTimeout = daemonIdleTimeout / 2
    
        final List<GradleHandle> builds = []
        final List<GradleHandle> foregroundDaemons = []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    https://blog.jetbrains.com/kotlin/2018/01/kotlin-1-2-20-is-out/[You can opt into it] (which is recommended) by adding the following to build scripts:
    
    ====
    include::sample[dir="snippets/buildCache/caching-android-projects/kotlin",files="build.gradle.kts[tags=cacheKapt]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    - **Windows**: C:\Users\[username]\.m2
    
    A publication destined for a Maven repository normally includes:
    
    - One or more artifacts
    - The Gradle Module Metadata
    - The Maven POM file
    
    Apply the plugin by adding `maven-publish` to the plugins block in `build.gradle(.kts)`:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    plugins {
        // Apply the application plugin to add support for building a CLI application in Java.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuterTest.groovy

            when:
            def allArgs = executer.getAllArgs()
    
            then:
            !allArgs.contains("--daemon")
            allArgs.contains("--no-daemon")
        }
    
        def "when --foreground argument is added, it skips adding --daemon/--no-daemon"() {
            when:
            executer.withArgument("--foreground")
            def allArgs = executer.getAllArgs()
    
            then:
            !allArgs.contains("--daemon")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    Since you cannot use the `-P` option in that scenario nor change the system-level configuration files, the correct strategy is to change the configuration of your continuous integration build job, adding an environment variable setting that matches an expected pattern.
    This won't be visible to normal users on the system.
    
    The following examples demonstrate how to use project properties.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/AsmClassGeneratorUtils.java

    import java.lang.reflect.WildcardType;
    
    import static org.objectweb.asm.Type.getType;
    
    public class AsmClassGeneratorUtils {
    
        /**
         * Generates the signature for the given constructor, optionally adding a `name` parameter before all other parameters.
         */
        public static String signature(Constructor<?> constructor, boolean addNameParameter) {
            StringBuilder builder = new StringBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ArtifactHandler.java

    import org.gradle.api.artifacts.PublishArtifact;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * This class is for defining artifacts to be published and adding them to configurations. Creating publish artifacts
     * does not mean to create an archive. What is created is a domain object which represents a file to be published
     * and information on how it should be published (e.g. the name).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      // possible after the object is created.
      explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
      ~linked_ptr() { depart(); }
    
      // Copy an existing linked_ptr<>, adding ourselves to the list of references.
      template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
      linked_ptr(linked_ptr const& ptr) {  // NOLINT
        assert(&ptr != this);
        copy(&ptr);
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

            mavenCentral()
        }
    }
    ----
    
    You can also include version catalogs in this section.
    
    === 5. Add subprojects to the build
    
    The settings file defines the structure of the project by adding all the subprojects using the link:{javadocPath}/org/gradle/api/initialization/Settings.html[`include`] statement:
    
    [source,kotlin]
    ----
    include("app")
    include("business-logic")
    include("data-model")
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top