Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 258 for throws (0.13 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

        public TestNGOptions getOptions() {
            return options;
        }
    
        @Override
        public TestNGDetector getDetector() {
            return detector;
        }
    
        @Override
        public void close() throws IOException {
            // Clear expensive state from the test framework to avoid holding on to memory
            // This should probably be a part of the test task and managed there.
            detector = null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

       *
       * <p>This bug is this: if you create an iterator from a TreeSet and call next() on that iterator
       * when hasNext() is false, so that next() throws a NoSuchElementException, then subsequent calls
       * to remove() will incorrectly throw an IllegalStateException, instead of removing the last
       * element returned.
       *
       * <p>See <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6529795">Sun bug 6529795</a>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. JavadocStyleGuide.md

    ```java
    /**
     * Use the {@code Project} instance to configure the project.
     */
    ```
    
    ### 1.1.7 Block tags
    
    Any of the standard "block tags" that are used appear in the order `@param`, `@return`, `@throws`, `@deprecated`, and these four types never appear with an empty description:
    
    ```java
    /**
     * @param url an absolute URL giving the base location of the image
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

       * throwing exceptions like {@link NoSuchElementException} at the appropriate times, it throws
       * {@link PermittedMetaException} instances, which wrap a set of all exceptions that the iterator
       * could throw during the invocation of that method. This is necessary because, e.g., a call to
       * {@code iterator().remove()} of an unmodifiable list could throw either {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/process/internal/AbstractWorkerProcessIntegrationSpec.groovy

                    dispatch.send(message, count)
                } catch (Throwable e) {
                    ex = e
                }
            }
    
            public void rethrow() throws Throwable {
                if (ex != null) {
                    throw ex
                }
            }
        }
    
        static LoggingManagerInternal loggingManager(LogLevel logLevel) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

       *
       * <p>This bug is this: if you create an iterator from a TreeSet and call next() on that iterator
       * when hasNext() is false, so that next() throws a NoSuchElementException, then subsequent calls
       * to remove() will incorrectly throw an IllegalStateException, instead of removing the last
       * element returned.
       *
       * <p>See <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6529795">Sun bug 6529795</a>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

            this.repoSystem = repoSystem;
            this.decorators = decorators;
        }
    
        public DependencyResolutionResult resolve(DependencyResolutionRequest request)
                throws DependencyResolutionException {
            final RequestTrace trace = RequestTrace.newChild(null, request);
    
            final DefaultDependencyResolutionResult result = new DefaultDependencyResolutionResult();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            private void remapClass(Class<?> classToMap, ZipOutputStream jar) throws IOException {
                String internalName = Type.getInternalName(classToMap);
                String resourceName = internalName.concat(".class");
                URL resource = WorkerProcessClassPathProvider.class.getClassLoader().getResource(resourceName);
                if (resource == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

         * @param severity the expected severity of the problem
         * @param extraChecks an optional closure to perform any custom checks on the problem, like checking the precise message of the problem
         *
         * @throws AssertionError if the problem does not look like how we expect it to look like
         */
        void assertProblem(
            ReceivedProblem problem,
            String severity,
            boolean expectPreciseLocation = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     * between `get` and `set` call to compute the new value passed to `set`.
     *
     * Note that simple access using the array access convention is not captured by this class. For example, assuming `ThrowingMap` throws
     * in case of absent key instead of returning `null`,
     * ```
     * fun test(m: ThrowingMap<String, MutableList<String>>) {
     *   m["a"] += "b"
     * }
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top