Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,431 for tuning (0.51 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerSwiftBuildExportIntegrationTest.groovy

    class SwiftPackageManagerSwiftBuildExportIntegrationTest extends AbstractSwiftPackageManagerExportIntegrationTest {
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "produces manifest for single project Swift library that defines only the production targets"() {
            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/install_dep_version.txt

    # Regression test for Issue #54908. When running a go install module@version
    # with --mod=readonly moduleInfo was not setting the GoVersion for the module
    # because the checksumOk function was failing because modfetch.GoSumFile
    # was not set when running outside of a module.
    
    env GOTOOLCHAIN=local
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:17 UTC 2023
    - 364 bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

          log.put("failing task running")
          throw RuntimeException("boom!")
        }
    
        queue.schedule("task", TimeUnit.MILLISECONDS.toNanos(200)) {
          log.put("normal task running")
          return@schedule -1L
        }
    
        queue.idleLatch().await(500, TimeUnit.MILLISECONDS)
    
        assertThat(log.take()).isEqualTo("failing task running")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/CopySpecExtensions.kt

    import java.io.FilterReader
    
    
    /**
     * Adds a content filter to be used during the copy.
     *
     * @see [CopySpec.filter]
     */
    inline fun <reified T : FilterReader> CopySpec.filter(vararg properties: Pair<String, Any?>) =
        filter(mapOf(*properties), T::class.java)
    
    
    /**
     * Adds a content filter to be used during the copy.
     *
     * @see [CopySpec.filter]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

     * Note that this implementation currently retains strong references to keys and values during the whole lifetime of a build session.
     *
     * Uses a simple algorithm to collect unused values, by retaining strong references to all keys and values used during the current build session, and the previous build session.
     * All other values are referenced only by weak or soft references, allowing them to be collected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    Any direct modification or reading of another project's object creates coupling between the projects.
    Coupling during configuration can result in flawed build outcomes when using 'configuration on demand', while coupling during execution can affect parallel execution.
    
    One common source of coupling is configuration injection, such as using `allprojects{}` or `subprojects{}` in build scripts.
    
    To avoid coupling issues, it's recommended to:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerExportIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "can configure the location of the generated manifest file"() {
            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                    id 'swift-library'
                }
                tasks.generateSwiftPmManifest.manifestFile = file('generated/thing.swift')
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/context.go

    )
    
    // This file contains a definition of the type-checking context; an opaque type
    // that may be supplied by users during instantiation.
    //
    // Contexts serve two purposes:
    //  - reduce the duplication of identical instances
    //  - short-circuit instantiation cycles
    //
    // For the latter purpose, we must always have a context during instantiation,
    // whether or not it is supplied by the user. For both purposes, it must be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. pkg/collateral/metrics/otel_test.go

    	)
    
    	// InstanceErrs is a measure of the number of errors for processing instance config.
    	InstanceErrs = monitoring.NewGauge(
    		"mixer/config/instance_config_errors_total",
    		"The number of errors encountered during processing of the instance configuration.",
    	)
    
    	// RulesTotal is a measure of the number of known rules.
    	RulesTotal = monitoring.NewGauge(
    		"mixer/config/rule_configs_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/AbstractHttpsRepoResolveIntegrationTest.groovy

            // depending on JVM version, the error might occur either during SSL context initialization or during request
            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_18)) {
                failure.assertHasCause("Got SSL handshake exception during request. It might be caused by SSL misconfiguration")
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top