Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 957 for output0 (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                        @Override
                        public void transform(TransformOutputs outputs) {
                            File input = getInputArtifact().get().getAsFile();
                            File output = outputs.file(input.getName() + ".txt");
    
                            try {
                                Files.write(output.toPath(), Collections.singleton(String.valueOf(input.length())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        ${server.callFromBuild('size-transform')}
                        File output = outputs.file(input.name + parameters.suffix)
                        output.text = String.valueOf(input.length())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      for (const Value original_output_value : outputs) {
        // Use the mapped values in the newly created function that correspond to
        // outputs in the original function.
        result_values.push_back(mapper.lookup(original_output_value));
      }
      builder.create<func::ReturnOp>(module_op.getLoc(), result_values);
    
      // 2) Create XlaCallModuleOp (with ops mapped).
      CreateXlaCallModuleOp(inputs, outputs, result_types, reverse_subgraph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            source "class A {}", "class B {}", "class C {}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            source "class B extends A {}"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses('B')
    
            when:
            outputs.snapshot()
            source "class A { /* change */ }"
            run language.compileTaskName
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  5. pkg/kube/krt/collection.go

    	o.mu.RLock()
    	defer o.mu.RUnlock()
    	return slices.Clone(o.h)
    }
    
    // multiIndex stores input and output objects.
    // Each input and output can be looked up by its key.
    // Additionally, a mapping of input key -> output keys stores the transformation.
    type multiIndex[I, O any] struct {
    	outputs  map[Key[O]]O
    	inputs   map[Key[I]]I
    	mappings map[Key[I]]sets.Set[Key[O]]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

            adapter.output('1.1.2', grrr)
    
            then:
            1 * listener.output({ it instanceof DecoratingTestDescriptor && it.id == '1.1' }, woof)
            1 * listener.output({ it instanceof DecoratingTestDescriptor && it.id == '1' }, woof)
            1 * listener.output({ it instanceof UnknownTestDescriptor }, grrr)
            0 * listener.output(_, _)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

        graph_def: graph_pb2.GraphDef,
    ) -> graph_pb2.GraphDef:
      """Restores the output tensor names of the converted model.
    
      During the conversion, the output tensor names of the original model are
      embedded in the `tf_saved_model.index_path` attribute of the RetVal nodes and
      might become the name of Retval nodes as well (with an index suffix if there
      are multiple output tensors from one node). Since Retval nodes are not used in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         * offers a convenient way of connecting together task inputs and outputs. (For a deeper understanding of
         * the topic see the <a href="https://docs.gradle.org/current/userguide/lazy_configuration.html">Lazy Configuration</a>
         * section of the Gradle manual.)</p>
         *
         * <p>
         * Task inputs and outputs often take the form of {@link Provider providers} or {@link Property properties},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    `UP-TO-DATE`:: *Task's outputs did not change.*
    * Task has outputs and inputs but they have not changed. See <<incremental_build.adoc#incremental_build,Incremental Build>>.
    * Task has actions, but the task tells Gradle it did not change its outputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                        final List<String> outputStrings = split(sides.get(1), ",");
                        outputs = new String[outputStrings.size()];
                        for (int i = 0; i < outputs.length; i++) {
                            outputs[i] = unescape(outputStrings.get(i)).trim();
                        }
    
                        if (inputs.length > 0 && outputs.length > 0) {
                            id++;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top