Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 795 for Traverse (0.12 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_context.go

    // a given request has been delegated to an aggregated API
    // server. No-op when priority and fairness is disabled.
    func RequestDelegated(ctx context.Context) {
    	// The watch initialization signal doesn't traverse request
    	// boundaries, so we generously fire it as soon as we know
    	// that the request won't be serviced locally. Safe to call
    	// for non-watch requests.
    	WatchInitialized(ctx)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 14 14:39:15 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. 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)
  5. android/guava/src/com/google/common/graph/Traverser.java

            + " GraphBuilder)")
    @ElementTypesAreNonnullByDefault
    public abstract class Traverser<N> {
      private final SuccessorsFunction<N> successorFunction;
    
      private Traverser(SuccessorsFunction<N> successorFunction) {
        this.successorFunction = checkNotNull(successorFunction);
      }
    
      /**
       * Creates a new traverser for the given general {@code graph}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Traverser.java

            + " GraphBuilder)")
    @ElementTypesAreNonnullByDefault
    public abstract class Traverser<N> {
      private final SuccessorsFunction<N> successorFunction;
    
      private Traverser(SuccessorsFunction<N> successorFunction) {
        this.successorFunction = checkNotNull(successorFunction);
      }
    
      /**
       * Creates a new traverser for the given general {@code graph}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    	Schema common.Schema
    
    	// Array of field names and indexes to traverse to get to the value
    	KeyPath []interface{}
    
    	// Root object to traverse from
    	RootObject    interface{}
    	RootOldObject interface{}
    }
    
    func (c TestCase) Run() error {
    	// Create the correlated object
    	correlatedObject := common.NewCorrelatedObject(c.RootObject, c.RootOldObject, c.Schema)
    
    	// Traverse the correlated object
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.cc

    bool IsConstantOrNone(Operation* op) {
      return (op->getNumResults() == 1 &&
              mlir::isa<NoneType>(op->getResult(0).getType())) ||
             matchPattern(op, m_Constant()) || isa<QConstOp>(op);
    }
    
    // Pre-order traverse, adding results and BlockArgs to `been_defined` and
    // collecting operands not contained within `been_defined`. If we encounter an
    // operand that references a Value that has been defined (and added to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_host_computation_expansion.cc

                                      OpBuilder* builder) {
      Region* cluster_region = &cluster.getBody();
      llvm::SmallSetVector<Operation*, 4> head_outside_compiled_ops;
    
      // Traverse the graph in topological order to find all outside compiled ops
      // at head of TPU computation or unary ops that are only used by other outside
      // compiled ops.
      auto cluster_ops = cluster.GetBody().without_terminator();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/validate.go

    //
    // Analyzer names need not be unique, though this may be confusing.
    func Validate(analyzers []*Analyzer) error {
    	// Map each fact type to its sole generating analyzer.
    	factTypes := make(map[reflect.Type]*Analyzer)
    
    	// Traverse the Requires graph, depth first.
    	const (
    		white = iota
    		grey
    		black
    		finished
    	)
    	color := make(map[*Analyzer]uint8)
    	var visit func(a *Analyzer) error
    	visit = func(a *Analyzer) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top