Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 652 for output0 (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                contextualLabel == 'Type \'MyTask\' property \'doubleIterableOptions.*.*.notAnnotated\' is missing an input or output annotation'
                details == 'A property without annotation isn\'t considered during up-to-date checking'
                solutions == [
                    'Add an input or output annotation',
                    'Mark it as @Internal',
                ]
                additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      GraphDef pruned_graph_def;
      if (specs.prune_unused_nodes) {
        std::vector<std::string> terminal_nodes;
        terminal_nodes.reserve(specs.outputs.size() + specs.inputs.size());
        for (const auto& output : specs.outputs) {
          terminal_nodes.push_back(std::string(ParseTensorName(output).node()));
        }
        for (const auto& control_output : specs.control_outputs) {
          terminal_nodes.push_back(std::string(control_output));
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      }
      while_wrapper.getControl().replaceAllUsesWith(new_while_wrapper.getControl());
      while_wrapper.erase();
      return new_while_op;
    }
    
    // Converts the control outputs of the while body to data outputs, thus
    // removing control barrier at the end of while loop body.
    void ConvertControlToDataOutputs(
        func::FuncOp while_body, SmallVectorImpl<TF::WhileOp>& while_callers,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload_test.go

    	}
    
    	fErr := cmd.Execute()
    	output := out.String()
    
    	if c.expectedException {
    		if fErr == nil {
    			t.Fatalf("Wanted an exception, "+
    				"didn't get one, output was %q", output)
    		}
    	} else {
    		if fErr != nil {
    			t.Fatalf("Unwanted exception: %v", fErr)
    		}
    	}
    
    	if c.expectedOutput != "" && c.expectedOutput != output {
    		assert.Equal(t, c.expectedOutput, output)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

      <testcase name="some skipped test" classname="com.foo.FooTest" time="0.01">
        <skipped/>
      </testcase>
      <system-out><![CDATA[1st output message
    2nd output message
    ]]></system-out>
      <system-err><![CDATA[err]]></system-err>
    </testsuite>
    """
        }
    
        def "writes results with empty outputs"() {
            given:
            def options = new JUnitXmlResultOptions(false, false, true, true)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top