Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for deeper (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

        /* Colors for navigation bar and table captions */
        --navbar-background-color: #4D7A97;
        --navbar-text-color: #ffffff;
        /* Background color for subnavigation and various headers */
        --subnav-background-color: #dee3e9;
        /* Background and text colors for selected tabs and navigation items */
        --selected-background-color: #f8981d;
        --selected-text-color: #253441;
        --selected-link-color: #1f389c;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    					ld.error(fmt.Errorf("%s: %w", pkg.stackText(), err.Err))
    					break
    				}
    			}
    			ld.error(err)
    			break
    		}
    		if slices.Equal(rs.rootModules, ld.requirements.rootModules) {
    			// Something is deeply wrong. resolveMissingImports gave us a non-empty
    			// set of modules to add to the graph, but adding those modules had no
    			// effect — either they were already in the graph, or updateRoots did not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Jitter to help level out any aggregate load.
    	bookmarkTimer := c.clock.NewTimer(wait.Jitter(time.Second, 0.25))
    	defer bookmarkTimer.Stop()
    
    	// The internal informer populates the RV as soon as it conducts
    	// The first successful sync with the underlying store.
    	// The cache must wait until this first sync is completed to be deemed ready.
    	// Since we cannot send a bookmark when the lastProcessedResourceVersion is 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top