Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,135 for produced (0.17 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. 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)
  6. 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)
  7. pkg/util/hash/hash_test.go

    			t.Fatalf("hash of the same object (%q) produced different results: %d vs %d", toString(tc()), hash1, hash2)
    		}
    		for i := 0; i < 100; i++ {
    			hasher2 := adler32.New()
    
    			DeepHashObject(hasher1, tc())
    			hash1a := hasher1.Sum32()
    			DeepHashObject(hasher2, tc())
    			hash2a := hasher2.Sum32()
    
    			if hash1a != hash1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top