Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 305 for traverser (1.06 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    // (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
    //      (d1, d0). If the 2-D matrix has a 2-D inner block, the traversal order
    //      could be (d0, d1, d2, d3).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryFileTree.java

    import java.io.File;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicBoolean;
    
    /**
     * Directory walker supporting {@link Spec}s for includes and excludes.
     * The file system is traversed in depth-first prefix order - all files in a directory will be
     * visited before any child directory is visited.
     *
     * A file or directory will only be visited if it matches all includes and no
     * excludes.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		if wantParens {
    			ps.endScope(')')
    		}
    	} else {
    		parenthesize(ps, t.Third)
    	}
    }
    
    func (t *Trinary) Traverse(fn func(AST) bool) {
    	if fn(t) {
    		t.Op.Traverse(fn)
    		t.First.Traverse(fn)
    		t.Second.Traverse(fn)
    		t.Third.Traverse(fn)
    	}
    }
    
    func (t *Trinary) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(t) {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    		}
    		return &cost
    	case "url", "lowerAscii", "upperAscii", "substring", "trim":
    		if len(args) >= 1 {
    			cost := uint64(math.Ceil(float64(actualSize(args[0])) * common.StringTraversalCostFactor))
    			return &cost
    		}
    	case "replace", "split":
    		if len(args) >= 1 {
    			// cost is the traversal plus the construction of the result
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

            this.remoteRepositories = remoteRepositories;
    
            return this;
        }
    
        /**
         * Gets the artifact filter that controls traversal of the dependency graph.
         *
         * @return The filter used to determine which of the artifacts in the dependency graph should be traversed or
         *         {@code null} to collect all transitive dependencies.
         */
        public ArtifactFilter getCollectionFilter() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // (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
    //      (d1, d0). If the 2-D matrix has a 2-D inner block, the traversal order
    //      could be (d0, d1, d2, d3).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	}
    
    	// Fast check to see if we know of a destination edge
    	if r.graph.destinationEdgeIndex[startingVertex.ID()].has(nodeVertex.ID()) {
    		return true, nil
    	}
    
    	found := false
    	traversal := &traverse.VisitingDepthFirst{
    		EdgeFilter: func(edge graph.Edge) bool {
    			if destinationEdge, ok := edge.(*destinationEdge); ok {
    				if destinationEdge.DestinationID() != nodeVertex.ID() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ConfigurationResolver.java

    import java.util.List;
    
    public interface ConfigurationResolver {
    
        /**
         * Traverses enough of the graph to calculate the build dependencies of the given resolve context. All failures are packaged in the result.
         */
        ResolverResults resolveBuildDependencies(ResolveContext configuration);
    
        /**
         * Traverses the full dependency graph of the given resolve context. All failures are packaged in the result.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 16:25:01 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/FluentIterable.java

        return checkNotNull(iterable);
      }
    
      /**
       * Returns a fluent iterable that combines two iterables. The returned iterable has an iterator
       * that traverses the elements in {@code a}, followed by the elements in {@code b}. The source
       * iterators are not polled until necessary.
       *
       * <p>The returned iterable's iterator supports {@code remove()} when the corresponding input
    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

        return checkNotNull(iterable);
      }
    
      /**
       * Returns a fluent iterable that combines two iterables. The returned iterable has an iterator
       * that traverses the elements in {@code a}, followed by the elements in {@code b}. The source
       * iterators are not polled until necessary.
       *
       * <p>The returned iterable's iterator supports {@code remove()} when the corresponding input
    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