Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for New (0.17 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

                if ( name == null || name.length() == 0 ) {
                    throw new SmbException("Name must not be empty");
                }
                return new SmbFile(this, name);
            }
            catch (
                MalformedURLException |
                UnknownHostException e ) {
                // this should not actually happen
                throw new SmbException("Failed to resolve child element", e);
            }
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/expressionInfoProvider/FirIdeNormalAnalysisSourceModuleIsUsedAsExpressionTestGenerated.java

          new AnalysisApiTestConfiguratorFactoryData(
            FrontendKind.Fir,
            TestModuleKind.Source,
            AnalysisSessionMode.Normal,
            AnalysisApiMode.Ide
          )
        );
      }
    
      @Test
      public void testAllFilesPresentInIsUsedAsExpression() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 19:07:43 UTC 2024
    - 76.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

            return new WrappedNavigableSet(key, (NavigableSet<V>) collection, null);
          } else if (collection instanceof SortedSet) {
            return new WrappedSortedSet(key, (SortedSet<V>) collection, null);
          } else if (collection instanceof Set) {
            return new WrappedSet(key, (Set<V>) collection);
          } else {
            return new WrappedCollection(key, collection, null);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multimaps.java

            return new WrappedNavigableSet(key, (NavigableSet<V>) collection, null);
          } else if (collection instanceof SortedSet) {
            return new WrappedSortedSet(key, (SortedSet<V>) collection, null);
          } else if (collection instanceof Set) {
            return new WrappedSet(key, (Set<V>) collection);
          } else {
            return new WrappedCollection(key, collection, null);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertTrue(Arrays.equals(new String[0], array));
      }
    
      @GwtIncompatible // Iterators.toArray(Iterator, Class)
      public void testToArraySingleton() {
        Iterator<String> iterator = Collections.singletonList("a").iterator();
        String[] array = Iterators.toArray(iterator, String.class);
        assertTrue(Arrays.equals(new String[] {"a"}, array));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

        checkNotNull(iterable);
        return new Iterator<T>() {
          Iterator<T> iterator = emptyModifiableIterator();
    
          @Override
          public boolean hasNext() {
            /*
             * Don't store a new Iterator until we know the user can't remove() the last returned
             * element anymore. Otherwise, when we remove from the old iterator, we may be invalidating
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

        checkNotNull(iterable);
        return new Iterator<T>() {
          Iterator<T> iterator = emptyModifiableIterator();
    
          @Override
          public boolean hasNext() {
            /*
             * Don't store a new Iterator until we know the user can't remove() the last returned
             * element anymore. Otherwise, when we remove from the old iterator, we may be invalidating
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MapsTest.java

      }
    
      public void testTreeMapDerived() {
        TreeMap<Derived, Integer> map = Maps.newTreeMap();
        assertEquals(Collections.emptyMap(), map);
        map.put(new Derived("foo"), 1);
        map.put(new Derived("bar"), 2);
        assertThat(map.keySet()).containsExactly(new Derived("bar"), new Derived("foo")).inOrder();
        assertThat(map.values()).containsExactly(2, 1).inOrder();
        assertNull(map.comparator());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Synchronized.java

      }
    
      private static <E extends @Nullable Object> List<E> list(
          List<E> list, @CheckForNull Object mutex) {
        return (list instanceof RandomAccess)
            ? new SynchronizedRandomAccessList<E>(list, mutex)
            : new SynchronizedList<E>(list, mutex);
      }
    
      static class SynchronizedList<E extends @Nullable Object> extends SynchronizedCollection<E>
          implements List<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Synchronized.java

      }
    
      private static <E extends @Nullable Object> List<E> list(
          List<E> list, @CheckForNull Object mutex) {
        return (list instanceof RandomAccess)
            ? new SynchronizedRandomAccessList<E>(list, mutex)
            : new SynchronizedList<E>(list, mutex);
      }
    
      static class SynchronizedList<E extends @Nullable Object> extends SynchronizedCollection<E>
          implements List<E> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
Back to top