Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for anymore (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

            throw new UnsupportedOperationException("Adding handlers programmatically is not supported anymore");
        }
    
        @Deprecated
        public Set<String> getHandlerTypes() {
            throw new UnsupportedOperationException("Querying handlers programmatically is not supported anymore");
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                    final MetadataGraphEdge edge = cleanEdges(v, ins, requestedScope);
    
                    if (edge == null) { // no edges - don't need this vertex anymore
                        if (entry.equals(v)) { // unless it's an entry point.
                            // currently processing the entry point - it should not have any entry incident edges
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NbtAddress.java

         */
        @Override
        public String getHostName () {
            /*
             * 2010 - We no longer try a Node Status to get the
             * hostname because apparently some servers do not respond
             * anymore. I think everyone post Windows 98 will accept
             * an IP address as the tconHostName which is the principal
             * use of this method.
             */
            if ( this.hostName.isUnknown() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     */ 
    
        public String getHostName() {
            /* 2010 - We no longer try a Node Status to get the
             * hostname because apparently some servers do not respond
             * anymore. I think everyone post Windows 98 will accept
             * an IP address as the tconHostName which is the principal
             * use of this method.
             */
            if (hostName == UNKNOWN_NAME) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

          @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
             * the new one. The result is a ConcurrentModificationException or other bad behavior.
             *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

          @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
             * the new one. The result is a ConcurrentModificationException or other bad behavior.
             *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Apr 20 03:33:06 GMT 2024
    - 50.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ExecutionError.java

       *     can <i>usually</i> still preserve behavior by passing an explicit {@code null} cause. Note,
       *     however, that passing an explicit {@code null} cause prevents anyone from calling {@link
       *     #initCause} later, so it is not quite equivalent to using a constructor that omits the
       *     cause.
       */
      @Deprecated
      protected ExecutionError() {}
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 17:52:19 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertTrue(changed);
      }
    
      public void testAddAllToSet() {
        Set<String> alreadyThere = Sets.newLinkedHashSet(asList("already", "there"));
        List<String> oneMore = Lists.newArrayList("there");
    
        boolean changed = Iterators.addAll(alreadyThere, oneMore.iterator());
        assertThat(alreadyThere).containsExactly("already", "there").inOrder();
        assertFalse(changed);
      }
    
      @J2ktIncompatible
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 55.7K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/NullPointerTester.java

       *
       * <p>Under j2objc, the necessary APIs exist, but some (perhaps all) return stub values, like
       * empty arrays. Presumably {@link NullPointerTester} could likewise misbehave under j2objc, but I
       * don't know that anyone uses it there, anyway.
       */
      private enum NullnessAnnotationReader {
        @SuppressWarnings("Java7ApiChecker")
        FROM_DECLARATION_AND_TYPE_USE_ANNOTATIONS {
          @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 23.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        // language has nothing for us. Except for the whimsical neologism "pibling" (!) which we
        // obviously could not expect to increase anyone's understanding of the code.
    
        /**
         * Swap {@code actualLastElement} with the conceptually correct last element of the heap.
         * Returns the index that {@code actualLastElement} now resides in.
         *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
Back to top