Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for misbehaving (0.35 sec)

  1. src/net/dnsclient_unix.go

    	errCannotUnmarshalDNSMessage = errors.New("cannot unmarshal DNS message")
    	errCannotMarshalDNSMessage   = errors.New("cannot marshal DNS message")
    	errServerMisbehaving         = errors.New("server misbehaving")
    	errInvalidDNSResponse        = errors.New("invalid DNS response")
    	errNoAnswerFromDNSServer     = errors.New("no answer from DNS server")
    
    	// errServerTemporarilyMisbehaving is like errServerMisbehaving, except
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    func checkDNSLookupFailed() echo.Checker {
    	return check.And(
    		check.Error(),
    		func(_ echo.CallResult, err error) error {
    			if strings.Contains(err.Error(), "no such host") || strings.Contains(err.Error(), "server misbehaving") {
    				return nil
    			}
    			return err
    		})
    }
    
    func callAndValidate(t framework.TestContext, ht hostType, from echo.Instance, to echo.Target, checker echo.Checker) {
    	t.Helper()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    			r.Header.RCode = dnsmessage.RCodeNameError
    		}
    
    		return r, nil
    	}}
    
    	cases := []struct {
    		strictErrors bool
    		wantErr      *DNSError
    	}{
    		{true, &DNSError{Name: fqdn, Err: "server misbehaving", IsTemporary: true}},
    		{false, &DNSError{Name: fqdn, Err: errNoSuchHost.Error(), IsNotFound: true}},
    	}
    	for _, tt := range cases {
    		r := Resolver{PreferGo: true, StrictErrors: tt.strictErrors, Dial: fake.DialContext}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        assertThat(
                new AbstractFuture<Object>() {
                  @Override
                  public String pendingToString() {
                    throw new RuntimeException("I'm a misbehaving implementation");
                  }
                }.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, info=\\[Exception thrown from implementation: "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        assertThat(
                new AbstractFuture<Object>() {
                  @Override
                  public String pendingToString() {
                    throw new RuntimeException("I'm a misbehaving implementation");
                  }
                }.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, info=\\[Exception thrown from implementation: "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. src/runtime/panic.go

    // its own defers (d4 and d3), so drangefunc need not be at the
    // top of the list when deferprocat is used. This is why we pass
    // the atomic head explicitly.
    //
    // To keep misbehaving programs from crashing the runtime,
    // deferprocat pushes new defers onto the .head list atomically.
    // The fact that it is a separate list from the main goroutine
    // defer list means that the main goroutine's defers can still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	f.Offset = p.Offset
    
    	// NOTE(rsc): This is the only allocation in the interface
    	// presented by a reflect.Type. It would be nice to avoid,
    	// at least in the common cases, but we need to make sure
    	// that misbehaving clients of reflect cannot affect other
    	// uses of reflect. One possibility is CL 5371098, but we
    	// postponed that ugliness until there is a demonstrated
    	// need for the performance. This is issue 2320.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	//
    	// Unfortunately, we have no straightforward way to be “reasonably certain”
    	// that we have received the client's ACK, and at any rate we don't want to
    	// allow a misbehaving client to soak up server connections indefinitely by
    	// withholding an ACK, nor do we want to go through the complexity or overhead
    	// of using low-level APIs to figure out when a TCP round-trip has completed.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top