Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for attacher (0.2 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/AdditionalData.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.NonNullApi;
    
    import java.util.Map;
    
    /**
     * Additional data attached to the problem.
     * <p>
     * There are no subtypes defined for this interface yet. Clients should expect some defined in future versions of Gradle.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/FileCollectionDependency.java

     * repository.
     */
    @SuppressWarnings("deprecation") // Because of SelfResolvingDependency
    public interface FileCollectionDependency extends SelfResolvingDependency {
        /**
         * Returns the files attached to this dependency.
         *
         * @since 3.3
         */
        FileCollection getFiles();
    
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/StatefulListener.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a listener interface to indicate that its events are stateful.
     *
     * <p>The listener infrastructure will ensure that a listener of this type will either receive all events, or no events.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a service interface to indicate in which scopes it is defined in.
     * Services are lifecycled with their scope, and stopped/closed when the scope is closed.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/base_plugin.adoc

    `build__Configuration__` — task rule::
    Assembles those artifacts attached to the named configuration. For example, `buildRuntimeElements` will execute any task that is required to create any artifact attached to the `runtimeElements` configuration.
    
    `clean__Task__` — task rule::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

         */
        boolean isToolingApiRetainsOriginalFailureOnCancel();
    
        /**
         * Returns true if this version has a useful cause attached to the exception thrown by the tooling API client on build cancel.
         */
        boolean isToolingApiHasCauseOnCancel();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

            InternalMavenSession session = ((DefaultProject) project).getSession();
            Collection<Artifact> attached = map(
                    getMavenProject(project).getAttachedArtifacts(),
                    a -> session.getArtifact(RepositoryUtils.toArtifact(a)));
            return Collections.unmodifiableCollection(attached);
        }
    
        @Override
        public Collection<Artifact> getAllArtifacts(Project project) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    == Terminating Continuous Build
    If Gradle is attached to an interactive input source, such as a terminal, the continuous build can be exited by pressing `CTRL-D` (On Microsoft Windows, it is required to also press `ENTER` or `RETURN` after `CTRL-D`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    	}
    
    	fs.BoolVar(&o.DisableAttachDetachReconcilerSync, "disable-attach-detach-reconcile-sync", false, "Disable volume attach detach reconciler sync. Disabling this may cause volumes to be mismatched with pods. Use wisely.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/EventScope.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to a listener interface to indicate which scope its events are generated in.
     *
     * <p>Events generated in a particular scope are visible to listeners in the same scope and ancestor scopes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top