Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for unwrapping (0.22 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // ExtractControlEdges.
      std::optional<BufferOffset<tflite::SubGraph>> BuildSubGraph(
          const std::string& name, Region* region, int index);
    
      // Modifies *block by unwrapping all ControlNodeOps. The DAG of the control
      // dependencies is returned as a vector of its edges, with node indices into
      // *block.
      std::vector<std::pair<int, int>> ExtractControlEdges(mlir::Block* block);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *       ClosingFuture} call {@link #from(ListenableFuture)}.
       *   <li>In case this step doesn't create new closeables, you can adapt an API that returns a
       *       {@link ListenableFuture} to return a {@code ClosingFuture} by wrapping it with a call to
       *       {@link #withoutCloser(AsyncFunction)}
       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *       ClosingFuture} call {@link #from(ListenableFuture)}.
       *   <li>In case this step doesn't create new closeables, you can adapt an API that returns a
       *       {@link ListenableFuture} to return a {@code ClosingFuture} by wrapping it with a call to
       *       {@link #withoutCloser(AsyncFunction)}
       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	p.Pos = pos.String()
    }
    
    // ImportPathError is a type of error that prevents a package from being loaded
    // for a given import path. When such a package is loaded, a *Package is
    // returned with Err wrapping an ImportPathError: the error is attached to
    // the imported package, not the importing package.
    //
    // The string returned by ImportPath must appear in the string returned by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    			cb := NewClusterBuilder(proxy, &model.PushRequest{Push: cg.PushContext()}, nil)
    
    			tt.cluster.CommonLbConfig = &cluster.Cluster_CommonLbConfig{}
    
    			ec := newClusterWrapper(tt.cluster)
    			// Set cluster wrapping with HTTP2 options if port protocol is HTTP2
    			if tt.port.Protocol == protocol.HTTP2 {
    				setH2Options(ec)
    			}
    			destRule := proxy.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, proxy, tt.service.Hostname)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass is intended to run after the split_into_island_per_op
        pass. That pass splits up multi-op islands into multiple individual islands
        wrapping a single op without applying any control deps between the new
        islands. So, this pass is needed in order to make preservation of the
        semantic ordering relationships between ops as determined by side effect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	men := uint32(32 - bits.TrailingZeros32(^mask))
    	// Check for a wrapping mask (e.g bits at 0 and 31)
    	if mb == 0 && me == 32 {
    		// swap the inverted values
    		mb, me = men, mbn
    	}
    
    	// Validate mask is of the binary form 1+0*1+ or 0*1+0*
    	// Isolate rightmost 1 (if none 0) and add.
    	v := mask
    	vp := (v & -v) + v
    	// Likewise, check for the wrapping (inverted) case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	}
    	err := r.rows.Scan(dest...)
    	if err != nil {
    		return err
    	}
    	// Make sure the query can be processed to completion with no errors.
    	return r.rows.Close()
    }
    
    // Err provides a way for wrapping packages to check for
    // query errors without calling [Row.Scan].
    // Err returns the error, if any, that was encountered while running the query.
    // If this error is not nil, this error will also be returned from [Row.Scan].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          } else {
            DCOMMENT("-> not refining shape element #" << shape_elts.index());
            shape.push_back(std::get<0>(shape_elts.value()));
          }
        }
      }
    
      // Some tensor have an element type wrapping a subtensor, like resource and
      // variants. In this case we may recurse on the wrapped subtype.
      // `element_type` will contain the refined inferred element type for the
      // returned type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	// https://github.com/golang/go/issues/52690
    	if b.gccSupportsFlag(compiler, "-Wl,--no-gc-sections") {
    		a = append(a, "-Wl,--no-gc-sections")
    	}
    
    	// disable word wrapping in error messages
    	a = append(a, "-fmessage-length=0")
    
    	// Tell gcc not to include the work directory in object files.
    	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		if workdir == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top