Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,202 for produce1 (0.19 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

     */
    public sealed class KaCompilationResult {
        /**
         * Successful compilation result.
         *
         * @property output Output files produced by the compiler. For the JVM target, these are class files and '.kotlin_module'.
         * @property capturedValues Context values captured by a [KtCodeFragment]. Empty for an ordinary [KtFile].
         */
        public class Success(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/integTest/groovy/org/gradle/api/file/FilePermissionsIntegrationTest.groovy

                    }
                }
    
                val producer = tasks.register<Producer>("producer")
                val consumer = tasks.register<Consumer>("consumer")
    
                consumer {
                    message.set($wiring)
                    outputFile.set(File("${TextUtil.normaliseFileSeparators(outputFile.absolutePath)}"))
                }
    
                producer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 18 08:40:58 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/html/template/doc.go

    produces
    
    	Hello, <script>alert('you have been pwned')</script>!
    
    but the contextual autoescaping in html/template
    
    	import "html/template"
    	...
    	t, err := template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
    	err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
    
    produces safe, escaped HTML output
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/test_error_message.lit.pbtxt

    # RUN: not tfcompile --graph=%s --config=%s.config.pbtxt --mlir_components=None 2>&1 | FileCheck -check-prefix=OLD %s
    
    # Checks the error message produced by tfcompile with mlir_component
    # Checks that source debug information is used in the output error message and
    # the node x_y_sum = Add
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:32:15 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Missing dependencies between tasks
    
    Having a task which produces an output in a location and another task consuming that location by referring to it as an input without the consumer task depending on the producer task has been deprecated.
    A fix for this problem is to <<incremental_build.adoc#sec:link_output_dir_to_input_files,add a dependency from the consumer to the producer>>.
    
    [[duplicates-strategy]]
    ==== Duplicates strategy
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                    }
                }
    
                def computeDirName = tasks.register('producer', Producer) {
                    dirName = layout.buildDirectory.file('dirName.txt')
                }
    
                tasks.register('answer', Consumer) {
                    // TODO:configuration should this `dependsOn` be necessary here?
                    dependsOn 'producer'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    To do this, we will add attributes to both the consumer and the producer.
    
    --
    It is important to understand that once configurations have attributes, they participate in _variant aware resolution_, which means that they are candidates considered whenever _any_ notation like `project(":myLib")` is used.
    In other words, the attributes set on the producer _must be consistent with the other variants produced on the same project_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ProjectVariantResolutionIntegrationTest.groovy

        def "does not realize tasks that produce outgoing artifacts that are not required"() {
            createDirs("a", "b")
            settingsFile << """
                include 'a', 'b'
            """
            setupBuildWithColorVariants()
            taskTypeWithOutputFileProperty()
            buildFile << """
                allprojects {
                    def p = tasks.register("producer", FileProducer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedVariant.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ResolvedVariant;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    
    /**
     * Represents a variant which is produced as the result of applying an artifact transform chain
     * to a root producer variant.
     */
    public class TransformedVariant implements HasAttributes {
        private final ResolvedVariant root;
        private final VariantDefinition chain;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerCppBuildExportIntegrationTest.groovy

    class SwiftPackageManagerCppBuildExportIntegrationTest extends AbstractSwiftPackageManagerExportIntegrationTest {
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "produces manifest for single project C++ library that defines only the production targets"() {
            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                    id 'cpp-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top