Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 795 for Traverse (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

         */
        public void onMoreSelected(NodeState node) {
            // Add to the end of the queue, so that we traverse the graph in breadth-wise order to pick up as many conflicts as
            // possible before attempting to resolve them
            if (node.enqueue()) {
                queue.addLast(node);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

              << "Operand idx (zero-based): " << curr_operand->getOperandNumber()
              << " does not have a defining op and cannot be duplicated.";
        } else {
          // If the operand's defining is not a ConstOp, recursively traverse
          // "upwards" to find ConstOps that transitively produces the current
          // operand and duplicate them.
          auto op_operands = defining_op->getOpOperands();
          absl::c_transform(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/objfile.go

    		}
    	}
    }
    
    // Emits flags of referenced indexed symbols.
    func (w *writer) refFlags() {
    	seen := make(map[*LSym]bool)
    	w.ctxt.traverseSyms(traverseRefs, func(rs *LSym) { // only traverse refs, not auxs, as tools don't need auxs
    		switch rs.PkgIdx {
    		case goobj.PkgIdxNone, goobj.PkgIdxHashed64, goobj.PkgIdxHashed, goobj.PkgIdxBuiltin, goobj.PkgIdxSelf: // not an external indexed reference
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    // in atomic 'pop' operations, reducing the benefit of the stack archetype.
    func (p *bracketPairer) locateBrackets(pairTypes []bracketType, pairValues []rune) {
    	// traverse the run
    	// do that explicitly (not in a for-each) so we can record position
    	for i, index := range p.indexes {
    
    		// look at the bracket type for each character
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    				if obj := pass.TypesInfo.ObjectOf(id); obj != nil {
    					vars = append(vars, obj)
    				}
    			}
    		}
    		var body *ast.BlockStmt
    		switch n := n.(type) {
    		case *ast.File:
    			// Only traverse the file if its goversion is strictly before go1.22.
    			goversion := versions.FileVersion(pass.TypesInfo, n)
    			return versions.Before(goversion, versions.Go1_22)
    		case *ast.RangeStmt:
    			body = n.Body
    			addVar(n.Key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    //
    // To encode a conceptual n-dimensional dense tensor with dims (d0, ..., dn-1),
    // potentially with a k-dimensional block (0 <= k <= n) with dims
    // (dn, ..., dn+k-1), the format needs to specify:
    //   1. In what order to traverse these dimensions. For example, to store a 2-D
    //      matrix in row major order, the traversal order would be (d0, d1),
    //      whereas to store it in column major order, the traversal order would be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/nilcheck.go

    	// i.e. struct fields and array elements, even with non-constant
    	// indices: x is non-nil iff x.a.b[i].c is.
    
    	type walkState int
    	const (
    		Work     walkState = iota // process nil checks and traverse to dominees
    		ClearPtr                  // forget the fact that ptr is nil
    	)
    
    	type bp struct {
    		block *Block // block, or nil in ClearPtr state
    		ptr   *Value // if non-nil, ptr that is to be cleared in ClearPtr state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. kotlin-js-store/yarn.lock

      integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
    
    json-schema-traverse@^0.4.1:
      version "0.4.1"
      resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
      integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/FluentIterable.java

       */
      public final FluentIterable<E> cycle() {
        return from(Iterables.cycle(getDelegate()));
      }
    
      /**
       * Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable,
       * followed by those of {@code other}. The iterators are not polled until necessary.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/FluentIterable.java

       */
      public final FluentIterable<E> cycle() {
        return from(Iterables.cycle(getDelegate()));
      }
    
      /**
       * Returns a fluent iterable whose iterators traverse first the elements of this fluent iterable,
       * followed by those of {@code other}. The iterators are not polled until necessary.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top