Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,065 for output1 (0.12 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsRenderer.java

                hiddenNonBuildable = true;
                return;
            }
            StyledTextOutput output = builder.getOutput();
            GraphRenderer renderer = new GraphRenderer(output);
            renderer.visit(output1 -> {
                output1.withStyle(Identifier).text(component.getName());
                output1.withStyle(Description).text(" - Components that depend on " + component.getDisplayName());
            }, true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/c/kernels_test.cc

                output->DebugString(100));
    }
    
    REGISTER_OP("AllocateOutputOp0").Output("output1: float");
    
    TEST_F(DeviceKernelOpTest, TestAllocateEmptyOutput) {
      auto my_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        TF_Status* s = TF_NewStatus();
        // Allocate empty output
        int64_t dim = 0;
        TF_Tensor* output = TF_AllocateOutput(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestLauncherDebugCrossVersionTest.groovy

            setup:
            sampleBuildWithTest()
    
            when:
            String output1 = runTaskAndTestClassUsing(firstDebug)
            String output2 = runTaskAndTestClassUsing(secondDebug)
    
            then:
            assertTestDebugMode(output1, firstDebug)
            assertTestDebugMode(output2, secondDebug)
    
            where:
            scenarioName                     | firstDebug | secondDebug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:00:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                    @InputFiles def inputFiles = project.layout.files()
    
                    @OutputDirectory File outputs1
                    @OutputDirectory File outputs2
    
                    @TaskAction void action() {
                        new File(outputs1, "output1.txt").text = "output1"
                        new File(outputs2, "output2.txt").text = "output2"
                    }
                }
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. tensorflow/c/ops_test.cc

      TF_OpDefinitionBuilderAddInput(builder, "input1: uint8");
      TF_OpDefinitionBuilderAddInput(builder, "input2: uint32");
      TF_OpDefinitionBuilderAddOutput(builder, "output1: uint8");
      TF_OpDefinitionBuilderAddOutput(builder, "output2: uint8");
      TF_OpDefinitionBuilderSetShapeInferenceFunction(
          builder, &TF_ShapeInferenceContextSetUnknownShape);
      TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/TransformLoggingIntegrationTest.groovy

                    @Override
                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        def output1 = outputs.file(input.name + ".1." + target)
                        def output2 = outputs.file(input.name + ".2." + target)
                        if (showOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

            }
    
            void createContents() {
                file.text = "output file"
                dir.file("some/dir/output1.txt") << "output1"
                dir.file("some/dir/output2.txt") << "output2"
                dir.file("some/output3.txt") << "output3"
                dir.file("some/another/output4.txt") << "output4"
                dir.createDir("some/lonelyDir")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

        }
    
        private static String[] customTaskWithOutputs(List<String> outputs) {
            (["customTask", "-PnumOutputs=${outputs.size()}"] + outputs.withIndex().collect { value, idx -> "-Poutput${idx}" + (value ? "=${value}" : '') }) as String[]
        }
    
        def "output files moved from one location to another marks task up-to-date"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-defs.pbtxt

        value {
          s: "cluster"
        }
      }
    }
    node {
      name: "output0"
      op: "TPUReplicatedOutput"
      input: "Identity"
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "num_replicas"
        value {
          i: 1
        }
      }
    }
    node {
      name: "output1"
      op: "TPUReplicatedOutput"
      input: "Identity_1"
      attr {
        key: "T"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/resources/test_ops.cc

    REGISTER_OP("TestThreeInputsOp")
        .Input("x: T")
        .Input("y: T")
        .Input("z: T")
        .Output("output: T")
        .Attr("T: numbertype")
        .Attr("act: {'x', 'y', 'z'} = 'z'");
    
    REGISTER_OP("TestTwoOutputsOp")
        .Input("input: T")
        .Output("output1: T")
        .Output("output2: T")
        .Attr("T: numbertype");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 07 23:35:35 UTC 2020
    - 2.3K bytes
    - Viewed (0)
Back to top