Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 4,951 for Returns (0.07 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/ArtifactCoordinates.java

    @Experimental
    @Immutable
    public interface ArtifactCoordinates {
        /**
         * {@return the group identifier of the artifact}.
         */
        @Nonnull
        String getGroupId();
    
        /**
         * {@return the identifier of the artifact}.
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * Returns the classifier of the artifact.
         *
         * @return the classifier or an empty string if none, never {@code null}
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/entity/FessUserTest.java

            public String getName() {
                return name;
            }
    
            @Override
            public String[] getRoleNames() {
                return roleNames;
            }
    
            @Override
            public String[] getGroupNames() {
                return groupNames;
            }
    
            @Override
            public String[] getPermissions() {
                return permissions;
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/Kerb5ContextTest.java

        }
    
        @Test
        @DisplayName("isSupported returns false for null/unknown OIDs")
        void isSupported_unknownOrNull() {
            assertFalse(ctx.isSupported(null));
            assertFalse(ctx.isPreferredMech(null));
            assertFalse(ctx.isSupported(new ASN1ObjectIdentifier("1.3.6.1.4.1.99999")));
        }
    
        @Test
        @DisplayName("getSupportedMechs returns expected array")
        void getSupportedMechs_happyPath() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

       * returns an {@code ImmutableRangeSet}.
       *
       * @since 21.0
       */
      public ImmutableRangeSet<C> union(RangeSet<C> other) {
        return unionOf(Iterables.concat(asRanges(), other.asRanges()));
      }
    
      /**
       * Returns a new range set consisting of the intersection of this range set and {@code other}.
       *
       * <p>This is essentially the same as {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java

            long secondCall = response.getOffset();
            long thirdCall = response.getOffset();
    
            assertEquals(66L, firstCall, "First call should return 66");
            assertEquals(66L, secondCall, "Second call should return 66");
            assertEquals(66L, thirdCall, "Third call should return 66");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/StatsAccumulator.java

          max = Math.max(max, otherMax);
        }
      }
    
      /** Returns an immutable snapshot of the current statistics. */
      public Stats snapshot() {
        return new Stats(count, mean, sumOfSquaresOfDeltas, min, max);
      }
    
      /** Returns the number of values. */
      public long count() {
        return count;
      }
    
      /**
       * Returns the <a href="http://en.wikipedia.org/wiki/Arithmetic_mean">arithmetic mean</a> of the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbPipeHandleImplTest.java

                public SmbPipeResource getPipe() {
                    return mock(SmbPipeResource.class);
                }
    
                @Override
                public InputStream getInput() throws CIFSException {
                    return null;
                }
    
                @Override
                public OutputStream getOutput() throws CIFSException {
                    return null;
                }
    
                @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableCollection.java

      Object @Nullable [] internalArray() {
        return null;
      }
    
      /**
       * If this collection is backed by an array of its elements in insertion order, returns the offset
       * where this collection's elements start.
       */
      int internalArrayStart() {
        throw new UnsupportedOperationException();
      }
    
      /**
       * If this collection is backed by an array of its elements in insertion order, returns the offset
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java

        @Test
        @DisplayName("Test getCreateTime returns 0")
        void testGetCreateTime() {
            assertEquals(0L, fileStandardInfo.getCreateTime());
        }
    
        @Test
        @DisplayName("Test getLastWriteTime returns 0")
        void testGetLastWriteTime() {
            assertEquals(0L, fileStandardInfo.getLastWriteTime());
        }
    
        @Test
        @DisplayName("Test getLastAccessTime returns 0")
        void testGetLastAccessTime() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AtomicDouble.java

          if (updater.compareAndSet(this, current, next)) {
            return nextVal;
          }
        }
      }
    
      /**
       * Returns the String representation of the current value.
       *
       * @return the String representation of the current value
       */
      @Override
      public String toString() {
        return Double.toString(get());
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top