Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 187 for Lyding (0.52 sec)

  1. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/DefaultScriptTest.groovy

            configuration.scriptBaseClass = DefaultScript.class.name
            configuration
        }
    
        private String getTestScriptText() {
            '''
    // We leave out the path to check import adding
    getName() // call a project method
    assert hasProperty('custom')
    repositories { }
    def scriptMethod() { 'scriptMethod' }
    String internalProp = 'a'
    assert internalProp == 'a'
    ext.newProperty = 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 19 14:14:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    - however if you are a library, adding <<dependency_downgrade_and_exclude.adoc#sec:excluding-transitive-deps,exclusions>> may prevent consumers from working properly, because they would exercise...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    In the first instance, all of the required dependencies are present as builds in the `modules` directory. In a real-world example, these could well be clones of different Git repositories.
    
    In order to avoid hard-coding the included builds to load, the `settings.gradle` file in `multirepo-app` loads each of these builds dynamically:
    
    ====
    include::sample[dir="kotlin",files="settings.gradle.kts[tags=include_builds]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdExtension.java

         * </pre>
         */
        public void setRuleSets(List<String> ruleSets) {
            this.ruleSets.set(ruleSets);
        }
    
        /**
         * Convenience method for adding rule sets.
         *
         * <pre>
         *     ruleSets "category/java/errorprone.xml", "category/java/bestpractices.xml"
         * </pre>
         *
         * @param ruleSets the rule sets to be added
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingJavaCompiler.java

        }
    
        private void resolveAndFilterSourceFiles(JavaCompileSpec spec) {
            // this mimics the behavior of the Ant javac task (and therefore AntJavaCompiler),
            // which silently excludes files not ending in .java
            Iterable<File> javaOnly = Iterables.filter(spec.getSourceFiles(), NormalizingJavaCompiler::hasJavaExtension);
            spec.setSourceFiles(ImmutableSet.copyOf(javaOnly));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

         * See [org.gradle.initialization.DefaultExceptionAnalyser.transform], note the comments.
         * The Kotlin DSL provider handles this in isolation,
         * thus hiding the location of exceptions thrown by groovy scripts applied from kotlin scripts.
         *
         * This test exercises the current behavior.
         */
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    }
    ----
    <1> Add plugins.
    <2> Use convention properties.
    =====
    ====
    
    === 1. Add plugins
    Plugins extend Gradle's functionality and can contribute tasks to a project.
    
    Adding a plugin to a build is called _applying_ a plugin and makes additional functionality available.
    
    [source,kotlin]
    ----
    plugins {
        id("application")
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributesSchema.java

        /**
         * Adds attributes to the precedence order. Attributes listed first have higher precedence.
         * <p>
         * The attributes will be added to any existing precedence order. If an attribute has already been added, adding it again
         * will fail.
         *
         * @param attributes the attributes in order
         *
         * @since 7.5
         * @see #setAttributeDisambiguationPrecedence(List)
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/sources/process/ProviderCompatibleBaseExecSpecTestBase.groovy

            when:
            specUnderTest.setEnvironment(OTHERVAR: "otherval")
    
            then:
            specUnderTest.getEnvironment() == [OTHERVAR: "otherval"]
        }
    
        def "adding variables after setting environment is working"() {
            given:
            specUnderTest.setEnvironment(SOMEVAR: "someval")
    
            when:
            specUnderTest.environment(OTHERVAR: "otherval")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/AsciiDependencyReportRenderer.java

                dependencyGraphRenderer.complete();
            }
    
            getTextOutput().println();
            getTextOutput().text("A web-based, searchable dependency report is available by adding the ");
            getTextOutput().withStyle(UserInput).format("--%s", StartParameterBuildOptions.BuildScanOption.LONG_OPTION);
            getTextOutput().println(" option.");
    
            super.complete();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 07:41:09 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top