Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for runActions (0.32 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

         . Dead functions have already been removed, as resource arguments in dead
           functions can cause the pass to fail.
      }];
    
      let constructor = "TF::CreatePromoteResourcesToArgsPass()";
    
    let options = [
        ListOption<"functions_", "functions", "std::string",
                   "Comma separated list of functions whose resources "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                              int64_t max_iterations);
    
      // Updates input types and refine shapes inside body of functions that are
      // attached to ControlFlow ops (If/While) or Calls. These functions include
      // Then/Else branches of IfOp and Cond/Body functions of WhileOp. Functions
      // attached to control flow share following common properties:
      //   1) They are never reused, ie. having a single use in module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<BufferOffset<tflite::SignatureDef>> signature_defs_buffer;
      // When we export each function in the module op, intentionally, we export
      // the entry functions at the beginning of the subgraph list and the
      // subgraph_index is the index in entry functions and at the same, is the
      // index in the subgraph list.
      int subgraph_index = 0;
      for (const auto& signature_def_data : signature_defs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/reflect/value.go

    // Note: some of the noescape annotations below are technically a lie,
    // but safe in the context of this package. Functions like chansend0
    // and mapassign0 don't escape the referent, but may escape anything
    // the referent points to (they do shallow copies of the referent).
    // We add a 0 to their names and wrap them in functions with the
    // proper escape behavior.
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // 'Go test' recompiles each package along with any files with names matching
    // the file pattern "*_test.go".
    // These additional files can contain test functions, benchmark functions, fuzz
    // tests and example functions. See 'go help testfunc' for more.
    // Each listed package causes the execution of a separate test binary.
    // Files whose names begin with "_" (including "_test.go") or "." are ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    // the thread will be terminated.
    //
    // All init functions are run on the startup thread. Calling LockOSThread
    // from an init function will cause the main function to be invoked on
    // that thread.
    //
    // A goroutine should call LockOSThread before calling OS services or
    // non-Go library functions that depend on per-thread state.
    //
    //go:nosplit
    func LockOSThread() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		costBudget    int64
    		isRoot        bool
    		expectSkipped bool
    		expectedCost  int64
    	}{
    		// tests where val1 and val2 are equal but val3 is different
    		// equality, comparisons and type specific functions
    		{name: "integers",
    			// 1st obj and schema args are for "self.val1" field, 2nd for "self.val2" and so on.
    			obj:    objs(math.MaxInt64, math.MaxInt64, math.MaxInt32, math.MaxInt32, math.MaxInt64, math.MaxInt64),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    // The main loop walks through the list of relocations attached to "s"
    // and resolves them where applicable. Relocations are often
    // architecture-specific, requiring calls into the 'archreloc' and/or
    // 'archrelocvariant' functions for the architecture. When external
    // linking is in effect, it may not be  possible to completely resolve
    // the address/offset for a symbol, in which case the goal is to lay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  9. src/net/http/server.go

    	case *body:
    		return v.bodyRemains()
    	default:
    		panic("unexpected type " + fmt.Sprintf("%T", rc))
    	}
    }
    
    // The HandlerFunc type is an adapter to allow the use of
    // ordinary functions as HTTP handlers. If f is a function
    // with the appropriate signature, HandlerFunc(f) is a
    // [Handler] that calls f.
    type HandlerFunc func(ResponseWriter, *Request)
    
    // ServeHTTP calls f(w, r).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

       *
       * <p>To use a plain {@link Map} as a {@link Function}, see {@link
       * com.google.common.base.Functions#forMap(Map)} or {@link
       * com.google.common.base.Functions#forMap(Map, Object)}.
       *
       * @since 16.0
       */
      public static <A, B> Converter<A, B> asConverter(final BiMap<A, B> bimap) {
        return new BiMapConverter<>(bimap);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top