Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 228 for recursion (0.64 sec)

  1. src/path/filepath/path_windows_test.go

    		} else if got != want {
    			t.Errorf("toNorm(%s) returns %s, but %s expected (wd=%s)\n", arg, got, want, wd)
    		}
    	}
    }
    
    func TestUNC(t *testing.T) {
    	// Test that this doesn't go into an infinite recursion.
    	// See golang.org/issue/15879.
    	defer debug.SetMaxStack(debug.SetMaxStack(1e6))
    	filepath.Glob(`\\?\c:\*`)
    }
    
    func testWalkMklink(t *testing.T, linktype string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix.go

    				continue
    			}
    
    			// Presotto says it's okay to assume that servers listed in
    			// /etc/resolv.conf are recursive resolvers.
    			//
    			// We asked for recursion, so it should have included all the
    			// answers we need in this one packet.
    			//
    			// Further, RFC 1034 section 4.3.1 says that "the recursive
    			// response to a query will be... The answer to the query,
    			// possibly preface by one or more CNAME RRs that specify
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    func componentsOfType(arch *asmArch, t types.Type) []component {
    	return appendComponentsRecursive(arch, t, nil, "", 0)
    }
    
    // appendComponentsRecursive implements componentsOfType.
    // Recursion is required to correct handle structs and arrays,
    // which can contain arbitrary other types.
    func appendComponentsRecursive(arch *asmArch, t types.Type, cc []component, suffix string, off int) []component {
    	s := t.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/named.go

    		// (for example, in recursive type declarations).
    		assert(check != nil)
    	}
    
    	if orig.tparams.Len() != targs.Len() {
    		// Mismatching arg and tparam length may be checked elsewhere.
    		return Typ[Invalid]
    	}
    
    	// Ensure that an instance is recorded before substituting, so that we
    	// resolve n for any recursive references.
    	h := n.inst.ctxt.instanceHash(orig, targs.list())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto.go

    //
    //	Frame's Func is nil (note: also true for non-Go functions), and
    //	Frame's Entry matches its entry function frame's Entry (note: could also be true for recursive calls and non-Go functions), and
    //	Frame's Name does not match its entry function frame's name (note: inlined functions cannot be directly recursive).
    //
    // As reading and processing the pcs in a stack trace one by one (from leaf to the root),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. src/go/types/named.go

    		// (for example, in recursive type declarations).
    		assert(check != nil)
    	}
    
    	if orig.tparams.Len() != targs.Len() {
    		// Mismatching arg and tparam length may be checked elsewhere.
    		return Typ[Invalid]
    	}
    
    	// Ensure that an instance is recorded before substituting, so that we
    	// resolve n for any recursive references.
    	h := n.inst.ctxt.instanceHash(orig, targs.list())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/cmd/go/internal/fsys/fsys.go

    		volumeLen, dir = cleanGlobPathWindows(dir)
    	} else {
    		dir = cleanGlobPath(dir)
    	}
    
    	if !hasMeta(dir[volumeLen:]) {
    		return glob(dir, file, nil)
    	}
    
    	// Prevent infinite recursion. See issue 15879.
    	if dir == pattern {
    		return nil, filepath.ErrBadPattern
    	}
    
    	var m []string
    	m, err = Glob(dir)
    	if err != nil {
    		return
    	}
    	for _, d := range m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/runtime/traceback_test.go

    	}
    }
    func tte0(n int) string {
    	return tte4(n - 1)
    }
    func tte1(n int) string {
    	return tte0(n - 1)
    }
    func tte2(n int) string {
    	// tte2 opens n%5 == 2 frames. It's also the base case of the recursion,
    	// since we can open no fewer than two frames to call debug.Stack().
    	if n < 2 {
    		panic("bad n")
    	}
    	if n == 2 {
    		return string(debug.Stack())
    	}
    	return tte1(n - 1)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      auto it = is_pure_function_.find(func_op);
      if (it == is_pure_function_.end()) {
        bool is_pure = true;
        is_pure_function_[func_op] = is_pure;  // prevent infinite recursion
        func_op->walk([&](Operation* op) {
          if (op == func_op) {
            return WalkResult::advance();
          }
          // AssertOp is not, technically, pure. However, we treat functions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. src/runtime/crash_test.go

    }
    
    func TestGoexitInPanic(t *testing.T) {
    	// External linking brings in cgo, causing deadlock detection not working.
    	testenv.MustInternalLink(t, false)
    
    	// see issue 8774: this code used to trigger an infinite recursion
    	output := runTestProg(t, "testprog", "GoexitInPanic")
    	want := "fatal error: no goroutines (main called runtime.Goexit) - deadlock!"
    	if !strings.HasPrefix(output, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top