Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for deeper (0.42 sec)

  1. src/index/suffixarray/sais2.go

    	// (from text_64), and saTmp will typically be much larger, so we'll use saTmp.
    	// When deeper recursions come back to recurse_64, now oldTmp is
    	// the saTmp from the top-most recursion, it is typically larger than
    	// the current saTmp (because the current sa gets smaller and smaller
    	// as the recursion gets deeper), and we keep reusing that top-most
    	// large saTmp instead of the offered smaller ones.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // not been stored to yet.
      llvm::SmallDenseMap<Value, TF::AssignVariableOp>
          resource_handle_to_last_store_op;
    
      // Only iterate through ops directly in the block as we can't handle ops
      // nested deeper in regions.
      for (Operation& op : llvm::make_early_inc_range(*block)) {
        if (auto read_variable_op = dyn_cast<TF::ReadVariableOp>(&op)) {
          Value resource = read_variable_op.getResource();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	var resource, subresource string
    	switch parts := strings.Split(path, "/"); len(parts) {
    	case 2:
    		resource, subresource = parts[0], parts[1]
    	case 1:
    		resource = parts[0]
    	default:
    		// TODO: support deeper paths
    		return "", "", fmt.Errorf("api_installer allows only one or two segment paths (resource or resource/subresource)")
    	}
    	return resource, subresource, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    			// strictly necessary, as we are using "function has a defer statement"
    			// as a proxy for "function actually deferred something". It seems
    			// to be a minor drawback. (We used to actually look through the
    			// gp._defer for a defer corresponding to this function, but that
    			// is hard to do with defer records on the stack during a stack copy.)
    			// Note: the +1 is to offset the -1 that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    				}
    
    			}
    		}
    
    		// If any schema related validation errors have been found at this level or deeper, skip CEL expression validation.
    		// Invalid OpenAPISchemas are not always possible to convert into valid CEL DeclTypes, and can lead to CEL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	// dependencies, we prefer to add roots for packages with shorter import
    	// stacks first, on the theory that the module requirements for those will
    	// tend to fill in the requirements for their transitive imports (which have
    	// deeper import stacks). So we add the missing dependencies for one depth at
    	// a time, starting with the packages actually in "all" and expanding outwards
    	// until we have scanned every package that was loaded.
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	// Don't merge if we still need the value of x.
    	// We don't have liveness information here, but we can
    	// approximate x dying with:
    	//  1) target is x's only use.
    	//  2) target is not in a deeper loop than x.
    	if x.Uses != 1 {
    		return false
    	}
    	loopnest := x.Block.Func.loopnest()
    	loopnest.calculateDepths()
    	if loopnest.depth(target.Block.ID) > loopnest.depth(x.Block.ID) {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    	f := s.f
    	s.live = make([][]liveInfo, f.NumBlocks())
    	s.desired = make([]desiredState, f.NumBlocks())
    	var phis []*Value
    
    	live := f.newSparseMapPos(f.NumValues())
    	defer f.retSparseMapPos(live)
    	t := f.newSparseMapPos(f.NumValues())
    	defer f.retSparseMapPos(t)
    
    	// Keep track of which value we want in each register.
    	var desired desiredState
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	deleter, err := plugin.NewDeleter(logger, spec)
    	if err != nil {
    		// Cannot create deleter
    		return pluginName, false, fmt.Errorf("failed to create deleter for volume %q: %w", volume.Name, err)
    	}
    
    	opComplete := util.OperationCompleteHook(pluginName, "volume_delete")
    	err = deleter.Delete()
    	opComplete(volumetypes.CompleteFuncParam{Err: &err})
    	if err != nil {
    		// Deleter failed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/copy-with-deep-filter-example.png

    copy-with-deep-filter-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:19:30 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top