Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 194 for Percent (0.16 sec)

  1. platforms/documentation/docs/src/samples/templates/problems-api-usage/reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java

                    .documentedAt("https://github.com/gradle/gradle/README.md")
                    .severity(Severity.WARNING)
                    .solution("Please use a more recent plugin version")
            );
            // end::problems-api-report[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/configuration/HelpTest.groovy

    class HelpTest extends AbstractProjectBuilderSpec {
        Help helpTask
    
        def setup() {
            helpTask = project.tasks.create("somehelp", Help.class)
        }
    
        def "gives decent error message for unknown tasks"() {
            when:
            helpTask.setTaskPath("notexisting")
            helpTask.displayHelp()
            then:
            def e = thrown(TaskSelectionException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 15 07:22:20 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/protocol/InterHubMessage.java

            /**
             * Message should be delivered to all current handlers. Discarded if no handler is available.
             */
            AllHandlers,
            /**
             * Message should be delivered to all handlers. Most recent stateful message is queued and also delivered to each new handler.
             */
            Stateful
        }
    
        public abstract Delivery getDelivery();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue27518a.go

    	// At this point x's dead stack slot points to dead memory.
    
    	// Trigger a sigpanic. Since this is an implicit panic, we
    	// don't have an explicit liveness map here.
    	// Traceback used to use the liveness map of the most recent defer,
    	// but in that liveness map, x will be live again even though
    	// it points to dead memory. The fix is to use the liveness
    	// map of a deferreturn call instead.
    	*nilp = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:23 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

            where:
            vendor << ["ADOPTIUM", "ADOPTOPENJDK", "AMAZON", "APPLE", "AZUL", "BELLSOFT", "GRAAL_VM", "HEWLETT_PACKARD", "IBM", "JETBRAINS", "MICROSOFT", "ORACLE", "SAP", "TENCENT", "UNKNOWN"]
        }
    
        @NotYetImplemented
        def "When execute updateDaemonJvm for valid implementation option Then build properties are populated with expected values"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/maven/MavenProjectsCreatorSpec.groovy

            then:
            mavenProjects.size() == 2
            mavenProjects[0].name == 'webinar-parent'
            mavenProjects[1].name == 'webinar-api'
        }
    
        def "fails with decent exception if pom is incorrect"() {
            given:
            def pom = temp.file("pom.xml")
            pom.text = """<project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>util</artifactId>
      <version>2.5</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. .github/workflows/stale-pr.yml

              exempt-pr-labels: "from:contributor"
              stale-pr-label: stale
              stale-pr-message: >
                This pull request has been automatically marked as stale because it has not had recent activity.
                It will be closed in 14 days if no further activity occurs.
                If you don't want the stale bot to close it, then set a milestone for it.
              days-before-pr-close: 14
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/BinaryTypeModelRuleExtractorTest.groovy

                assert role == ModelActionRole.Mutate
                assert action.subject == ModelReference.of(ComponentSpecFactory)
            }
            0 * _
        }
    
        def "decent error message for rule declaration problem - #descr"() {
            def ruleMethod = ruleDefinitionForMethod(methodName)
            def ruleDescription = getStringDescription(ruleMethod.method)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

                "[ADOPTIUM, ADOPTOPENJDK, AMAZON, APPLE, AZUL, BELLSOFT, GRAAL_VM, HEWLETT_PACKARD, IBM, JETBRAINS, MICROSOFT, ORACLE, SAP, TENCENT, UNKNOWN]")
        }
    
        @NotYetImplemented
        def "Given unexpected toolchain implementation When execute any task Then fails with expected exception message"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. tools/docker

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Setup env vars
    source ./common/scripts/setup_env.sh
    
    set -eu
    
    # Speed up builds when using recent CPUs
    export GGCR_EXPERIMENT_SHA256_SIMD=1
    
    if [[ -f ${LOCAL_OUT}/docker-builder ]]; then
      CURRENT_BUILD="$(./common/scripts/report_build_info.sh | grep buildGitRevision | cut -d= -f2)"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 07 22:50:06 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top