Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for Option (0.21 sec)

  1. platforms/ide/ide/build.gradle.kts

    
        runtimeOnly(project(":language-jvm"))
        runtimeOnly(project(":testing-base"))
        runtimeOnly(project(":testing-jvm"))
    
        testFixturesApi(project(":base-services")) {
            because("test fixtures export the Action class")
        }
        testFixturesApi(project(":logging")) {
            because("test fixtures export the ConsoleOutput class")
        }
        testFixturesApi(project(":tooling-api")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'deprecation:custom-task-action' : 'Custom Task action has been deprecated.',
            'deprecation:missing-java-toolchain-plugin' : 'Using task ValidatePlugins without applying the Java Toolchain plugin.',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

    import org.gradle.tooling.provider.model.internal.ToolingModelParameterCarrier
    import org.gradle.util.Path
    
    
    /**
     * Responsible for loading and storing intermediate models used during tooling API build action execution.
     */
    internal
    class IntermediateModelController(
        private val host: DefaultConfigurationCache.Host,
        private val cacheIO: ConfigurationCacheIO,
        store: ConfigurationCacheStateStore,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            buildFile << """
                plugins.apply(my.MyPlugin)
                println("configuring root")
            """
        }
    
        def "parameterized models are reused in the same build action"() {
            when:
            executer.withArguments(ENABLE_CLI)
            def models = runBuildAction(new FetchParameterizedCustomModelForEachProject(["fetch1", "fetch2", "fetch1", "fetch2"]))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/BuildTreeModelSideEffectStore.kt

    import org.gradle.internal.serialize.graph.runWriteOperation
    import java.io.Closeable
    import java.util.concurrent.CopyOnWriteArrayList
    
    
    /**
     * Persists side effects observed during build action execution
     * and restores them on a subsequent load from the cache.
     *
     * @see BuildTreeModelSideEffect
     */
    internal
    class BuildTreeModelSideEffectStore(
        private val host: DefaultConfigurationCache.Host,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

         * configuration fingerprints and validation problems and then runs the given function.
         */
        fun maybePrepareModel(action: () -> Unit)
    
        /**
         * Loads the cached model, if available, or else runs the given function to create it and then writes the result to the cache.
         */
        fun <T : Any> loadOrCreateModel(creator: () -> T): T
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/IsolatedActionCodecsFactory.kt

                    bind(BeanCodec)
                }.build()
            )
    
        /**
         * Value sources and build services are currently unsupported but could eventually
         * be captured as part of the serialized action [environment][org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph.environment]
         **/
        private
        fun BindingsBuilder.unsupportedProviderTypes() {
            bind(unsupported<ValueSourceProvider<*, *>>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

    import java.util.concurrent.ConcurrentHashMap
    import java.util.concurrent.atomic.AtomicReference
    import java.util.function.Consumer
    
    
    /**
     * Responsible for loading and storing intermediate models used during tooling API build action execution.
     */
    internal
    abstract class ProjectStateStore<K, V>(
        private val store: ConfigurationCacheStateStore,
        private val stateType: StateType,
        private val valueDescription: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

    import org.gradle.launcher.daemon.server.scaninfo.DefaultDaemonScanInfo;
    import org.gradle.launcher.daemon.server.stats.DaemonRunningStats;
    import org.gradle.launcher.exec.BuildExecutor;
    import org.gradle.tooling.internal.provider.action.BuildActionSerializer;
    
    import java.io.File;
    import java.util.UUID;
    
    import static org.gradle.internal.FileUtils.canonicalize;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

        1.0,
        Math.PI,
        (double) Integer.MAX_VALUE,
        (double) Long.MAX_VALUE,
        Double.MAX_VALUE,
        Double.POSITIVE_INFINITY,
        Double.NaN,
        Float.MAX_VALUE,
      };
    
      /** The notion of equality used by AtomicDouble */
      static boolean bitEquals(double x, double y) {
        return Double.doubleToRawLongBits(x) == Double.doubleToRawLongBits(y);
      }
    
      static void assertBitEquals(double x, double y) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top