Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 206 for light (0.05 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                        }
                        module("org:bom:1.0")
                    }
                }
            }
        }
    
        void 'dependency constraint on failed variant resolution needs to be in the right state'() {
            mavenRepo.module('org', 'bar', '1.0').publish()
            writeSpec {
                rootProject {
                    dependencies {
                        constraints {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

            }
        }
    
        private void prerenderSection(Section section) {
            int size = section.errors.size();
            contents.append("<a class=\"uk-accordion-title\" href=\"#\"><span uk-icon=\"chevron-right\"></span>").append(section.title)
                .append("&nbsp;<span class=\"uk-badge\">")
                .append(size)
                .append(size < 2 ? " error" : " errors")
                .append("</span></a>");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    This helps isolate the work from the main Gradle process, providing better reliability and performance.
    
    Here's a basic example of how you might use `WorkerExecutor` in a build script:
    
    ====
    include::sample[dir="snippets/providers/services/kotlin",files="build.gradle.kts[tags=worker-executor]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Dependency locking can be used in cases where reproducibility is not the main goal.
    As a build author, you may want to have different frequency of dependency version updates, based on their origin for example.
    In that case, it might be convenient to ignore some dependencies because you always want to use the latest version for those.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    include::sample[dir="samples/java/jvm-multi-project-with-toolchains/groovy/",files="application/build.gradle[tags=customExec]"]
    ====
    
    Depending on the task, a JRE might be enough while for other tasks (e.g. compilation), a JDK is required.
    By default, Gradle prefers installed JDKs over JREs if they can satisfy the requirements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

    ----
    
    Finally, run the `greeting` task using `./gradlew greeting` or:
    
    [source]
    ----
    $ ./gradlew :app:greeting
    
    > Task :app:greeting
    Hello from plugin 'com.tutorial.greeting'
    ----
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    }
    ----
    =====
    
    This build script lets Gradle know which dependencies and plugins the `app` subproject is using and where to find them.
    We will look at this in more detail in the following sections.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        /**
         * Whether the default listeners and reporters should be used. Since Gradle 1.4 it defaults to 'false' so that Gradle can own the reports generation and provide various improvements. This option
         * might be useful for advanced TestNG users who prefer the reports generated by the TestNG library. If you cannot live without some specific TestNG reporter please use {@link #listeners}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * root of the specified directories. The resolver ignores any group/organization information specified in the
         * dependency section of your build script. If you only use this kind of resolver you might specify your
         * dependencies like <code>":junit:4.4"</code> instead of <code>"junit:junit:4.4"</code>.
         *
         * The following parameter are accepted as keys for the map:
         *
         * <table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      virtual const string& GetTestCaseName() const = 0;
      // Test case id to verify identity.
      virtual TypeId GetTestCaseTypeId() const = 0;
      // UnitTest class invokes this method to register tests in this
      // test case right before running them in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
      // instance of a ParameterizedTestCaseInfoBase derived class.
      virtual void RegisterTests() = 0;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top