Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 198 for Traverser (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

          if (symref.getValue() != func.getName()) continue;
          op->setAttr(attr.getName(),
                      FlatSymbolRefAttr::get(op->getContext(), cloned.getName()));
          break;
        }
      }
    
      // Traverse results backward so that indices to be deleted stay unchanged.
      for (OpResult result : llvm::reverse(op->getResults())) {
        if (!result.use_empty()) continue;
        int result_idx = result.getResultNumber();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. test/initexp.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // The init cycle diagnosis used to take exponential time
    // to traverse the call graph paths. This test case takes
    // at least two minutes on a modern laptop with the bug
    // and runs in a fraction of a second without it.
    // 10 seconds (-t 10 above) should be plenty if the code is working.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/SnapshotTransformInputsBuildOperationType.java

             * No null keys or values.
             * Never empty.
             */
            @Nullable
            Map<String, byte[]> getInputValueHashesBytes();
    
            /**
             * Traverses the input properties that are file types (e.g. File, FileCollection, FileTree, List of File).
             * <p>
             * If there are no input file properties, visitor will not be called at all.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * <p>
         * Execute access grant the capability to run a file as a program; executing a directory
         * doesn't really make sense, it's more like a traverse permission; for example, a user
         * must have 'execute' access to the 'bin' directory in order to execute the 'ls' or 'cd' commands.
         */
        void setExecute(boolean execute);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecInternal.java

         * Listener triggered when a spec is added to the hierarchy.
         */
        interface CopySpecListener {
            void childSpecAdded(CopySpecAddress path, CopySpecInternal spec);
        }
    
        /**
         * A visitor to traverse the spec hierarchy.
         */
        interface CopySpecVisitor {
            void visit(CopySpecAddress address, CopySpecInternal spec);
        }
    
        /**
         * The address of a spec relative to its parent.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/go/ast/walk.go

    	for _, node := range list {
    		Walk(v, node)
    	}
    }
    
    // TODO(gri): Investigate if providing a closure to Walk leads to
    // simpler use (and may help eliminate Inspect in turn).
    
    // Walk traverses an AST in depth-first order: It starts by calling
    // v.Visit(node); node must not be nil. If the visitor w returned by
    // v.Visit(node) is not nil, Walk is invoked recursively with visitor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForIsolatedProjects
    
    class TaskSelectionIntegrationTest extends AbstractIntegrationSpec {
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "given an unqualified name traverse project tree from current project and select all tasks with matching name"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

        /**
         * The repository where this artifact has been downloaded from.
         */
        @Nonnull
        Optional<RemoteRepository> getRepository();
    
        /**
         * Traverses this node and potentially its children using the specified visitor.
         *
         * @param visitor the visitor to call back, must not be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

    import java.util.List;
    import java.util.Set;
    
    public interface ModelNode {
    
        boolean hasLink(String name);
    
        boolean hasLink(String name, ModelType<?> type);
    
        // Note: order is crucial here. Nodes are traversed through these states in the order defined below
        enum State {
            Registered(true), // Initial state. Only path and some projections are known here
            Discovered(true), // All projections are defined
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadpe/seh.go

    		// TODO: support SEH on other architectures.
    		return fmt.Errorf("unsupported architecture for SEH: %v", arch.Family)
    	}
    }
    
    func processSEHAMD64(ldr *loader.Loader, pdata sym.LoaderSym) error {
    	// The following loop traverses a list of pdata entries,
    	// each entry being 3 relocations long. The first relocation
    	// is a pointer to the function symbol to which the pdata entry
    	// corresponds. The third relocation is a pointer to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 16:20:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top