Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 522 for recursion (0.21 sec)

  1. src/cmd/asm/internal/lex/input.go

    	if tok != '\n' {
    		in.Error("syntax error in #undef for macro:", name)
    	}
    	delete(in.macros, name)
    }
    
    func (in *Input) Push(r TokenReader) {
    	if len(in.tr) > 100 {
    		in.Error("input recursion")
    	}
    	in.Stack.Push(r)
    }
    
    func (in *Input) Close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

        static final NonPublicConstantIgnored INSTANCE = new NonPublicConstantIgnored();
    
        private NonPublicConstantIgnored() {}
      }
    
      public static class NonStaticFieldIgnored {
        // This should cause infinite recursion. But it shouldn't be used anyway.
        public final NonStaticFieldIgnored instance = new NonStaticFieldIgnored();
    
        private NonStaticFieldIgnored() {}
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    	ast.Inspect(n, func(node ast.Node) bool {
    		if node == n { // push n
    			return true // recur
    		}
    		if node != nil { // push child
    			children = append(children, node)
    		}
    		return false // no recursion
    	})
    
    	// Then add fake Nodes for bare tokens.
    	switch n := n.(type) {
    	case *ast.ArrayType:
    		children = append(children,
    			tok(n.Lbrack, len("[")),
    			tok(n.Elt.End(), len("]")))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    		// We use this pattern:
    		// 1 255 1 254 1 253 1 ... 1 2 1 255 2 254 2 253 2 252 2 ...
    		// This gives approximately 2¹⁵ distinct LMS-substrings.
    		// We need to repeat at least one substring, though,
    		// or else the recursion can be bypassed entirely.
    		x := make([]byte, 100000, 100001)
    		lo := byte(1)
    		hi := byte(255)
    		for i := range x {
    			if i%2 == 0 {
    				x[i] = lo
    			} else {
    				x[i] = hi
    				hi--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/log/slog/doc.go

    details.
    
    A LogValue method may return a Value that itself implements [LogValuer]. The [Value.Resolve]
    method handles these cases carefully, avoiding infinite loops and unbounded recursion.
    Handler authors and others may wish to use [Value.Resolve] instead of calling LogValue directly.
    
    # Wrapping output methods
    
    The logger functions use reflection over the call stack to find the file name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/flags.cc

    bool SetterForXlaAutoJitFlag(const string& value) {
      int32_t opt_level;
      // We need to use the mark_for_compilation_flags directly here instead of
      // going via GetMarkForCompilationPassFlags() to avoid infinite recursion. The
      // latter will try to setup and parse flags, which would bring us back to this
      // setter.
      if (absl::SimpleAtoi(value, &opt_level)) {
        mark_for_compilation_flags->xla_auto_jit_flag
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

        static final NonPublicConstantIgnored INSTANCE = new NonPublicConstantIgnored();
    
        private NonPublicConstantIgnored() {}
      }
    
      public static class NonStaticFieldIgnored {
        // This should cause infinite recursion. But it shouldn't be used anyway.
        public final NonStaticFieldIgnored instance = new NonStaticFieldIgnored();
    
        private NonStaticFieldIgnored() {}
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  8. src/fmt/print.go

    	reordered bool
    	// goodArgNum records whether the most recent reordering directive was valid.
    	goodArgNum bool
    	// panicking is set by catchPanic to avoid infinite panic, recover, panic, ... recursion.
    	panicking bool
    	// erroring is set when printing an error string to guard against calling handleMethods.
    	erroring bool
    	// wrapErrs is set when the format string may contain a %w verb.
    	wrapErrs bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    func areAdjacentOffsets(off1, off2, size int64) bool {
    	return off1+size == off2 || off1 == off2+size
    }
    
    // check if value zeroes out upper 32-bit of 64-bit register.
    // depth limits recursion depth. In AMD64.rules 3 is used as limit,
    // because it catches same amount of cases as 4.
    func zeroUpper32Bits(x *Value, depth int) bool {
    	switch x.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. src/math/big/nat_test.go

    	t := stats.TotalAlloc
    	f()
    	runtime.ReadMemStats(&stats)
    	return stats.TotalAlloc - t
    }
    
    // TestMulUnbalanced tests that multiplying numbers of different lengths
    // does not cause deep recursion and in turn allocate too much memory.
    // Test case for issue 3807.
    func TestMulUnbalanced(t *testing.T) {
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    	x := rndNat(50000)
    	y := rndNat(40)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top