Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,888 for Throw (0.05 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt

      ) {
        throw UnsupportedOperationException()
      }
    
      override fun removeValue(s: String) {
        throw UnsupportedOperationException()
      }
    
      override fun getValue(s: String): Any {
        throw UnsupportedOperationException()
      }
    
      override fun getValueNames(): Array<String> {
        throw UnsupportedOperationException()
      }
    
      override fun invalidate() {
        throw UnsupportedOperationException()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/mdo/java/ImmutableCollections.java

            public boolean add(E e) {
                throw uoe();
            }
    
            @Override
            public boolean remove(Object o) {
                throw uoe();
            }
    
            @Override
            public boolean addAll(Collection<? extends E> c) {
                throw uoe();
            }
    
            @Override
            public boolean removeAll(Collection<?> c) {
                throw uoe();
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/ImmutableCollections.java

            public boolean add(E e) {
                throw uoe();
            }
    
            @Override
            public boolean remove(Object o) {
                throw uoe();
            }
    
            @Override
            public boolean addAll(Collection<? extends E> c) {
                throw uoe();
            }
    
            @Override
            public boolean removeAll(Collection<?> c) {
                throw uoe();
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/crypto/CachedCipher.java

                } catch (final InvalidKeyException e) {
                    throw new InvalidKeyRuntimeException(e);
                } catch (final NoSuchAlgorithmException e) {
                    throw new NoSuchAlgorithmRuntimeException(e);
                } catch (final NoSuchPaddingException e) {
                    throw new NoSuchPaddingRuntimeException(e);
                }
            }
            return cipher;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

            public void exclude() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public void setName(String name) {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public void setPath(String path) {
                throw new UnsupportedOperationException();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/TestNamedProvider.groovy

            return t != null
        }
    
        @Override
        Provider<T> orElse(T t) {
            throw new UnsupportedOperationException()
        }
    
        @Override
        Provider<T> orElse(Provider<? extends T> provider) {
            throw new UnsupportedOperationException()
        }
    
        @Override
        Provider<T> forUseAtConfigurationTime() {
            throw new UnsupportedOperationException()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

            throw new UnsupportedOperationException()
        }
    
        TestClassExecutionResult assertTestsSkipped(String... testNames) {
            throw new UnsupportedOperationException()
        }
    
        @Override
        TestClassExecutionResult assertTestPassed(String name, String displayName) {
            throw new UnsupportedOperationException()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SftpDirectoryResource.groovy

            throw new UnsupportedOperationException()
        }
    
        void expectDownloadBroken() {
            throw new UnsupportedOperationException()
        }
    
        @Override
        void expectParentMkdir() {
            throw new UnsupportedOperationException()
        }
    
        @Override
        void expectParentCheckdir() {
            throw new UnsupportedOperationException()
        }
    
        @Override
        void expectUpload() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/AbstractPlatformToolProvider.java

            throw unavailableTool("Objective-C compiler is not available");
        }
    
        protected Compiler<?> createWindowsResourceCompiler() {
            throw unavailableTool("Windows resource compiler is not available");
        }
    
        protected Compiler<?> createAssembler() {
            throw unavailableTool("Assembler is not available");
        }
    
        protected Compiler<?> createLinker() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. src/runtime/runtime1.go

    	var y1 y1t
    
    	if unsafe.Sizeof(a) != 1 {
    		throw("bad a")
    	}
    	if unsafe.Sizeof(b) != 1 {
    		throw("bad b")
    	}
    	if unsafe.Sizeof(c) != 2 {
    		throw("bad c")
    	}
    	if unsafe.Sizeof(d) != 2 {
    		throw("bad d")
    	}
    	if unsafe.Sizeof(e) != 4 {
    		throw("bad e")
    	}
    	if unsafe.Sizeof(f) != 4 {
    		throw("bad f")
    	}
    	if unsafe.Sizeof(g) != 8 {
    		throw("bad g")
    	}
    	if unsafe.Sizeof(h) != 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top