Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UnsupportedOperationException (0.34 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public K getKey() {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public long getAccessTime() {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public void setAccessTime(long time) {
          throw new UnsupportedOperationException();
        }
    
        @Override
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public K getKey() {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public long getAccessTime() {
          throw new UnsupportedOperationException();
        }
    
        @Override
        public void setAccessTime(long time) {
          throw new UnsupportedOperationException();
        }
    
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

            return set;
          }
    
          @Override
          public boolean add(@ParametricNullness E element) {
            throw new UnsupportedOperationException();
          }
    
          @Override
          public boolean addAll(Collection<? extends E> es) {
            throw new UnsupportedOperationException();
          }
        };
      }
    
      private static <E extends @Nullable Object> SortedSet<E> removeOnlySortedSet(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          "http://host\u0001/".toHttpUrl()
        }
      }
    
      @Suppress("DEPRECATION_ERROR")
      @Test
      fun setSslSocketFactoryFailsOnJdk9() {
        platform.assumeJdk9()
        assertFailsWith<UnsupportedOperationException> {
          client.newBuilder()
            .sslSocketFactory(handshakeCertificates.sslSocketFactory())
        }
      }
    
      /** Confirm that runtime exceptions thrown inside of OkHttp propagate to the caller.  */
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
Back to top