Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for walkIf (0.3 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    					d.ctxt.Logf("markable method: %v of sym %v %s\n", m, symIdx, d.ldr.SymName(symIdx))
    				}
    			}
    			d.markableMethods = append(d.markableMethods, methods...)
    		}
    	}
    }
    
    // mapinitcleanup walks all pkg init functions and looks for weak relocations
    // to mapinit symbols that are no longer reachable. It rewrites
    // the relocs to target a new no-op routine in the runtime.
    func (d *deadcodePass) mapinitcleanup() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. cmd/batch-expire.go

    	if err != nil {
    		// invalid worker size.
    		return err
    	}
    
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    
    	results := make(chan itemOrErr[ObjectInfo], workerSize)
    	if err := api.Walk(ctx, r.Bucket, r.Prefix, results, WalkOptions{
    		Marker:       lastObject,
    		LatestOnly:   false, // we need to visit all versions of the object to implement purge: retainVersions
    		VersionsSort: WalkVersionsSortDesc,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. cmd/iam-object-store.go

    	ch := make(chan itemOrErr[string])
    
    	go func() {
    		defer xioutil.SafeClose(ch)
    
    		// Allocate new results channel to receive ObjectInfo.
    		objInfoCh := make(chan itemOrErr[ObjectInfo])
    
    		if err := objAPI.Walk(ctx, minioMetaBucket, pathPrefix, objInfoCh, WalkOptions{}); err != nil {
    			select {
    			case ch <- itemOrErr[string]{Err: err}:
    			case <-ctx.Done():
    			}
    			return
    		}
    
    		for obj := range objInfoCh {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kubelet/app/server.go

    	const dropinFileExtension = ".conf"
    	baseKubeletConfigJSON, err := json.Marshal(kubeletConfig)
    	if err != nil {
    		return fmt.Errorf("failed to marshal base config: %w", err)
    	}
    	// Walk through the drop-in directory and update the configuration for each file
    	if err := filepath.WalkDir(kubeletDropInConfigDir, func(path string, info fs.DirEntry, err error) error {
    		if err != nil {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/rewrite.go

    // dominated by all of a's blocks. Returns nil if it can't find one.
    // Might return nil even if one does exist.
    func mergePoint(b *Block, a ...*Value) *Block {
    	// Walk backward from b looking for one of the a's blocks.
    
    	// Max distance
    	d := 100
    
    	for d > 0 {
    		for _, x := range a {
    			if b == x.Block {
    				goto found
    			}
    		}
    		if len(b.Preds) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. 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)
  10. configure.py

      makefile_download_dir = os.path.join(_TF_WORKSPACE_ROOT, 'tensorflow',
                                           'contrib', 'makefile', 'downloads')
      if os.path.isdir(makefile_download_dir):
        for root, _, filenames in os.walk(makefile_download_dir):
          for f in filenames:
            if f.endswith('BUILD'):
              os.remove(os.path.join(root, f))
    
    
    def get_var(environ_cp,
                var_name,
                query_item,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top