Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,624 for lazily (0.12 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

                task merge(type: FileOutputTask) {
                    outputFile = layout.buildDirectory.file("merged.txt")
                    inputFile = createFile.outputFile
                }
    
                // Set values lazily
                createFile.inputFile = layout.projectDirectory.file("file-source.txt")
                createFile.outputFile = layout.buildDirectory.file("intermediate.txt")
    
                buildDir = "output"
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named.go

    //  - When loading from export data, we may load its methods and underlying
    //    type lazily using a provided load function.
    //  - After instantiating, we lazily expand the underlying type and methods
    //    (note that instances may be created while still in the process of
    //    type-checking the original type declaration).
    //
    // In cases 3 and 4 this lazy construction may also occur concurrently, due to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/InterpretationSequence.kt

        override val evaluationSchemaForStep: EvaluationSchema by lazy(buildEvaluationAndConversionSchema)
    }
    
    
    /**
     * Implements a straightforward interpretation sequence step that uses the target as the top-level receiver
     * and produces an evaluation schema with [buildEvaluationAndConversionSchema] lazily before the step runs.
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/testdata/testwinlib/main.c

            unhandledCount++;
            return EXCEPTION_CONTINUE_EXECUTION;
        }
        return EXCEPTION_CONTINUE_SEARCH;
    }
    
    void throwFromC()
    {
        DebugBreak();
    }
    int main()
    {
        // simulate a "lazily" attached debugger, by calling some go code before attaching the exception/continue handler
        Dummy();
        exceptionCount = 0;
        continueCount = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/DependencyInjectingServiceLoader.java

        private final ServiceRegistry serviceRegistry;
    
        public DependencyInjectingServiceLoader(ServiceRegistry serviceRegistry) {
            this.serviceRegistry = serviceRegistry;
        }
    
        /**
         * Lazily instantiates the available service type providers.
         */
        public <T> Iterable<T> load(Class<T> serviceType, ClassLoader classLoader) {
            final Instantiator instantiator = dependencyInjectingInstantiator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolverTest.groovy

            when:
            def matches = asTasks(results)
    
            then:
            matches == [task1]
    
            and:
            0 * tasks._
            0 * childTasks._
        }
    
        def "lazily locates all tasks for a single project"() {
            given:
            def task1 = task('task1')
    
            when:
            def result = resolver.selectAll(project, false)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalVariantMetadata.java

    import org.gradle.internal.component.model.VariantResolveMetadata;
    import org.gradle.internal.model.CalculatedValue;
    
    /**
     * Implementation of {@link VariantResolveMetadata} which allows variant artifacts to be calculated lazily
     * while holding a project lock.
     */
    public final class LocalVariantMetadata extends DefaultVariantMetadata {
        private final CalculatedValue<ImmutableList<LocalComponentArtifactMetadata>> artifacts;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/go/types/named.go

    //  - When loading from export data, we may load its methods and underlying
    //    type lazily using a provided load function.
    //  - After instantiating, we lazily expand the underlying type and methods
    //    (note that instances may be created while still in the process of
    //    type-checking the original type declaration).
    //
    // In cases 3 and 4 this lazy construction may also occur concurrently, due to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/lazy.go

    // initialization and any server calls until a client actually needs to perform the action.
    func NewLazyRESTMapperLoader(fn func() (RESTMapper, error)) RESTMapper {
    	obj := &lazyObject{loader: fn}
    	return obj
    }
    
    // init lazily loads the mapper and typer, returning an error if initialization has failed.
    func (o *lazyObject) init() error {
    	o.lock.Lock()
    	defer o.lock.Unlock()
    	if o.loaded {
    		return o.err
    	}
    	o.mapper, o.err = o.loader()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/LazyAttributesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class LazyAttributesIntegrationTest extends AbstractIntegrationSpec {
        def "properties used as attribute values are read lazily"() {
            settingsFile << "rootProject.name = 'TestProject'"
    
            buildFile << """
                plugins {
                    id 'java'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top