Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for Configurable (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/ConfigureUtil.java

         *
         * <p>If {@code target} does not implement {@link Configurable} interface, it is set as the delegate of a clone of
         * {@code configureClosure} with a resolve strategy of {@code DELEGATE_FIRST}.</p>
         *
         * <p>If {@code target} does implement the {@link Configurable} interface, the {@code configureClosure} will be passed to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ConfigureUtil.java

         *
         * <p>If {@code target} does not implement {@link Configurable} interface, it is set as the delegate of a clone of
         * {@code configureClosure} with a resolve strategy of {@code DELEGATE_FIRST}.</p>
         *
         * <p>If {@code target} does implement the {@link Configurable} interface, the {@code configureClosure} will be passed to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/errors/storage.go

    	case storage.IsNotFound(err):
    		return errors.NewNotFound(qualifiedResource, "")
    	case storage.IsUnreachable(err), storage.IsRequestTimeout(err):
    		return errors.NewServerTimeout(qualifiedResource, "list", 2) // TODO: make configurable or handled at a higher level
    	case storage.IsInternalError(err):
    		return errors.NewInternalError(err)
    	default:
    		return err
    	}
    }
    
    // InterpretGetError converts a generic error on a retrieval
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:39:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. releasenotes/notes/47318.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    
    docs:
      - '[usage] https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configurable-scaling-behavior'
    
    releaseNotes:
    - |
      **Added** configurable scaling behavior for Gateway HPA in helm chart
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 08 02:59:41 UTC 2023
    - 297 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/connectProperties/kotlin/build.gradle.kts

    // A project extension
    interface MessageExtension {
        // A configurable greeting
        abstract val greeting: Property<String>
    }
    
    // A task that displays a greeting
    abstract class Greeting : DefaultTask() {
        // Configurable by the user
        @get:Input
        abstract val greeting: Property<String>
    
        // Read-only property calculated from the greeting
        @Internal
        val message: Provider<String> = greeting.map { it + " from Gradle" }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/connectProperties/groovy/build.gradle

    // A project extension
    interface MessageExtension {
        // A configurable greeting
        Property<String> getGreeting()
    }
    
    // A task that displays a greeting
    abstract class Greeting extends DefaultTask {
        // Configurable by the user
        @Input
        abstract Property<String> getGreeting()
    
        // Read-only property calculated from the greeting
        @Internal
        final Provider<String> message = greeting.map { it + ' from Gradle' }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/ClosureBackedAction.java

        @Override
        public void execute(T delegate) {
            if (closure == null) {
                return;
            }
    
            try {
                if (configurableAware && delegate instanceof Configurable) {
                    ((Configurable) delegate).configure(closure);
                } else {
                    Closure copy = (Closure) closure.clone();
                    copy.setResolveStrategy(resolveStrategy);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/Option.java

     * limitations under the License.
     */
    
    package org.gradle.internal.buildoption;
    
    /**
     * Represents some user configurable value that can be defined outside the Gradle model, for example via a command-line option or a Gradle
     * property. Some options may also be configurable via the Gradle API, for example feature previews.
     */
    public interface Option {
        abstract class Value<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ClosureBackedAction.java

        @Override
        public void execute(T delegate) {
            if (closure == null) {
                return;
            }
    
            try {
                if (configurableAware && delegate instanceof Configurable) {
                    ((Configurable) delegate).configure(closure);
                } else {
                    Closure copy = (Closure) closure.clone();
                    copy.setResolveStrategy(resolveStrategy);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. releasenotes/notes/51050.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 190 bytes
    - Viewed (0)
Back to top