Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for firstInput (0.73 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/MutationRuleExecutionOrderTest.groovy

                recorder.mutations << input
            }
    
            @Mutate
            void a(MutationRecorder recorder, @Path("firstInput") String input) {
                recorder.mutations << input
            }
        }
    
        static class FirstInputCreationRule extends RuleSource {
            @Model
            String firstInput() {
                "first"
            }
        }
    
        static class SecondInputCreationRule extends RuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                }
    
                class NestedBean {
                    @Input
                    String firstInput
    
                    @InputFile
                    File firstInputFile
    
                    @OutputFile
                    File firstOutputFile
    
                    String toString() {
                        firstInput
                    }
    
                    void doStuff() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                                    PatternRewriter& rewriter) const override {
        TFL::PackOp pack_op = cast<TFL::PackOp>(op);
        Operation* first_input = pack_op.getOperand(0).getDefiningOp();
        if (!first_input) return failure();
        auto input_unpack_op = dyn_cast_or_null<TFL::UnpackOp>(first_input);
        if (!input_unpack_op) return failure();
    
        // The unpack & pack should have the same axis & num inputs/outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top