Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 94 for Configurable (0.18 sec)

  1. releasenotes/notes/39050.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 15:12:56 UTC 2022
    - 292 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExampleExtension.java

    public interface ExampleExtension {
        // tag::dependencies-accessors[]
        /**
         * Custom dependencies for this extension.
         */
        @Nested
        ExampleDependencies getDependencies();
    
        /**
         * Configurable block
         */
        default void dependencies(Action<? super ExampleDependencies> action) {
            action.execute(getDependencies());
        }
        // end::dependencies-accessors[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 553 bytes
    - Viewed (0)
  3. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ReportContainer.java

    import org.gradle.api.NamedDomainObjectSet;
    import org.gradle.api.Namer;
    import org.gradle.api.Rule;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Nested;
    import org.gradle.util.Configurable;
    
    import java.util.List;
    import java.util.Map;
    import java.util.SortedMap;
    import java.util.SortedSet;
    
    /**
     * A container of {@link Report} objects, that represent potential reports.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactRepositoryContainer.java

    import groovy.lang.Closure;
    import groovy.lang.DelegatesTo;
    import org.gradle.api.Action;
    import org.gradle.api.NamedDomainObjectList;
    import org.gradle.api.artifacts.repositories.ArtifactRepository;
    import org.gradle.util.Configurable;
    
    /**
     * <p>A {@code ResolverContainer} is responsible for managing a set of {@link ArtifactRepository} instances. Repositories are arranged in a sequence.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Report.java

    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Internal;
    import org.gradle.util.Configurable;
    
    /**
     * A file based report to be created.
     * <p>
     * Tasks that produce reports expose instances of this type for configuration via the {@link Reporting} interface.
     */
    public interface Report extends Configurable<Report> {
    
        Namer<Report> NAMER = new Namer<Report>() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    [[domainobjectset]]
    == 1. `DomainObjectSet`
    
    A link:{javadocPath}/org/gradle/api/DomainObjectSet.html[`DomainObjectSet`] simply holds a set of configurable objects.
    
    Compared to `NamedDomainObjectContainer`, a `DomainObjectSet` doesn't manage the objects in the collection.
    They need to be created and added manually.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/TaskInternal.java

    import org.gradle.internal.logging.StandardOutputCapture;
    import org.gradle.internal.resources.ResourceLock;
    import org.gradle.util.Configurable;
    import org.gradle.util.Path;
    
    import java.io.File;
    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    
    public interface TaskInternal extends Task, Configurable<Task> {
    
        /**
         * A more efficient version of {@link #getActions()}, which circumvents the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/config/LoggingSystem.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.config;
    
    /**
     * Some configurable logging system, whose state can be snapshot, mutated and restored.
     */
    public interface LoggingSystem {
        /**
         * Snapshots the current configuration state of this logging system.
         */
        Snapshot snapshot();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ConfigurableNormalizer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.internal.hash.Hasher;
    
    /**
     * A resource normalizer which is configurable.
     *
     * Allows tracking changes to its configuration.
     */
    public interface ConfigurableNormalizer {
        void appendConfigurationToHasher(Hasher hasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 913 bytes
    - Viewed (0)
  10. internal/http/server.go

    type Server struct {
    	http.Server
    	Addrs           []string      // addresses on which the server listens for new connection.
    	TCPOptions      TCPOptions    // all the configurable TCP conn specific configurable options.
    	ShutdownTimeout time.Duration // timeout used for graceful server shutdown.
    	listenerMutex   sync.Mutex    // to guard 'listener' field.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 09 21:25:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top