Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for broken1 (0.12 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            e.message == "Failed to query the value of <property>."
            e.cause.message == "broken!"
    
            when:
            property.get()
    
            then:
            def e2 = thrown(AbstractProperty.PropertyQueryException)
            e2.message == "Failed to query the value of <property>."
            e2.cause.message == "broken!"
        }
    
        def "can set untyped using null"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // shouldn't break in cases where reflection is missing/broken.
        if (thrownAtomicReferenceFieldUpdaterFailure != null) {
          log.get().log(Level.SEVERE, "UnsafeAtomicHelper is broken!", thrownUnsafeFailure);
          log.get()
              .log(
                  Level.SEVERE,
                  "SafeAtomicHelper is broken!",
                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // shouldn't break in cases where reflection is missing/broken.
        if (thrownAtomicReferenceFieldUpdaterFailure != null) {
          log.get().log(Level.SEVERE, "UnsafeAtomicHelper is broken!", thrownUnsafeFailure);
          log.get()
              .log(
                  Level.SEVERE,
                  "SafeAtomicHelper is broken!",
                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. src/net/http/transport.go

    	numExpectedResponses int
    	closed               error // set non-nil when conn is closed, before closech is closed
    	canceledErr          error // set non-nil if conn is canceled
    	broken               bool  // an error has happened on this connection; marked broken so it's not reused.
    	reused               bool  // whether conn has had successful request/response and is being reused.
    	// mutateHeaderFunc is an optional func to modify extra
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    	// Clear deadline and make sure it still times out
    	if err = srv.SetDeadline(time.Time{}); err != nil {
    		t.Fatalf("SetDeadline(time.Time{}) err: %v", err)
    	}
    	if _, err = srv.Write([]byte("This connection is permanently broken")); err == nil {
    		t.Fatal("Write which previously failed should still time out")
    	}
    
    	// Verify the error
    	if ne := err.(net.Error); ne.Temporary() != false {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. src/internal/trace/order.go

    }
    
    // Advance checks if it's valid to proceed with ev which came from thread m.
    //
    // It assumes the gen value passed to it is monotonically increasing across calls.
    //
    // If any error is returned, then the trace is broken and trace parsing must cease.
    // If it's not valid to advance with ev, but no error was encountered, the caller
    // should attempt to advance with other candidate events from other threads. If the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    			Server(s, testConfig).Handshake()
    			s.Close()
    			done <- true
    		}()
    
    		brokenC := &brokenConn{Conn: c, breakAfter: breakAfter}
    		err := Client(brokenC, testConfig).Handshake()
    		if err != brokenConnErr {
    			t.Errorf("#%d: expected error from brokenConn but got %q", breakAfter, err)
    		}
    		brokenC.Close()
    
    		<-done
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    		if err != nil {
    			return nil, nil, err
    		}
    		var onHeartbeatFailure func()
    		// Kubelet needs to be able to recover from stale http connections.
    		// HTTP2 has a mechanism to detect broken connections by sending periodical pings.
    		// HTTP1 only can have one persistent connection, and it will close all Idle connections
    		// once the Kubelet heartbeat fails. However, since there are many edge cases that we can't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          //
          // This workaround enables converting Keras RNN without specifying batch
          // dimension. This isn't guaranteed to work, but it doesn't break any
          // non-broken cases either (since it's already broken if `element_shape`
          // contains -1).
          // TODO(b/142096690): Support dynamic element shape and remove the
          // workaround.
          SmallVector<int32_t, 4> new_element_shape_values;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    			}
    		}
    	}
    }
    
    func TestTypesInfo(t *testing.T) {
    	// Test sources that are not expected to typecheck must start with the broken prefix.
    	const brokenPkg = "package broken_"
    
    	var tests = []struct {
    		src  string
    		expr string // expression
    		typ  string // value type
    	}{
    		// single-valued expressions of untyped constants
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top