Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for go_functions (0.3 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      std::vector<string> encapsulated_functions;
      return Encapsulate(graphdef, library, encapsulated_functions);
    }
    
    // If there are no marked nodes, funcification should be a no-op.
    TEST(EncapsulateSubgraphsTest, NoFunctions) {
      GraphDefBuilder builder(GraphDefBuilder::kFailImmediately);
    
      Node* a = Input(builder.opts().WithName("A"));
      Node* b = Input(builder.opts().WithName("B"));
      Node* c = Unary(a, builder.opts().WithName("C"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    // f returns 42
    func f() (result int) {
    	defer func() {
    		// result is accessed after it was set to 6 by the return statement
    		result *= 7
    	}()
    	return 6
    }
    </pre>
    
    <h2 id="Built-in_functions">Built-in functions</h2>
    
    <p>
    Built-in functions are
    <a href="#Predeclared_identifiers">predeclared</a>.
    They are called like any other function but some of them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    // f returns 42
    func f() (result int) {
    	defer func() {
    		// result is accessed after it was set to 6 by the return statement
    		result *= 7
    	}()
    	return 6
    }
    </pre>
    
    <h2 id="Built-in_functions">Built-in functions</h2>
    
    <p>
    Built-in functions are
    <a href="#Predeclared_identifiers">predeclared</a>.
    They are called like any other function but some of them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    .observe(Polymer.Async._twiddle,{characterData:true});Polymer.Debounce=function(){var Async=Polymer.Async;var Debouncer=function(context){this.context=context;var self=this;this.boundComplete=function(){self.complete();};};Debouncer.prototype={go:function(callback,wait){var h;this.finish=function(){Async.cancel(h);};h=Async.run(this.boundComplete,wait);this.callback=callback;},stop:function(){if(this.finish){this.finish();this.finish=null;this.callback=null;}},complete:function(){if(this.finish){var...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top