Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setNotable (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

            private boolean notable;
            private String title;
            private String body;
    
            public boolean isNotable() {
                return notable;
            }
    
            public void setNotable(boolean notable) {
                this.notable = notable;
            }
    
            public String getTitle() {
                return title;
            }
    
            public void setTitle(String title) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/FutureCallbackTest.java

        assertThat(successCalls[0]).isEqualTo(1);
        assertThat(failureCalls[0]).isEqualTo(0);
      }
    
      public void testWildcardFuture() {
        SettableFuture<String> settable = SettableFuture.create();
        ListenableFuture<?> f = settable;
        FutureCallback<@Nullable Object> callback =
            new FutureCallback<@Nullable Object>() {
              @Override
              public void onSuccess(@Nullable Object result) {}
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 6.7K bytes
    - Click Count (0)
Back to Top