Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 187 for Lyding (0.36 sec)

  1. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/BuildControllers.java

         * Blocks until all scheduled tasks have completed.
         */
        ExecutionResult<Void> execute();
    
        /**
         * Locates the controller for a given build, adding it if not present.
         */
        BuildController getBuildController(BuildState build);
    
        @Override
        void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 16 02:23:59 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/tooling/provider/model/ToolingModelBuilderRegistry.java

     */
    
    package org.gradle.tooling.provider.model;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A registry of tooling model builders. Adding a builder to this registry makes a model (or models) available via the tooling API.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/ClosureBackedAction.java

    import org.gradle.api.Action;
    import org.gradle.api.InvalidActionClosureException;
    import org.gradle.util.Configurable;
    
    /**
     * NOTE: You should use {@link ConfigureUtil} instead of this class when adding a closure backed method to the DSL, whether statically or dynamically added. {@link ConfigureUtil} is much more efficient and takes care of applying consistent DSL behaviour when closures are nested.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedArtifactSet.java

     */
    public interface ResolvedArtifactSet extends TaskDependencyContainer {
        /**
         * Visits the contents of the set, adding any remaining work to finalise the set of artifacts to the given queue.
         */
        void visit(Visitor visitor);
    
        void visitTransformSources(TransformSourceVisitor visitor);
    
        interface TransformSourceVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

            val valueContainer = currentValues.computeIfAbsent(key) { k ->
                createContainer(k, creator)
            }
    
            // Calculate the value after adding the entry to the map, so that the value container can take care of thread synchronization
            valueContainer.finalizeIfNotAlready()
            return valueContainer.get()
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-consistentResolution/tests/fixed-dependency-insight.out

    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/VariantIdentityUniquenessVerifier.java

                boolean withTaskAdvice,
                List<ConfigurationInternal> collisions
            ) {
                DocumentedFailure.Builder builder = DocumentedFailure.builder();
                String advice = "Consider adding an additional attribute to one of the configurations to disambiguate them.";
                if (withTaskAdvice) {
                    advice += "  Run the 'outgoingVariants' task for more details.";
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginTarget.java

    /**
     * Represents the target that a plugin should be applied to, such as a Gradle, Settings or Project object.
     * This is used to apply a plugin to a target in a way that is appropriate for that target, such as adding
     * additional functionality specific to the target or disallowing certain types of plugins to be applied.
     */
    public interface PluginTarget {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExcludeRuleContainer.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import java.util.Map;
    import java.util.Set;
    
    /**
     * <p>A container for adding exclude rules for dependencies.</p>
     */
    public interface ExcludeRuleContainer {
        /**
         * Returns all the exclude rules added to this container. If no exclude rules has been added an empty list is
         * returned.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperSSLTest.groovy

        }
    
        /**
         * Note that this is a smoke test
         * An actual test would require to make changes to the windows trust store,
         * E.g. by adding a certificate from internal-integ-testing/src/main/resources/test-key-store/trustStore
         * and changing performExternalRequest() to performRequest()
         **/
        @Requires(UnitTestPreconditions.Windows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 05:29:07 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top