Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,605 for onOutput (0.14 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionPropertyIntegrationTest.groovy

                buildDir = "output"
    """
            file("file1-source.txt").text = "file1"
            file("file2-source.txt").text = "file2"
    
            when:
            run("merge")
    
            then:
            result.assertTasksExecuted(":createFile1", ":createFile2", ":merge")
            file("output/merged.txt").text == 'file1,file2'
    
            when:
            run("merge")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

    // output side to satisfy the constraint of the next operation.
    struct RequantizeState {
      // Sometimes, we have to "requantize" the quantization result to satisfy all
      // the constraints. The "requantize" can happen either on the input or output
      // of the quantization result.
      enum RequantizePosition {
        NO_REQUANTIZE,
        ON_INPUT,
        ON_OUTPUT
      } pos = NO_REQUANTIZE;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/ops.h

    };
    
    /// Represents a tensor value produced by an Operation.
    class Output {
     public:
      Output() = default;
      explicit Output(Node* n) : op_(n) {}
      Output(Node* n, int32_t index) : op_(n), index_(index) {}
      Output(const Operation& op, int32_t index) : op_(op), index_(index) {}
    
      Operation op() const { return op_; }
      Node* node() const { return op().node(); }
      int32 index() const { return index_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

                        assert ${lenient} || input.file
                        def output = outputs.file(input.name + "." + parameters.targetColor.get())
                        if (input.file) {
                            output.text = input.text + "-" + parameters.targetColor.get()
                        } else {
                            output.text = "missing-" + parameters.targetColor.get()
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    	return nil
    }
    
    // PrintObj prints the obj in a human-friendly format according to the type of the obj.
    func (h *HumanReadablePrinter) PrintObj(obj runtime.Object, output io.Writer) error {
    
    	if _, found := output.(*tabwriter.Writer); !found {
    		w := GetNewTabWriter(output)
    		output = w
    		defer w.Flush()
    	}
    
    	var eventType string
    	if event, isEvent := obj.(*metav1.WatchEvent); isEvent {
    		eventType = event.Type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/internal/tasks/DefaultSourceSetTest.groovy

            expect:
            assertThat(sourceSet.output.classesDirs, isEmpty())
            assertThat(sourceSet.output.files, isEmpty())
            assertThat(sourceSet.output.displayName, equalTo('set name classes'))
            assertThat(sourceSet.output.toString(), equalTo('set name classes'))
            assertThat(sourceSet.output.buildDependencies.getDependencies(null), isEmpty())
    
            assertThat(sourceSet.output.resourcesDir, nullValue())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

        mlir::ModuleOp module_op, llvm::raw_ostream& output) {
      output << "\"";
      std::string serialized_module = SerializeMlirModule(module_op);
      llvm::printEscapedString(serialized_module, output);
      output << "\"";
      return mlir::success();
    }
    
    static mlir::LogicalResult MlirTfToHloTextTranslateFunction(
        mlir::ModuleOp module_op, llvm::raw_ostream& output) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

            error(e2).startsWith(error('''
                Did not find expected text in error output.
                Expected: broken
    
                Error output:
                =======
    
                Some error
                '''))
        }
    
        def "log output missing assertions do not ignore content after failure section"() {
            given:
            def output = """
    Some message
    Some error
    
    FAILURE: broken
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

    // constraints:
    // - If there are immutable states,
    //   - use the single input, or,
    //   - use the single output, or,
    //   - use the first one in the collection,
    // - use the single input if it is ready, or,
    // - use the single output if it is ready, or,
    // - use the first ready one in the collection.
    QuantizedType QuantizationDriver::GetQuantParamsForSameScaleConstraint(
        Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    @Output${kind}
                    final ${type.name} output = project.objects.${factory}()
    
                    @TaskAction
                    void doStuff() {
                        output${generatorAction}
                    }
                }
    
                task generator(type: GeneratorTask) {
                    output.set(project.layout.buildDirectory.${lookup}('output'))
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top