Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 330 for set_output (0.13 sec)

  1. tensorflow/compiler/jit/shape_inference_helpers.cc

      for (Node* n : graph_->nodes()) {
        if (n->IsMerge()) {
          for (const Edge* e : n->in_edges()) {
            if (e->src()->IsNextIteration()) {
              back_edges_.push_back(
                  BackEdge{e, e->src(), e->src_output(), e->dst(), e->dst_input()});
            }
          }
        }
      }
      for (const BackEdge& be : back_edges_) {
        graph_->RemoveEdge(be.edge);
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        return rewriter.create<TF::ConstOp>(loc, static_shape_attr).getOutput();
      }
    
      // If the shape is not static, create a new ShapeOp.
      BoolAttr false_attr = rewriter.getBoolAttr(false);
      return rewriter
          .create<TF::ShapeOp>(loc, input,
                               /*use_32bit=*/false_attr)
          .getOutput();
    }
    
    mlir::TFL::MirrorPaddingType GetTFLMirrorPaddingFromString(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/components/internal/ComponentRenderer.java

            if (component instanceof SourceComponentSpec) {
                SourceComponentSpec sourceComponentSpec = (SourceComponentSpec) component;
                builder.getOutput().println();
                builder.collection("Source sets", CollectionUtils.sort(sourceComponentSpec.getSources().values(), SourceSetRenderer.SORT_ORDER), sourceSetRenderer, "source sets");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. src/runtime/security_test.go

    	}
    }
    
    func TestSUID(t *testing.T) {
    	// This test is relatively simple, we build a test program which opens a
    	// file passed via the TEST_OUTPUT envvar, prints the value of the
    	// GOTRACEBACK envvar to stdout, and prints "hello" to stderr. We then chown
    	// the program to "nobody" and set u+s on it. We execute the program, only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:10:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r62/CapturingMultipleUserInputCrossVersionSpec.groovy

            def resultHandler = new TestResultHandler()
            build.run(resultHandler)
    
            poll(60) {
                assert getOutput().contains(FOO.prompt)
            }
    
            stdinWriter.write((answer1 + System.getProperty('line.separator')).bytes)
    
            poll(60) {
                assert getOutput().contains(BAR.prompt)
            }
    
            stdinWriter.write((answer2 + System.getProperty('line.separator')).bytes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/flag/example_textvar_test.go

    // license that can be found in the LICENSE file.
    
    package flag_test
    
    import (
    	"flag"
    	"fmt"
    	"net"
    	"os"
    )
    
    func ExampleTextVar() {
    	fs := flag.NewFlagSet("ExampleTextVar", flag.ContinueOnError)
    	fs.SetOutput(os.Stdout)
    	var ip net.IP
    	fs.TextVar(&ip, "ip", net.IPv4(192, 168, 0, 100), "`IP address` to parse")
    	fs.Parse([]string{"-ip", "127.0.0.1"})
    	fmt.Printf("{ip: %v}\n\n", ip)
    
    	// 256 is not a valid IPv4 component
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 10 16:56:17 UTC 2022
    - 847 bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

          const Edge* edge = in_edges[i];
          data_inputs[i] = {edge->src(), edge->src_output()};
          arg_types[i] = EdgeType(edge);
        }
    
        // Appends the variable inputs.
        for (int i = 0; i < num_variables; ++i) {
          int pos = variable_start_index + i;
          const Edge* edge = in_edges[pos];
          data_inputs[pos] = {edge->src(), edge->src_output()};
        }
    
        // Outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/FeatureCheckBuildResult.java

        }
    
        @Override
        public String getOutput() {
            outputFeatureCheck.verify();
            return delegateBuildResult.getOutput();
        }
    
        @Override
        public List<BuildTask> getTasks() {
            return delegateBuildResult.getTasks();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterTest.groovy

    import static org.gradle.tooling.internal.protocol.InternalBuildProgressListener.TEST_EXECUTION
    import static org.gradle.tooling.internal.protocol.InternalBuildProgressListener.TEST_OUTPUT
    import static org.gradle.tooling.internal.protocol.InternalBuildProgressListener.TRANSFORM_EXECUTION
    import static org.gradle.tooling.internal.protocol.InternalBuildProgressListener.WORK_ITEM_EXECUTION
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildProgressListener.java

         */
        String TRANSFORM_EXECUTION = "TRANSFORM_EXECUTION";
    
        /**
         * The constant for the test output of the task execution operations.
         */
        String TEST_OUTPUT = "TEST_OUTPUT";
    
        /**
         * The constant for file download operations.
         */
        String FILE_DOWNLOAD = "FILE_DOWNLOAD";
    
        /**
         * The constant for build phase operations.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top