Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 206 for light (0.26 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

         * If a variant represents the Java API variant, it is also not included, because the Java Runtime variant already includes everything
         * (including both also works but would lead to some duplication, that might break backwards compatibility in certain cases).
         */
        private static boolean defaultShouldExtend(SoftwareComponentVariant variant) {
            if (!(variant instanceof IvyPublishingAwareVariant)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (1)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    Note that a relocation POM is not suitable for all situations; when an artifact has been split into two or more separate artifacts then a relocation POM might not be helpful.
    
    [[publishing_maven:retroactive_relocation]]
    === Retroactively publishing relocation information
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

            }
            return result;
        }
    
        @Nullable
        private TestIdentifier findTestClassIdentifier(TestIdentifier testIdentifier) {
            // For tests in default method of interface,
            // we might not be able to get the implementation class directly.
            // In this case, we need to retrieve test plan to get the real implementation class.
            TestIdentifier current = testIdentifier;
            while (current != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    Groovy:       2.5.11
    Ant:          Apache Ant(TM) version 1.10.7 compiled on September 1 2019
    JVM:          14 (AdoptOpenJDK 14+36)
    OS:           Mac OS X 10.15.2 x86_64
    ----
    
    If not, here are some things you might see instead.
    
    === Command not found: gradle
    
    If you get "command not found: gradle", you must ensure that Gradle is correctly added to your `PATH`.
    
    === JAVA_HOME is set to an invalid directory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            publishedMavenModules 'c'
            declaredDependencies 'a', 'b', 'c'
            declaredReplacements 'a->b', 'a->c'
            expect:
            resolvedModules 'b', 'c'
    
            //assert right replacement wins
            outputContains("org:a:1 -> org:c:1")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/1472")
        def "handles '+' suffix in module name"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/ConsumerOperationParameters.java

            this.progressListeners = progressListeners;
            this.systemProperties = systemProperties;
            this.streamedValueListener = streamedValueListener;
    
            // create the listener adapters right when the ConsumerOperationParameters are instantiated but no earlier,
            // this ensures that when multiple requests are issued that are built from the same builder, such requests do not share any state kept in the listener adapters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         *     <dt>int
         *     <dd>Optimize operations on primitive types (e.g. integers). Enabled by default.
         *     <dt>all
         *     <dd>Enable or disable all optimizations. Note that some optimizations might be mutually exclusive.
         * </dl>
         */
        @Nullable @Optional @Input
        public Map<String, Boolean> getOptimizationOptions() {
            return optimizationOptions;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    They are deleted if they haven't been used for 7 days.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                    Tree tree
    
                    public static class Tree {
                        @Optional @Nested
                        Tree left
    
                        @Optional @Nested
                        Tree right
    
                        String nonAnnotated
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

            then:
            groupedOutput.task(':log').output == 'First line of text\n\n\n\nLast line of text'
        }
    
        def "handles erase directly before progress bar right before end of build"() {
            given:
            def consoleOutput = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top