Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 522 for recursion (0.28 sec)

  1. guava-testlib/src/com/google/common/collect/testing/testers/ListSubListTester.java

        return getMethod(ListSubListTester.class, "testSubList_subListRemoveAffectsOriginalLargeList");
      }
    
      /*
       * TODO: perform all List tests on subList(), but beware infinite recursion
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

                [{ it.contentRoots }, { a, e -> checkContentRoot(a, e) }],
                [{ it.gradleProject }, { a, e -> checkGradleProject(a, e) }],
                { it.project.languageLevel.level }, // shallow check to avoid infinite recursion
                { it.compilerOutput.inheritOutputDirs },
                { it.compilerOutput.outputDir },
                { it.compilerOutput.testOutputDir },
                [{ it.dependencies }, { a, e -> checkDependency(a, e) }],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    	return info.Types[arg].Type
    }
    
    // typeOKForCgoCall reports whether the type of arg is OK to pass to a
    // C function using cgo. This is not true for Go types with embedded
    // pointers. m is used to avoid infinite recursion on recursive types.
    func typeOKForCgoCall(t types.Type, m map[types.Type]bool) bool {
    	if t == nil || m[t] {
    		return true
    	}
    	m[t] = true
    	switch t := t.Underlying().(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

                     << ", operand idx: " << curr_operand->getOperandNumber()
                     << ", loc: " << const_op_cloned->getLoc() << "\n");
        } else if (IsOutputCompileTimeConstantOrBounded(defining_op)) {
          // Stop the recursion early when the output of the defining op is
          // considered compile-time constant from the XLA compiler's perspective.
          continue;
        } else if (!defining_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/encoding/xml/read.go

    		case StartElement:
    			consumed := false
    			if sv.IsValid() {
    				// unmarshalPath can call unmarshal, so we need to pass the depth through so that
    				// we can continue to enforce the maximum recursion limit.
    				consumed, err = d.unmarshalPath(tinfo, sv, nil, &t, depth)
    				if err != nil {
    					return err
    				}
    				if !consumed && saveAny.IsValid() {
    					consumed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

         * climbing up the syntax tree, passing control back and forth between the
         * two.
         *
         * Whether an expression is used is defined by the context in which it
         * appears. E.g. a "statement" in a block is considered used if it is the
         * last expression in that block AND the block itself is used -- a
         * recursive call to `isUsed`, one level higher in the syntax tree.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/runtime/debug/garbage.go

    // There may be a system-imposed maximum stack limit regardless
    // of the value provided to SetMaxStack.
    //
    // SetMaxStack is useful mainly for limiting the damage done by
    // goroutines that enter an infinite recursion. It only limits future
    // stack growth.
    func SetMaxStack(bytes int) int {
    	return setMaxStack(bytes)
    }
    
    // SetMaxThreads sets the maximum number of operating system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/stackcheck.go

    }
    
    func (sc *stackCheck) report(sym loader.Sym, depth int, chain *[]stackCheckChain) {
    	// Walk the out-edges of sym. We temporarily pull the edges
    	// out of the graph to detect cycles and prevent infinite
    	// recursion.
    	edges, ok := sc.graph[sym]
    	isCycle := !(ok || sym == 0)
    	delete(sc.graph, sym)
    	for _, out := range edges {
    		*chain = append(*chain, stackCheckChain{out, false})
    		sc.report(out.target, depth-out.growth, chain)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// child.
    		//
    		// On the other hand, if telemetryChildVar were simply unset, then the
    		// delegated go commands would fork themselves recursively. Short-circuit
    		// this recursion.
    		os.Setenv(telemetryChildVar, "2")
    		upload := os.Getenv(telemetryUploadVar) == "1"
    		child(reportCrashes, upload, config.UploadStartTime, config.UploadURL)
    		os.Exit(0)
    	case "2":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/bufio/bufio.go

    func (b *Reader) Reset(r io.Reader) {
    	// If a Reader r is passed to NewReader, NewReader will return r.
    	// Different layers of code may do that, and then later pass r
    	// to Reset. Avoid infinite recursion in that case.
    	if b == r {
    		return
    	}
    	if b.buf == nil {
    		b.buf = make([]byte, defaultBufSize)
    	}
    	b.reset(b.buf, r)
    }
    
    func (b *Reader) reset(buf []byte, r io.Reader) {
    	*b = Reader{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
Back to top