Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 244 for Configurable (0.24 sec)

  1. subprojects/core-api/src/main/java/org/gradle/util/Configurable.java

     */
    
    package org.gradle.util;
    
    import groovy.lang.Closure;
    
    /**
     * An object that can be configured with a Groovy closure.
     *
     * @param <T> the closure return type.
     */
    public interface Configurable<T> {
        T configure(Closure cl);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 14 15:35:22 UTC 2021
    - 847 bytes
    - Viewed (0)
  2. releasenotes/notes/helm-configurable-scaling-behavior.yaml

    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 42634
    
    docs:
      - '[usage] https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configurable-scaling-behavior'
    
    releaseNotes:
    - |
      **Added** configurable scaling behavior for Istiod's HPA in helm chart 
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 20 17:08:18 UTC 2023
    - 394 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/IncludedBuildSpec.java

                DefaultConfigurableIncludedBuild configurable = instantiator.newInstance(DefaultConfigurableIncludedBuild.class, rootDir);
                configurer.execute(configurable);
    
                return BuildDefinition.fromStartParameterForBuild(
                    startParameter,
                    configurable.getName(),
                    rootDir,
                    PluginRequests.EMPTY,
                    configurable.getDependencySubstitutionAction(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 08 20:51:22 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/TaskStateInternalTest.groovy

            assertFalse(state.upToDate)
            assertFalse(state.configurable)
            assertThat(state.failure, sameInstance(failure))
        }
    
        @Test
        public void canMarkTaskAsSkipped() {
            state.setOutcome(TaskExecutionOutcome.SKIPPED)
            assertTrue(state.executed)
            assertTrue(state.skipped)
            assertFalse(state.upToDate)
            assertFalse(state.configurable)
            assertThat(state.skipMessage, equalTo("SKIPPED"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 30 07:54:03 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/TaskMutatorTest.groovy

        def "executes mutation action when in configurable state"() {
            def action = Mock(Runnable)
    
            given:
            state.configurable >> true
    
            when:
            nagger.mutate("Task.thing()", action)
    
            then:
            1 * action.run()
        }
    
        def "mutation action fails when not in configurable state"() {
            def action = Mock(Runnable)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 27 11:48:15 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top