Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1621 - 1630 of 4,465 for republic (0.54 seconds)

  1. guava-tests/test/com/google/common/cache/CacheReferencesTest.java

     * strengths.
     *
     * @author mike nonemacher
     */
    @NullUnmarked
    public class CacheReferencesTest extends TestCase {
    
      private static final CacheLoader<Key, String> KEY_TO_STRING_LOADER =
          new CacheLoader<Key, String>() {
            @Override
            public String load(Key key) {
              return key.toString();
            }
          };
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/Enums.java

     */
    @GwtIncompatible
    @J2ktIncompatible
    public final class Enums {
    
      private Enums() {}
    
      /**
       * Returns the {@link Field} in which {@code enumValue} is defined. For example, to get the {@code
       * Description} annotation on the {@code GOLF} constant of enum {@code Sport}, use {@code
       * Enums.getField(Sport.GOLF).getAnnotation(Description.class)}.
       *
       * @since 12.0
       */
      public static Field getField(Enum<?> enumValue) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 01 13:41:58 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

    import java.util.MissingResourceException;
    import java.util.ResourceBundle;
    
    import org.codelibs.core.misc.LocaleUtil;
    
    /**
     * Utility class for {@link ResourceBundle} operations.
     *
     * @author higa
     */
    public abstract class ResourceBundleUtil {
    
        /**
         * Do not instantiate.
         */
        protected ResourceBundleUtil() {
        }
    
        /**
         * Returns the bundle. Returns <code>null</code> if not found.
         *
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/core/io/ResourceTraversalTest.java

    import org.junit.Test;
    
    /**
     * @author taedium
     */
    public class ResourceTraversalTest {
    
        private static int count = 0;
    
        /**
         * @throws Exception
         */
        @Before
        public void setUp() throws Exception {
            count = 0;
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testForEachFile() throws Exception {
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 6K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/base/Joiner.java

     * @since 2.0
     */
    @GwtCompatible
    public class Joiner {
      /** Returns a joiner which automatically places {@code separator} between consecutive elements. */
      public static Joiner on(String separator) {
        return new Joiner(separator);
      }
    
      /** Returns a joiner which automatically places {@code separator} between consecutive elements. */
      public static Joiner on(char separator) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 17 20:26:29 GMT 2025
    - 19.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java

        public String name;
    
        /**
         * The password for the user.
         */
        @Size(max = 100)
        public String password;
    
        /**
         * The password confirmation field.
         */
        @Size(max = 100)
        public String confirmPassword;
    
        /**
         * The attributes map for the user.
         */
        public Map<String, String> attributes = new HashMap<>();
    
        /**
         * The roles assigned to the user.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  7. mockwebserver/api/mockwebserver3.api

    	public fun <init> ()V
    	public fun close ()V
    	public final fun enqueue (Lmockwebserver3/MockResponse;)V
    	public final fun getBodyLimit ()J
    	public final fun getDispatcher ()Lmockwebserver3/Dispatcher;
    	public final fun getHostName ()Ljava/lang/String;
    	public final fun getPort ()I
    	public final fun getProtocolNegotiationEnabled ()Z
    	public final fun getProtocols ()Ljava/util/List;
    	public final fun getProxyAddress ()Ljava/net/Proxy;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Jun 20 11:46:46 GMT 2025
    - 11.8K bytes
    - Click Count (0)
  8. android/guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

     *
     * @author Keith Bottner
     */
    @NullUnmarked
    public class LittleEndianDataOutputStreamTest extends TestCase {
    
      private final ByteArrayOutputStream baos = new ByteArrayOutputStream();
      private final LittleEndianDataOutputStream out = new LittleEndianDataOutputStream(baos);
    
      public void testWriteLittleEndian() throws IOException {
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  9. guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

     *
     * @author Keith Bottner
     */
    @NullUnmarked
    public class LittleEndianDataOutputStreamTest extends TestCase {
    
      private final ByteArrayOutputStream baos = new ByteArrayOutputStream();
      private final LittleEndianDataOutputStream out = new LittleEndianDataOutputStream(baos);
    
      public void testWriteLittleEndian() throws IOException {
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  10. guava/src/com/google/common/collect/JdkBackedImmutableBiMap.java

        this.entries = entries;
        this.forwardDelegate = forwardDelegate;
        this.backwardDelegate = backwardDelegate;
        this.inverse = inverse;
      }
    
      @Override
      public int size() {
        return entries.size();
      }
    
      @Override
      public ImmutableBiMap<V, K> inverse() {
        return inverse != null ? inverse : lazyInverse();
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 4.9K bytes
    - Click Count (0)
Back to Top