Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 545 for Here (0.04 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildCompletionNotifyingBuildActionRunner.java

                // whereas console failure logging based on the _thrown exception_ happens up outside session scope. It would be better to refactor so that a result can be returned from here
                notifyEnterprisePluginManager(Result.failed(t));
                throw UncheckedException.throwAsUncheckedException(t);
            }
            notifyEnterprisePluginManager(result);
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleVersionSelector.java

     * If you need to change this interface, you're probably doing it wrong:
     * it is superseded by {@link org.gradle.api.artifacts.component.ModuleComponentSelector}, so check this first, and only
     * add methods here if it's for bridging.
     */
    public interface ModuleVersionSelector {
    
        /**
         * The group of the module.
         *
         * @return module group
         */
        String getGroup();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Exceptions thrown when variant selection fails.
     *
     * The hierarchy of exceptions here should be kept small, and in sync with the 2
     * main branches of the {@link org.gradle.internal.component.resolution.failure.type.ResolutionFailure ResolutionFailure}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/SelfResolvingDependencyInternal.java

     */
    
    package org.gradle.api.internal.artifacts.dependencies;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    import javax.annotation.Nullable;
    
    /**
     * Used by Kotlin here:
     * <a href="https://github.com/JetBrains/kotlin/blob/e9b4b8919dc1725026ce55a00ca8680af154ebd8/libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/targets/js/npm/NpmDependency.kt#L24">Link</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginGoodBehaviourTest.groovy

    import org.gradle.integtests.fixtures.WellBehavedPluginTest
    
    
    class JacocoPluginGoodBehaviourTest extends WellBehavedPluginTest {
        // The jacoco plugin does not add tasks to an empty project.
        // We apply the java plugin too here in this test to check that
        // the jacoco plugin behaves well when used together
        // with the java plugin (a typical scenario).
    
        def setup(){
            buildFile << """
                apply plugin:'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Console.java

    package org.gradle.internal.logging.console;
    
    public interface Console {
        TextArea getBuildOutputArea();
    
        BuildProgressArea getBuildProgressArea();
    
        // TODO(ew): Consider whether this belongs in BuildProgressArea or here
        StyledLabel getStatusBar();
    
        /**
         * Flushes any pending updates. Updates may or may not be buffered, and this method should be called to finish rendering and pending updates, such as updating the status bar.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/DaemonExpirationStatus.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.server.expiry;
    
    /**
     * Expiration status for daemon expiration check results.  Note that order here is important, higher ordinal statuses take precedent over lower ordinal statuses when aggregating results in {@link
     * AllDaemonExpirationStrategy}.
     */
    public enum DaemonExpirationStatus {
        DO_NOT_EXPIRE,
        QUIET_EXPIRE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

        }
    }
    // end::maven-like-repo[]
    
    // tag::maven-like-repo-with-jar-repo[]
    repositories {
        maven {
            // Look for POMs and artifacts, such as JARs, here
            url = uri("http://repo2.mycompany.com/maven2")
            // Look for artifacts here if not found at the above location
            artifactUrls("http://repo.mycompany.com/jars")
            artifactUrls("http://repo.mycompany.com/jars2")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpFacet.java

     *         beforeMerged { wtpFacet -&gt;
     *           //tinker with {@link WtpFacet} here
     *         }
     *
     *         //closure executed after wtp facet file content is loaded from existing file
     *         //and after gradle build information is merged
     *         whenMerged { wtpFacet -&gt;
     *           //you can tinker with the {@link WtpFacet} here
     *         }
     *       }
     *     }
     *   }
     * }
     *
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

     */
    
    package org.gradle.nativeplatform.toolchain.internal;
    
    import org.gradle.util.internal.GUtil;
    
    // Should use stronger modelling for this and make the set of tools open, rather than hard-coding here
    public enum ToolType {
        CPP_COMPILER("C++ compiler"),
        C_COMPILER("C compiler"),
        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top