Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 646 for Sall (0.03 sec)

  1. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/OperationFiringBuildTreeFinishExecutor.java

        }
    
        @Nullable
        @Override
        public RuntimeException finishBuildTree(List<Throwable> failures) {
            return buildOperationRunner.call(new CallableBuildOperation<RuntimeException>() {
                @Override
                public RuntimeException call(BuildOperationContext context) {
                    try {
                        return delegate.finishBuildTree(failures);
                    } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. .github/workflows/contributor-pr.yml

      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
      build:
        name: "Compile All"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - id: setup-matrix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixture.groovy

     * with the listener subscribing as the root project is loaded.
     *
     * This exercises the store-and-replay behaviour of the notification dispatcher
     * that allows a listener to observe all of the notifications from the very start of the build.
     *
     * This fixture reflectively exercises the details/results objects of the notifications,
     * ensuring that they are “usable”.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    // Copyright 2008, Google Inc.
    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

         */
        protected
        fun setupPluginRequirements() {
            projectDir.resolve("version.txt").writeText("9999999.0") // All released versions should be lower than this
            projectDir.resolve("released-versions.json").writeText(
                """
                    {
                      "latestReleaseSnapshot": {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftApplicationProjectIntegrationTest.groovy

            def resultApp = xcodebuild
                    .withWorkspace(rootXcodeWorkspace)
                    .withScheme('App')
                    .fails()
    
            then:
            resultApp.assertHasCause("Could not resolve all dependencies for configuration ':app:nativeRuntimeDebug'.")
            resultApp.assertHasCause("Could not resolve project :greeter.")
    
    
            when:
            def resultLib = xcodebuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousGraphVariantsFailureDescriber.java

                for (String configuration : ambiguousVariants.keySet()) {
                    formatter.node(configuration);
                }
                formatter.endChildren();
                formatter.node("All of them match the consumer attributes");
            }
            return ambiguousVariants;
        }
    
        private void formatUnselectable(
            ResolutionCandidateAssessor.AssessedCandidate assessedCandidate,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         *
         * @return null On end of connection or timeout.
         */
        Object receive(long timeoutValue, TimeUnit timeoutUnits);
    
        /**
         * Blocks until all handlers have been notified and any queued messages have been dispatched to the client.
         */
        @Override
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginGradlePluginCrossVersionSmokeTest.kt

                    "The Provider.forUseAtConfigurationTime method has been deprecated. " +
                        "This is scheduled to be removed in Gradle 9.0. " +
                        "Simply remove the call. " +
                        "Consult the upgrading guide for further information: " +
                        "https://docs.gradle.org/current/userguide/upgrading_version_7.html#for_use_at_configuration_time_deprecation")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

            and:
            useCustomRepository(PathType.ABSOLUTE)
    
            when:
            succeeds("pluginTask")
    
            then:
            output.contains("from plugin")
        }
    
        def "Does not fall through to Plugin Portal if custom repo is defined"() {
            given:
            publishTestPlugin(MAVEN)
            buildScript """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top