Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for recursion (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                                                 mlir::Builder builder);
    
      // Convert deferred TF functions to the MLIR representation.
      // Conversion is deferred for efficiency reasons, e.g., to limit depth
      // of recursion and reduce stack size pressure.
      Status ConvertDeferredFunctions();
    
     private:
      // Most types with subtypes have only one subtype.
      using ElementSubtypes = llvm::SmallVector<TensorType, 1>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// name.  This is used by types to implement the inside-out
    	// C++ declaration syntax.
    	inner []AST
    
    	// The printing field is a list of items we are currently
    	// printing.  This avoids endless recursion if a substitution
    	// reference creates a cycle in the graph.
    	printing []AST
    }
    
    // writeByte adds a byte to the string being printed.
    func (ps *printState) writeByte(b byte) {
    	ps.last = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			valid: []string{
    				strings.Repeat("self.val1"+" == ", maxValidDepth-1) + "self.val1",
    			},
    			errors: map[string]string{
    				strings.Repeat("self.val1"+" == ", maxValidDepth) + "self.val1": "max recursion depth exceeded",
    			},
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			tt.costBudget = celconfig.RuntimeCELCostBudget
    			ctx := context.TODO()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    func reusePackage(p *Package, stk *ImportStack) *Package {
    	// We use p.Internal.Imports==nil to detect a package that
    	// is in the midst of its own loadPackage call
    	// (all the recursion below happens before p.Internal.Imports gets set).
    	if p.Internal.Imports == nil {
    		if p.Error == nil {
    			p.Error = &PackageError{
    				ImportStack:   stk.Copy(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    h:yi};function yi(t){void 0===t&&(t=1),Ii(xi.reads),Ii(xi.writes.splice(0,xi.writes.length)),xi.scheduled=!1,(xi.reads.length||xi.writes.length)&&$i(t+1)}var ki=5;function $i(t){if(!xi.scheduled){if(xi.scheduled=!0,ki<t)throw new Error("Maximum recursion limit reached.");t?se.resolve().then(function(){return yi(t)}):requestAnimationFrame(function(){return yi()})}}function Ii(t){for(var e;e=t.shift();)e()}function Si(t,e){var i=t.indexOf(e);return!!~i&&!!t.splice(i,1)}function Ti(){}Ti.prototype=...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		rro, err := resolveRecursiveReadOnly(mount, supportsRRO)
    		if err != nil {
    			return nil, cleanupAction, fmt.Errorf("failed to resolve recursive read-only mode: %w", err)
    		}
    		if rro && !utilfeature.DefaultFeatureGate.Enabled(features.RecursiveReadOnlyMounts) {
    			return nil, cleanupAction, fmt.Errorf("recursive read-only mount needs feature gate %q to be enabled", features.RecursiveReadOnlyMounts)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen.go

    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "BaseOptions")
    						return
    					}
    				}
    			}
    		case "r":
    			z.Recursive, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Recursive")
    				return
    			}
    		case "i":
    			z.Immediate, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Immediate")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    		}
    	}
    }
    
    type Recursive struct {
    	x int
    	r *Recursive
    }
    
    func TestDeepEqualRecursiveStruct(t *testing.T) {
    	a, b := new(Recursive), new(Recursive)
    	*a = Recursive{12, a}
    	*b = Recursive{12, b}
    	if !DeepEqual(a, b) {
    		t.Error("DeepEqual(recursive same) = false, want true")
    	}
    }
    
    type _Complex struct {
    	a int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    		switchToCrashStack0(fn) // should never return
    		abort()
    	}
    	if crashingG.Load() == me {
    		// recursive crashing. too bad.
    		writeErrStr("fatal: recursive switchToCrashStack\n")
    		abort()
    	}
    	// Another g is crashing. Give it some time, hopefully it will finish traceback.
    	usleep_no_g(100)
    	writeErrStr("fatal: concurrent switchToCrashStack\n")
    	abort()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

            }
          } finally {
            unlock();
            postWriteCleanup();
          }
    
          if (createNewEntry) {
            try {
              // Synchronizes on the entry to allow failing fast when a recursive load is
              // detected. This may be circumvented when an entry is copied, but will fail fast most
              // of the time.
              synchronized (e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top