Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,597 for produced (0.13 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeComponentExtension.java

     */
    @Incubating
    public interface NativeComponentExtension {
        /**
         * The {@link NativeExecutableSpec} components produced by the build.
         */
        NamedDomainObjectContainer<NativeExecutableSpec> getExecutables();
    
        /**
         * Configure the {@link NativeExecutableSpec} components produced by the build.
         */
        void executables(Action<? super NamedDomainObjectContainer<? super NativeExecutableSpec>> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningConfigurationsSpec.groovy

            signing {
                sign configurations.produced
            }
    
            then:
            configurations.signatures.artifacts.size() == 3
            signProduced.signatures.every { it in configurations.signatures.artifacts }
        }
    
        def "sign configuration with custom type"() {
            def signingTasks
            when:
            signing {
                signingTasks = sign configurations.produced
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_vendor_modules_txt_conditional.txt

    # standard vendor if it doesn't).
    
    # vendor directory produced for workspace, workspace mode
    # runs in mod=vendor
    go work vendor
    cmp vendor/modules.txt want_workspace_modules_txt
    go list -f {{.Dir}} example.com/b
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]b
    
    # vendor directory produced for workspace, module mode
    # runs in mod=readonly
    env GOWORK=off
    go list -f {{.Dir}} example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

            Try<T> getResult();
    
            /**
             * The origin metadata of the result.
             *
             * If a previously produced output was reused in some way, the reused output's origin metadata is returned.
             * If the output was produced in this request, then the current execution's origin metadata is returned.
             */
            Optional<OriginMetadata> getOriginMetadata();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInvocationTest.groovy

                INVOCATION_COUNT.incrementAndGet()
                outputs.file(new File(inputArtifact.get().asFile, SELECTED_PATH))
                outputs.file("produced-file-1.txt").text = "produced1"
                outputs.dir(inputArtifact)
                outputs.file("produced-file-2.txt").text = "produced2"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/tasks/VerificationException.java

     *
     * A task can depend upon another task's outcome (PASS vs. FAIL), outputs (the files they produce) or both. A verification
     * failure represents the case where a task has a failed outcome, but has still produced valid output files for consumption.
     * Tasks that only depend on the other task's outputs are allowed to execute. Tasks that depend on both the outcome and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 18:24:23 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/LinkSharedLibrary.java

                }
            })));
        }
    
        /**
         * Returns the import library produced by this task. Defaults to the directory containing the runtime file and is not defined when no import library will be produced.
         *
         * @since 4.4
         */
        @Optional @OutputFile
        public RegularFileProperty getImportLibrary() {
            return importLibrary;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

    /**
     * The result of running a single transform action on a single input artifact.
     *
     * The result of running a transform is a list of outputs.
     * There are two kinds of outputs for a transform:
     * - Produced outputs in the workspace. Those are relative paths depending on the workspace root, independent of the input artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/output/types.go

    // BootstrapToken represents information for the bootstrap token output produced by kubeadm
    type BootstrapToken struct {
    	metav1.TypeMeta
    
    	bootstraptokenv1.BootstrapToken
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Images represents information for the output produced by 'kubeadm config images list'
    type Images struct {
    	metav1.TypeMeta
    
    	Images []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            """
    
            when:
            run(":producer", ":consumer")
            then:
            executed(":producer", ":consumer")
    
            when:
            run(":consumer", ":producer")
            then:
            executed(":producer", ":consumer")
    
            where:
            disabledTask << ["consumer", "producer"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top