Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 415 for recursion (0.17 sec)

  1. src/cmd/compile/internal/types2/issues_test.go

    	s2 := NewStruct([]*Var{NewField(nopos, nil, "_", T2, false)}, nil)
    	s3 := NewStruct([]*Var{NewField(nopos, nil, "_", s2, false)}, nil)
    	T2.SetUnderlying(s3)
    
    	// These calls must terminate (no endless recursion).
    	Comparable(T1)
    	Comparable(T2)
    }
    
    func TestIssue44515(t *testing.T) {
    	typ := Unsafe.Scope().Lookup("Pointer").Type()
    
    	got := TypeString(typ, nil)
    	want := "unsafe.Pointer"
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	sectionAdditionals
    	sectionDone
    
    	headerBitQR = 1 << 15 // query/response (response=1)
    	headerBitAA = 1 << 10 // authoritative
    	headerBitTC = 1 << 9  // truncated
    	headerBitRD = 1 << 8  // recursion desired
    	headerBitRA = 1 << 7  // recursion available
    	headerBitAD = 1 << 5  // authentic data
    	headerBitCD = 1 << 4  // checking disabled
    )
    
    var sectionNames = map[section]string{
    	sectionHeader:      "header",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. src/encoding/gob/codec_test.go

    	type Rec ***Rec
    	var rec Rec
    	b := new(bytes.Buffer)
    	err := NewEncoder(b).Encode(&rec)
    	if err == nil {
    		t.Error("expected error; got none")
    	} else if !strings.Contains(err.Error(), "recursive") {
    		t.Error("expected recursive type error; got", err)
    	}
    	// Can't test decode easily because we can't encode one, so we can't pass one to a Decoder.
    }
    
    type Indirect struct {
    	A ***[3]int
    	S ***[]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. src/go/constant/value.go

    // and returns the result. Appending the reversal allows processing
    // the right side in a recursive call and the left side in a loop.
    // Because a chain like a + b + c + d + e is actually represented
    // as ((((a + b) + c) + d) + e), the left-side loop avoids deep recursion.
    // x must be locked.
    func (x *stringVal) appendReverse(list []string) []string {
    	y := x
    	for y.r != nil {
    		y.r.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/expand_calls.go

    	memForCall      map[ID]*Value     // For a call, need to know the unique selector that gets the mem.
    	indentLevel     int               // Indentation for debugging recursion
    }
    
    // intPairTypes returns the pair of 32-bit int types needed to encode a 64-bit integer type on a target
    // that has no 64-bit integer registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        try {
          closingFuture.finishToValueAndCloser(new NoOpValueAndCloserConsumer<>(), executor);
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      // Avoid infinite recursion if a closeable's close() method throws RejectedExecutionException and
      // is closed using the direct executor.
      public void testCloseThrowsRejectedExecutionException() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

        try {
          closingFuture.finishToValueAndCloser(new NoOpValueAndCloserConsumer<>(), executor);
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      // Avoid infinite recursion if a closeable's close() method throws RejectedExecutionException and
      // is closed using the direct executor.
      public void testCloseThrowsRejectedExecutionException() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/tape.h

            in_grads.push_back(zero);
          } else {
            in_grads.push_back(nullptr);
          }
        } else {
          in_grads.push_back(current_grad->second);
        }
      }
    
      // Avoid infinite recursion. Whichever forward function we run, it'll end up
      // executing ops, and we don't want to watch those with this accumulator.
      call_state_.emplace(nullptr, true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/deadness_analysis.cc

                  ::tensorflow::hash<int32>()(
                      signature.second.has_value() ? *signature.second : 0)));
        }
      };
    
      // Used to limit recursion to avoid blowing up the stack and cap compile time.
      class IncrementStackDepth {
       public:
        explicit IncrementStackDepth(PredicateFactory* parent) : parent_(parent) {
          parent_->stack_depth_++;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
      private void appendUserObject(StringBuilder builder, @CheckForNull Object o) {
        // This is some basic recursion detection for when people create cycles via set/setFuture or
        // when deep chains of futures exist resulting in a StackOverflowException. We could detect
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top