Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 967 for demand (0.26 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioFileCustomizationIntegrationTest.groovy

        it.gradleExe "myCustomGradleExe"
        it.gradleArgs "--configure-on-demand --another"
    }
    """
            and:
            run "visualStudio"
    
            then:
            final projectFile = projectFile("mainExe.vcxproj")
            projectFile.projectConfigurations.values().each {
                assert it.buildCommand == "myCustomGradleExe --configure-on-demand --another :installMain${it.name.capitalize()}Executable"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

    }
    """
    
            when:
            args "--configure-on-demand"
            execute(buildA, ":foo:bar:classes", ":foo:classes")
    
            then:
            executed ":pluginBuild:jar", ":foo:classes", ":foo:bar:classes"
        }
    
        def "can develop a plugin with multiple consumers when those consumers are accessed via undeclared dependency resolution and using configure-on-demand"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. cluster/addons/dns-horizontal-autoscaler/README.md

    in Kubernetes clusters. This autoscaler runs as a Deployment. It collects cluster
    status from the APIServer, horizontally scales the number of DNS backends based
    on demand. Autoscaling parameters could be tuned by modifying the `kube-dns-autoscaler`
    ConfigMap in `kube-system` namespace.
    
    Learn more about:
    - Usage: http://kubernetes.io/docs/tasks/administer-cluster/dns-horizontal-autoscaling/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 596 bytes
    - Viewed (0)
  4. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

            [JAR_TASK_NAME, '--parallel']                          | 'in parallel'
            [JAR_TASK_NAME, '--parallel', '--configure-on-demand'] | 'in parallel and configure on demand enabled'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/821")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/embedded.go

    func (e encodable) DeepCopyObject() Object {
    	out := e
    	out.obj = e.obj.DeepCopyObject()
    	copy(out.versions, e.versions)
    	return out
    }
    
    // NewEncodable creates an object that will be encoded with the provided codec on demand.
    // Provided as a convenience for test cases dealing with internal objects.
    func NewEncodable(e Encoder, obj Object, versions ...schema.GroupVersion) Object {
    	if _, ok := obj.(*Unknown); ok {
    		return obj
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java

        /**
         * Gets the identifiers of those profiles that should be activated by explicit demand.
         *
         * @return The identifiers of those profiles to activate, never {@code null}.
         */
        List<String> getActiveProfileIds();
    
        /**
         * Gets the identifiers of those profiles that should be deactivated by explicit demand.
         *
         * @return The identifiers of those profiles to deactivate, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivationContext.java

        /**
         * Gets the identifiers of those profiles that should be activated by explicit demand.
         *
         * @return The identifiers of those profiles to activate, never {@code null}.
         */
        List<String> getActiveProfileIds();
    
        /**
         * Gets the identifiers of those profiles that should be deactivated by explicit demand.
         *
         * @return The identifiers of those profiles to deactivate, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileActivationContext.java

        @Override
        public List<String> getActiveProfileIds() {
            return activeProfileIds;
        }
    
        /**
         * Sets the identifiers of those profiles that should be activated by explicit demand.
         *
         * @param activeProfileIds The identifiers of those profiles to activate, may be {@code null}.
         * @return This context, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/HasCleanupAction.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * A cache entity that can be cleaned on demand.
     */
    public interface HasCleanupAction {
        /**
         * Cleans up the cache, if any cleanup action has been provided.
         */
        void cleanup();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 844 bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/AbstractLocallyAvailableResource.java

    import org.gradle.internal.Factory;
    import org.gradle.internal.hash.HashCode;
    
    public abstract class AbstractLocallyAvailableResource implements LocallyAvailableResource {
        private Factory<HashCode> factory;
        // Calculated on demand
        private HashCode sha1;
        private Long contentLength;
        private Long lastModified;
    
        protected AbstractLocallyAvailableResource(Factory<HashCode> factory) {
            this.factory = factory;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top