Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1801 - 1810 of 2,742 for throws (0.15 sec)

  1. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

      public boolean isEmpty() {
        return end == start;
      }
    
      /**
       * Returns the {@code long} value present at the given index.
       *
       * @throws IndexOutOfBoundsException if {@code index} is negative, or greater than or equal to
       *     {@link #length}
       */
      public long get(int index) {
        Preconditions.checkElementIndex(index, length());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/ImmutableIntArray.java

      public boolean isEmpty() {
        return end == start;
      }
    
      /**
       * Returns the {@code int} value present at the given index.
       *
       * @throws IndexOutOfBoundsException if {@code index} is negative, or greater than or equal to
       *     {@link #length}
       */
      public int get(int index) {
        Preconditions.checkElementIndex(index, length());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                        } catch (final IOException e) {
                            disconnectInternalClient(client);
                            throw new CrawlingAccessException("Could not access " + uri, e);
                        }
                    }
                    ftpClientQueue.offer(client);
                    throw new ChildUrlsException(requestDataSet, this.getClass().getName() + "#getResponseData");
                }
    
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

    public class SystemHelperTest extends UnitFessTestCase {
    
        public SystemHelper systemHelper;
    
        private final Map<String, String> envMap = new HashMap<>();
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            final File propFile = File.createTempFile("project", ".properties");
            propFile.deleteOnExit();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/Collections2Test.java

          assertTrue(permutations.hasNext());
          permutations.next();
        }
        assertNoMorePermutations(permutations);
      }
    
      public void testToStringImplWithNullEntries() throws Exception {
        List<@Nullable String> list = Lists.newArrayList();
        list.add("foo");
        list.add(null);
    
        assertEquals(list.toString(), Collections2.toStringImpl(list));
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/Collections2Test.java

          assertTrue(permutations.hasNext());
          permutations.next();
        }
        assertNoMorePermutations(permutations);
      }
    
      public void testToStringImplWithNullEntries() throws Exception {
        List<@Nullable String> list = Lists.newArrayList();
        list.add("foo");
        list.add(null);
    
        assertEquals(list.toString(), Collections2.toStringImpl(list));
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

      /** Used to avoid http://bugs.sun.com/view_bug.do?bug_id=6558557 */
      static <T> SortedMultiset<T> cast(Multiset<T> iterable) {
        return (SortedMultiset<T>) iterable;
      }
    
      @Override
      public void setUp() throws Exception {
        super.setUp();
        sortedMultiset = cast(getMultiset());
        entries =
            copyToList(
                getSubjectGenerator()
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

    public class IndexingHelperTest extends UnitFessTestCase {
        private IndexingHelper indexingHelper;
    
        private long documentSizeByQuery = 0L;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.register(new SystemHelper(), "systemHelper");
            indexingHelper = new IndexingHelper() {
                @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 08:54:24 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. docs/em/docs/python-types.md

    πŸ–Ό, ➑️ ✊ πŸ‘‰ πŸ”’:
    
    ```Python hl_lines="1  4"
    {!../../docs_src/python_types/tutorial009c.py!}
    ```
    
    πŸ”’ `name` πŸ”¬ `Optional[str]`, βœ‹οΈ ⚫️ **🚫 πŸ“¦**, πŸ‘† πŸš«πŸ”œ πŸ€™ πŸ”’ 🍡 πŸ”’:
    
    ```Python
    say_hi()  # Oh, no, this throws an error! 😱
    ```
    
    `name` πŸ”’ **βœ”** (🚫 *πŸ“¦*) ↩️ ⚫️ 🚫 βœ”οΈ πŸ”’ πŸ’². , `name` 🚫 `None` πŸ’²:
    
    ```Python
    say_hi(name=None)  # This works, None is valid πŸŽ‰
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

                        continue;
                    }
                    handler.processResource(entryName.substring(pos), new FilterInputStream(zipInputStream) {
                        @Override
                        public void close() throws IOException {
                            ZipInputStreamUtil.closeEntry(zipInputStream);
                        }
                    });
                }
            }
        }
    
        /**
         * γƒ•γ‚‘γ‚€γƒ«γ‚·γ‚Ήγƒ†γƒ γ«ε«γΎγ‚Œγ‚‹γƒͺγ‚½γƒΌγ‚Ήγ‚’γƒˆγƒ©γƒγƒΌγ‚Ήγ—γΎγ™γ€‚
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top