Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for produce2 (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            given:
            Task producer1 = task("producer1", type: AsyncWithOutputDirectory)
            _ * producer1.outputDirectory >> file("dir1")
            Task producer2 = task("producer2", type: AsyncWithOutputDirectory)
            _ * producer2.outputDirectory >> file("dir2")
            Task destroyer = task("destroyer", type: AsyncWithDestroysFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    link the result into a binary file. For an executable component, Gradle can produce executable binary files. For a library component, Gradle can produce both static and shared library binary files. For example, when you define a library called `helloworld` and build on Linux, Gradle will, by default, produce `libhelloworld.so` and `libhelloworld.a` binaries.
    
    In many cases, more than one binary can be produced for a component. These binaries may vary based on the tool chain used to build,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            result.groupedOutput.transform("MakeGreen", "producer.out1.jar (project :producer)")
                .assertOutputContains("processing [producer.out1.jar]")
            result.groupedOutput.transform("MakeGreen", "producer.out2.jar (project :producer)")
                .assertOutputContains("processing [producer.out2.jar]")
    
            result.groupedOutput.task(":consumer:resolve")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

        }
    
        ProviderInternal<T> supplierWithProducer(Task producer, T... values) {
            return ProviderTestUtil.withProducer(type(), producer, values)
        }
    
        ProviderInternal<T> supplierWithProducerAndChangingExecutionTimeValue(Task producer, T... values) {
            return ProviderTestUtil.withProducerAndChangingExecutionTimeValue(type(), producer, values)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            value.getChangingValue().get() == toImmutable(["a", "c"])
        }
    
        def "has union of producer task from providers unless producer task attached"() {
            given:
            def task1 = Stub(Task)
            def task2 = Stub(Task)
            def task3 = Stub(Task)
            def producer = Stub(Task)
            property.set(supplierWithProducer(task1))
            property.addAll(supplierWithProducer(task2))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            value.getChangingValue().get() == [a: '1b', c: '3']
        }
    
        def "has union of producer task from providers unless producer task attached"() {
            given:
            def task1 = Stub(Task)
            def task2 = Stub(Task)
            def task3 = Stub(Task)
            def producer = Stub(Task)
            property.set(supplierWithProducer(task1))
            property.putAll(supplierWithProducer(task2))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        }
    
        def "attributes declared on constraints contribute to graph selection"() {
            given:
            settingsFile << """
                include 'producer'
            """
            file("producer/build.gradle") << """
                plugins {
                    id("base")
                }
    
                task wrongZip(type: Zip) {
                    archiveBaseName = "wrong"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	// endpoint by endpoint basis
    	ws.Consumes("*/*")
    	mediaTypes, streamMediaTypes := negotiation.MediaTypesForSerializer(a.group.Serializer)
    	ws.Produces(append(mediaTypes, streamMediaTypes...)...)
    	ws.ApiVersion(a.group.GroupVersion.String())
    
    	return ws
    }
    
    // calculate the storage gvk, the gvk objects are converted to before persisted to the etcd.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

       * }
       * }</pre>
       *
       * <p>Note that if any input set is empty, the Cartesian product will also be empty. If no sets at
       * all are provided (an empty list), the resulting Cartesian product has one element, an empty
       * list (counter-intuitive, but mathematically consistent).
       *
       * <p><i>Performance notes:</i> while the cartesian product of sets of size {@code m, n, p} is a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    configurations { create("default") }
                    task producer(type: FileProducer) {
                        content = providers.systemProperty("\${project.name}Content").orElse("content")
                        output = layout.buildDirectory.file("\${project.name}.out")
                    }
                    configurations.default.outgoing.artifact(producer.output)
                }
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
Back to top