Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 5,066 for Returns (0.05 sec)

  1. 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)
  2. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * @param ip {@link InetAddress} to be converted to URI string literal
       * @return {@code String} containing URI-safe string literal
       */
      public static String toUriString(InetAddress ip) {
        if (ip instanceof Inet6Address) {
          return "[" + toAddrString(ip) + "]";
        }
        return toAddrString(ip);
      }
    
      /**
       * Returns an InetAddress representing the literal IPv4 or IPv6 host portion of a URL, encoded in
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java

         * @return {@code true} if this range contains the specified version, {@code false} otherwise
         */
        boolean contains(@Nonnull Version version);
    
        /**
         * Returns the upper boundary of this range, or {@code null} if none.
         */
        @Nullable
        Boundary getUpperBoundary();
    
        /**
         * Returns the lower boundary of this range, or {@code null} if none.
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SecurityBlobTest.java

            assertFalse(a.equals("not a blob"), "equals(other type) should be false");
        }
    
        // Ensures clone() returns a deep copy; mutations are independent across instances
        @Test
        @DisplayName("clone: returns deep copy and independent state")
        void clone_returnsDeepCopy() {
            // Arrange
            byte[] data = new byte[] { 10, 20, 30 };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Multiset.java

       */
      interface Entry<E extends @Nullable Object> {
    
        /**
         * Returns the multiset element corresponding to this entry. Multiple calls to this method
         * always return the same instance.
         *
         * @return the element corresponding to this entry
         */
        @ParametricNullness
        E getElement();
    
        /**
         * Returns the count of the associated element in the underlying multiset. This count may either
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java

        }
    
        /**
         * Returns the {@link Class} of the target.
         *
         * @return {@link Class} of the target
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * Returns the method name.
         *
         * @return Method name
         */
        public String getMethodName() {
            return methodName;
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  9. 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)
  10. android/guava/src/com/google/common/collect/Sets.java

           */
          return inputSet.keySet().hashCode() << (inputSet.size() - 1);
        }
    
        @Override
        public String toString() {
          return "powerSet(" + inputSet + ")";
        }
      }
    
      /**
       * Returns the set of all subsets of {@code set} of size {@code size}. For example, {@code
       * combinations(ImmutableSet.of(1, 2, 3), 2)} returns the set {@code {{1, 2}, {1, 3}, {2, 3}}}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
Back to top