Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,412 for returns_ (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      absl::flat_hash_map<Operation*, Node*> nodes_;
      llvm::DenseMap<BlockArgument, Node*> args_;
      // One single return operation can return multiple results, and each of them
      // will be converted to one node in the graph.
      typedef absl::InlinedVector<Node*, 4> NodeVector;
      absl::flat_hash_map<Operation*, NodeVector> returns_;
      const mlir::Dialect* tf_dialect_;
      const SymbolTable& symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      absl::flat_hash_map<Operation*, Node*> nodes_;
      llvm::DenseMap<BlockArgument, Node*> args_;
      // One single return operation can return multiple results, and each of them
      // will be converted to one node in the graph.
      typedef absl::InlinedVector<Node*, 4> NodeVector;
      absl::flat_hash_map<Operation*, NodeVector> returns_;
      const mlir::Dialect* tf_dialect_;
      const SymbolTable& symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    // %output#0 corresponds to %k returned from "/DEVICE:0"
    // %output#1 corresponds to %k returned from "/DEVICE:1"
    // %output#2 corresponds to %l returned from "/DEVICE:2"
    // %output#3 corresponds to %l returned from "/DEVICE:3"
    // %output#4, %output#5 corresponds to %m and will be returned from "/DEVICE:4"
    // %output#6, %output#7 corresponds to %n and will have no device set
    ```
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Ordering.java

        return new CompoundOrdering<>(this, checkNotNull(secondaryComparator));
      }
    
      /**
       * Returns an ordering which tries each given comparator in order until a non-zero result is
       * found, returning that result, and returning zero only if all comparators return zero. The
       * returned ordering is based on the state of the {@code comparators} iterable at the time it was
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterables.java

          Iterable<T> removeFrom, Predicate<? super T> predicate) {
        if (removeFrom instanceof Collection) {
          return ((Collection<T>) removeFrom).removeIf(predicate);
        }
        return Iterators.removeIf(removeFrom.iterator(), predicate);
      }
    
      /** Removes and returns the first matching element, or returns {@code null} if there is none. */
      @CheckForNull
      static <T extends @Nullable Object> T removeFirstMatching(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/language.go

    func (r Region) IsGroup() bool {
    	return r.regionID.IsGroup()
    }
    
    // Contains returns whether Region c is contained by Region r. It returns true
    // if c == r.
    func (r Region) Contains(c Region) bool {
    	return r.regionID.Contains(c.regionID)
    }
    
    // TLD returns the country code top-level domain (ccTLD). UK is returned for GB.
    // In all other cases it returns either the region itself or an error.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/RangeSet.java

      // Views
    
      /**
       * Returns a view of the {@linkplain Range#isConnected disconnected} ranges that make up this
       * range set. The returned set may be empty. The iterators returned by its {@link
       * Iterable#iterator} method return the ranges in increasing order of lower bound (equivalently,
       * of upper bound).
       */
      Set<Range<C>> asRanges();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/path/filepath/path.go

    	// Therefore, if one of err and err1 isn't nil, walk will return.
    	if err != nil || err1 != nil {
    		// The caller's behavior is controlled by the return value, which is decided
    		// by walkFn. walkFn may ignore err and return nil.
    		// If walkFn returns SkipDir or SkipAll, it will be handled by the caller.
    		// So walk should return whatever walkFn returns.
    		return err1
    	}
    
    	for _, name := range names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/database/sql/driver/driver.go

    	// do not block indefinitely (e.g. apply a timeout).
    	Close() error
    
    	// NumInput returns the number of placeholder parameters.
    	//
    	// If NumInput returns >= 0, the sql package will sanity check
    	// argument counts from callers and return errors to the caller
    	// before the statement's Exec or Query methods are called.
    	//
    	// NumInput may also return -1, if the driver doesn't know
    	// its number of placeholders. In that case, the sql package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Suppliers.java

          return Objects.hashCode(function, supplier);
        }
    
        @Override
        public String toString() {
          return "Suppliers.compose(" + function + ", " + supplier + ")";
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns a supplier which caches the instance retrieved during the first call to {@code get()}
       * and returns that value on subsequent calls to {@code get()}. See: <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top