Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 4,853 for Throw (0.07 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

            if (StringUtil.isBlank(endpoint)) {
                throw new CrawlingAccessException("endpoint is blank.");
            }
            builder.endpoint(endpoint);
            final String accessKey = getInitParameter("accessKey", null, String.class);
            if (StringUtil.isBlank(accessKey)) {
                throw new CrawlingAccessException("accessKey is blank.");
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/Network.java

       * {@code view} returned by this method will be invalidated, and will throw {@code
       * IllegalStateException} if it is accessed in any way, with the following exceptions:
       *
       * <ul>
       *   <li>{@code view.equals(view)} evaluates to {@code true} (but any other `equals()` expression
       *       involving {@code view} will throw)
       *   <li>{@code hashCode()} does not throw
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskEventsErrorIntegrationTest.groovy

            when:
            buildFile << """
        gradle.taskGraph.afterTask {
            throw new RuntimeException("afterTask failure")
        }
        task test {
            doLast {
                throw new RuntimeException("task action failure")
            }
        }
    """
            then:
            fails('test')
            failure.assertHasDescription("Execution failed for task ':test'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 03 03:20:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                    throw new SmbAuthException( resp.errorCode );
                case NtStatus.NT_STATUS_PATH_NOT_COVERED:
                    if( req.auth == null ) {
                        throw new SmbException( resp.errorCode, null );
                    }
    
                    DfsReferral dr = getDfsReferrals(req.auth, req.path, 1);
                    if (dr == null)
                        throw new SmbException(resp.errorCode, null);   
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/ImmutableTypeToInstanceMap.java

      @CheckForNull
      public <T extends B> T putInstance(TypeToken<T> type, T value) {
        throw new UnsupportedOperationException();
      }
    
      /**
       * Guaranteed to throw an exception and leave the map unmodified.
       *
       * @deprecated unsupported operation
       * @throws UnsupportedOperationException always
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 20:46:24 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/ToPlannedNodeConverterRegistry.java

            public NodeIdentity.NodeType getConvertedNodeType() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public NodeIdentity getNodeIdentity(Node node) {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public boolean isInSamePlan(Node node) {
                throw new UnsupportedOperationException();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SpnegoContext.java

                    if ( targ.getMechanism() != null && !targ.getMechanism().equals(this.selectedMech) ) {
                        throw new SmbException("Server switched mechanism");
                    }
                }
                inputToken = targ.getMechanismToken();
            }
            else {
                throw new SmbException("Invalid token");
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 14.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/DefaultExecutorFactoryTest.groovy

            given:
            def failure1 = new RuntimeException()
            def runnable1 = {
                instant.broken1
                throw failure1
            }
    
            def failure2 = new RuntimeException()
            def runnable2 = {
                instant.broken2
                throw failure2
            }
    
            when:
            def executor = factory.create('test')
            executor.execute(runnable1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiator.java

                try {
                    return constructor.newInstance(services, this, displayName, resolvedParameters);
                } catch (InvocationTargetException e) {
                    throw e.getCause();
                }
            } catch (Throwable t) {
                throw new ObjectInstantiationException(type, t);
            }
        }
    
        public <T> InstanceFactory<T> factoryFor(final Class<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultImmutableVersionConstraint.java

            if (preferredVersion == null) {
                throw new IllegalArgumentException("Preferred version must not be null");
            }
            if (requiredVersion == null) {
                throw new IllegalArgumentException("Required version must not be null");
            }
            if (strictVersion == null) {
                throw new IllegalArgumentException("Strict version must not be null");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top