Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

            m.pom.expectGetBroken()
    
            when:
            maybeExpectDeprecation(expression)
            fails 'show'
    
            then:
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
            failure.assertHasCause("Could not find any matches for org:test:1.0+ as no versions of org:test are available.")
            failure.assertHasCause("Could not resolve org:test2:2.0.")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/AbstractCodecTest.groovy

                assert decoder.readString() == value.toString()
            }
    
            where:
            value                            | _
            ""                               | _
            "all ascii"                      | _
            "\u0000\u0101\u3100"             | _
            "${1 + 2}"                       | _
            new StringBuilder("some string") | _
            CharBuffer.wrap("a string")      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    // Copyright 2006, 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
    - 14.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

                        causes.add(it)
                    }
                }
                return true
            }
        }
    }
    
    
    internal
    class Summary(
        /**
         * Total of all problems, regardless of severity.
         */
        val problemCount: Int,
    
        /**
         * Total number of problems that are failures.
         */
        val failureCount: Int,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/CheckstylePlugin.java

            ProviderFactory providers = project.getProviders();
            Provider<RegularFile> reportsDir = layout.file(providers.provider(() -> extension.getReportsDir()));
            task.getReports().all(action(report -> {
                report.getRequired().convention(!report.getName().equals("sarif"));
                report.getOutputLocation().convention(
                    layout.getProjectDirectory().file(providers.provider(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

                def tasksFile = file("tasks.txt")
                tasksFile.text = ''
                gradle.taskGraph.whenReady {
                    allprojects {
                        tasks.matching { it.group == "mygroup" }.all {
                            tasksFile << path + '\\n'
                        }
                    }
                }
            """
        }
    
        List<String> getCreatedTasks() {
            file("tasks.txt").readLines().sort()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    You also want to ensure that all consumers of the property see the same value when they query the value.
    
    [[lazy_configuration_faqs]]
    == Using the Provider API
    
    Guidelines to be successful with the Provider API:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    include::{snippetsPath}/ant/useAntTask/tests/useAntTask.out[]
    ----
    
    TIP: You can mix Groovy/Kotlin code and the Ant task markup. This can be extremely powerful.
    
    You pass nested text to an Ant task as a parameter of the task method call.
    In this example, we pass the message for the `echo` task as nested text:
    
    ====
    include::sample[dir="snippets/ant/taskWithNestedText/kotlin",files="build.gradle.kts"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

         * String literals include surrounding quotes and have special symbols escaped.
         * The returned string can be used to generate call to a method that accepts varargs.
         *
         * @param cmd the command line elements to be converted
         * @return a comma-separated list of string literals
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top