Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for walkIf (0.12 sec)

  1. src/cmd/go/internal/load/pkg.go

    	seen := map[*Package]bool{}
    	all := []*Package{}
    	var walk func(*Package)
    	walk = func(p *Package) {
    		if seen[p] {
    			return
    		}
    		seen[p] = true
    		for _, p1 := range p.Internal.Imports {
    			walk(p1)
    		}
    		all = append(all, p)
    	}
    	for _, root := range roots {
    		walk(root)
    	}
    	return all
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">= 8"
          }
        },
        "node_modules/@nodelib/fs.walk": {
          "version": "1.2.8",
          "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
          "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
          "dev": true,
          "dependencies": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	}
    	// mark resync status as resync started
    	if !heal {
    		s.markStatus(ResyncStarted, opts, objectAPI)
    	}
    
    	// Walk through all object versions - Walk() is always in ascending order needed to ensure
    	// delete marker replicated to target after object version is first created.
    	if err := objectAPI.Walk(ctx, opts.bucket, "", objInfoCh, WalkOptions{}); err != nil {
    		replLogIf(ctx, err)
    		return
    	}
    
    	s.RLock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    func actionList(root *Action) []*Action {
    	seen := map[*Action]bool{}
    	all := []*Action{}
    	var walk func(*Action)
    	walk = func(a *Action) {
    		if seen[a] {
    			return
    		}
    		seen[a] = true
    		for _, a1 := range a.Deps {
    			walk(a1)
    		}
    		all = append(all, a)
    	}
    	walk(root)
    	return all
    }
    
    // Do runs the action graph rooted at root.
    func (b *Builder) Do(ctx context.Context, root *Action) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	if outer != 0 {
    		off += ldr.SymValue(s) - ldr.SymValue(outer)
    		s = outer
    	}
    	return s, off
    }
    
    // relocsym resolve relocations in "s", updating the symbol's content
    // in "P".
    // The main loop walks through the list of relocations attached to "s"
    // and resolves them where applicable. Relocations are often
    // architecture-specific, requiring calls into the 'archreloc' and/or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (attrs && !attrs.empty()) {
          entry_functions.push_back(main_fn);
        } else {
          non_entry_functions.push_back(main_fn);
        }
      }
    
      // Walk over the module collection ops with functions and while ops.
      module_.walk([&](FuncOp fn) {
        if (main_fn == fn) return WalkResult::advance();
        auto attrs = fn->getAttrOfType<mlir::DictionaryAttr>("tf.entry_function");
        if (attrs && !attrs.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          op.getShapeInferenceGraphAttr().getRootReference());
    
      if (func == nullptr) return false;
    
      std::vector<_XlaRecvAtHostOp> xla_recv_at_host_ops;
      func.walk([&](_XlaRecvAtHostOp op) { xla_recv_at_host_ops.push_back(op); });
      if (xla_recv_at_host_ops.empty()) return false;
      auto xla_recv_at_host_op = xla_recv_at_host_ops.front();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
      }];
    
      let constructor = "CreateExecutorDialectToFunctionalConversionPass()";
    }
    
    def ExecutorIslandCoarseningPass : Pass<"tf-executor-island-coarsening", "mlir::func::FuncOp"> {
      let summary = "Walks tf_executor::GraphOp and merges individual tf_executor::IslandOps.";
      let description = [{
        This pass performs whole graph analysis for a graph encapsulated into tf_executor::GraphOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

              rewriter.getI64ArrayAttr(kstrides), rewriter.getStringAttr(padding),
              rewriter.getStringAttr(data_format));
          return success();
        }
        return failure();
      }
    
      // Walks up the op and ignore all precedding ops of type Tys.
      // Returns the first producer op whose type is not in Tys.
      template <typename... Tys>
      Value recursivelyWalkUp(Value op) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    addConfigurationReso(ConfigurationResourc); public org.codehaus.plexus.configuration.PlexusConfiguration process(org.codehaus.plexus.configuration.PlexusConfiguration, java.util.Map) throws ConfigurationResourc, ConfigurationProcess; protected void walk(org.codehaus.plexus.configuration.PlexusConfiguration, org.codehaus.plexus.configuration.PlexusConfiguration, java.util.Map) throws ConfigurationResourc, ConfigurationProcess; protected java.util.Map createHandlerParamet(org.codehaus.plexus.config...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
Back to top