Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 5,432 for Republic (0.04 sec)

  1. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class ScoreUpdaterTest extends UnitFessTestCase {
    
        private ScoreUpdater scoreUpdater;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            scoreUpdater = new ScoreUpdater();
        }
    
        // Test constructor
        public void test_constructor() {
            ScoreUpdater updater = new ScoreUpdater();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsRoleCB.java

        @Override
        public RoleDbm asDBMeta() {
            return RoleDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "role";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaProvider.java

     */
    public class TcpRdmaProvider implements RdmaProvider {
    
        /**
         * Creates a new TCP RDMA provider instance
         */
        public TcpRdmaProvider() {
            // Default constructor
        }
    
        @Override
        public boolean isAvailable() {
            return true; // TCP is always available
        }
    
        @Override
        public Set<RdmaCapability> getSupportedCapabilities() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

          invokable.setAccessible(true);
          if (invokable.isPublic() && invokable.isStatic() && !invokable.isSynthetic()) {
            builder.add(invokable);
          }
        }
        return new FactoryMethodReturnValueTester(cls, builder.build(), "public static methods");
      }
    
      /** Runs sanity tests against return values of static factory methods declared by a class. */
      public final class FactoryMethodReturnValueTester {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java

        }
    
        public void setDocId(String value) {
            registerModifiedProperty("docId");
            this.docId = value;
        }
    
        public String getQueryId() {
            checkSpecifiedProperty("queryId");
            return convertEmptyToNull(queryId);
        }
    
        public void setQueryId(String value) {
            registerModifiedProperty("queryId");
            this.queryId = value;
        }
    
        public String getUrl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class FessApiFailureHookTest extends UnitFessTestCase {
    
        private FessApiFailureHook apiFailureHook;
        private FessConfig originalFessConfig;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.register(new SystemHelper(), "systemHelper");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableCollection.java

      }
    
      @Override
      public final boolean add(E e) {
        throw new UnsupportedOperationException();
      }
    
      @Override
      public final boolean remove(@Nullable Object object) {
        throw new UnsupportedOperationException();
      }
    
      @Override
      public final boolean addAll(Collection<? extends E> newElements) {
        throw new UnsupportedOperationException();
      }
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

         */
        @Override
        public int getFileIndex() {
            return this.fileIndex;
        }
    
        /**
         * Gets the filename.
         *
         * @return the filename
         */
        public String getFilename() {
            return this.filename;
        }
    
        @Override
        public int getAttributes() {
            return this.extFileAttributes;
        }
    
        @Override
        public long createTime() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/rdma/RdmaCapabilities.java

         */
        public static final int DEFAULT_SEND_CREDIT_TARGET = 32;
    
        /**
         * Default maximum receive size (8KB)
         */
        public static final int DEFAULT_MAX_RECEIVE_SIZE = 8192;
    
        /**
         * Default maximum fragmented size (128KB)
         */
        public static final int DEFAULT_MAX_FRAGMENTED_SIZE = 131072; // 128KB
    
        /**
         * Default maximum read/write size (1MB)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 2K bytes
    - Viewed (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

        public Iterator<ResolutionNode> getChildrenIterator() {
            return children.iterator();
        }
    
        public int getDepth() {
            return depth;
        }
    
        public List<ArtifactRepository> getRemoteRepositories() {
            return remoteRepositories;
        }
    
        public boolean isActive() {
            return active;
        }
    
        public void enable() {
            active = true;
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top