Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 479 for Hashing (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            cleanup:
            System.clearProperty(systemProp)
    
            where:
            spec << SystemPropertiesCompositeBuildFixture.specsWithSystemPropertyAccess()
        }
    
        def "passing cli override doesn't invalidates cache entry if property wasn't read at configuration time"() {
            given:
            String systemProp = "fromPropertiesFile"
            def configurationCache = newConfigurationCacheFixture()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/runtime/cgocall.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/goexperiment"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // Addresses collected in a cgo backtrace when crashing.
    // Length must match arg.Max in x_cgo_callers in runtime/cgo/gcc_traceback.c.
    type cgoCallers [32]uintptr
    
    // argset matches runtime/cgo/linux_syscall.c:argset_t
    type argset struct {
    	args   unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    +
    [source,text]
    ----
    $ ./gradlew build -Dorg.gradle.caching.debug=false
    ----
    2. *Gradle Properties File:* Place these settings into a `gradle.properties` file and commit it to your version control system.
    +
    .gradle.properties
    [source,properties]
    ----
    org.gradle.caching.debug=false
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. .github/workflows/build.yml

            id: avd-cache
            with:
              path: |
                ~/.android/avd/*
                ~/.android/adb*
              key: avd-${{ matrix.api-level }}
    
          - name: Create AVD and generate snapshot for caching
            if: steps.avd-cache.outputs.cache-hit != 'true'
            uses: reactivecircus/android-emulator-runner@v2
            with:
              api-level: ${{ matrix.api-level }}
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.http.internal
    
    import org.gradle.api.internal.tasks.execution.ExecuteTaskBuildOperationType
    import org.gradle.caching.http.HttpBuildCache
    import org.gradle.caching.internal.operations.BuildCacheRemoteStoreBuildOperationType
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. .teamcity/performance-test-durations.json

        "linux" : 804,
        "windows" : 935,
        "macOs" : 544
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.AndroidIncrementalExecutionPerformanceTest.abi change with configuration caching",
      "durations" : [ {
        "testProject" : "nowInAndroidBuild",
        "linux" : 286,
        "windows" : 427,
        "macOs" : 248
      }, {
        "testProject" : "santaTrackerAndroidBuild",
        "linux" : 649,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResolverTest.groovy

            newId(mid("", "name"), "1")      | "([organization]/)[module]-[revision]"
            newId(mid("group", "name"), "")  | "[organization]/[module]-([revision])"
        }
    
        def "correctly sets caching of component metadata rules depending on ivy repository transport"() {
            given:
            transport.isLocal() >> isLocal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         *
         * @param closure The closure to execute.
         * @see FlowProviders#getBuildWorkResult()
         * @deprecated This method is not supported when configuration caching is enabled.
         */
        @Deprecated
        void buildFinished(Closure closure);
    
        /**
         * Adds an action to be called when the build is completed.
         *
         * All selected tasks have been executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. .teamcity/performance-tests-ci.json

            "per_commit" : [ "linux", "windows", "macOs" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.android.AndroidIncrementalExecutionPerformanceTest.abi change with configuration caching",
        "groups" : [ {
          "testProject" : "nowInAndroidBuild",
          "coverage" : {
            "per_commit" : [ "linux", "windows", "macOs" ]
          }
        }, {
          "testProject" : "santaTrackerAndroidBuild",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

            buildFile << """
                plugins {
                    id 'java'
                    id 'maven-publish'
                }
    
                tasks.compileJava {
                    // Avoid resolving the classpath when caching the configuration
                    classpath = files()
                }
    
                dependencies {
                    implementation enforcedPlatform('org:platform:1.0')
                }
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top