Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 253 for Center (0.29 sec)

  1. src/main/java/org/codelibs/core/beans/PropertyDesc.java

        /**
         * Returns the getter method.
         *
         * @return the getter method
         */
        Method getReadMethod();
    
        /**
         * Returns whether the property has a getter method.
         *
         * @return whether the property has a getter method
         */
        boolean hasReadMethod();
    
        /**
         * Returns the setter method.
         *
         * @return the setter method
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/webapp/js/profile.js

        var $submitButton;
        if (e.which === 13) {
          $submitButton = $("input#submit, button#submit");
          if ($submitButton.length > 0) {
            $submitButton[0].submit();
          }
          // ignore enter key down
          return false;
        }
      });
    
      $(".table tr[data-href]").each(function() {
        $(this)
          .css("cursor", "pointer")
          .hover(
            function() {
              $(this).addClass("active");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Sep 12 06:47:49 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  3. src/main/webapp/js/login.js

        var $submitButton;
        if (e.which === 13) {
          $submitButton = $("input#submit, button#submit");
          if ($submitButton.length > 0) {
            $submitButton[0].submit();
          }
          // ignore enter key down
          return false;
        }
      });
    
      $(".table tr[data-href]").each(function() {
        $(this)
          .css("cursor", "pointer")
          .hover(
            function() {
              $(this).addClass("active");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Sep 12 06:47:49 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            assertSame(execJob, result);
        }
    
        // Test sessionId setter
        public void test_sessionId() {
            String testSessionId = "test-session-123";
            ExecJob result = execJob.sessionId(testSessionId);
            assertEquals(testSessionId, execJob.sessionId);
            assertSame(execJob, result);
        }
    
        // Test logFilePath setter
        public void test_logFilePath() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractService.java

       *
       * @throws IllegalStateException if the service is not {@link State#STARTING}.
       */
      protected final void notifyStarted() {
        monitor.enter();
        try {
          // We have to examine the internal state of the snapshot here to properly handle the stop
          // while starting case.
          if (snapshot.state != STARTING) {
            IllegalStateException failure =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

         * @param propertyType
         *            The property type. Must not be {@literal null}.
         * @param readMethod
         *            The getter method.
         * @param writeMethod
         *            The setter method.
         * @param beanDesc
         *            The {@link BeanDesc}. Must not be {@literal null}.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Streams.java

       * stream is empty.
       *
       * <p>Equivalent to {@code stream.reduce((a, b) -> b)}, but may perform significantly better. This
       * method's runtime will be between O(log n) and O(n), performing better on <a
       * href="http://gee.cs.oswego.edu/dl/html/StreamParallelGuidance.html">efficiently splittable</a>
       * streams.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 37K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/admin.js

        if (e.which === 13) {
          var $submitButton = $("input#submit, button#submit");
          if ($submitButton.size() > 0) {
            $submitButton[0].submit();
          }
          // ignore enter key down
          return false;
        }
      });
    
      $(".table tr[data-href]").each(function() {
        $(this)
          .css("cursor", "pointer")
          .hover(
            function() {
              $(this).addClass("active");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Aug 06 20:44:47 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/PingResponseTest.java

            // These tests verify the PingResponse class structure is correct
            assertTrue(true);
        }
    
        public void test_getClusterName_returnsCorrectValue() {
            // Test cluster name getter exists
            FessConfig mockConfig = new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public Set<String> getApiPingEsFieldSet() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractService.java

       *
       * @throws IllegalStateException if the service is not {@link State#STARTING}.
       */
      protected final void notifyStarted() {
        monitor.enter();
        try {
          // We have to examine the internal state of the snapshot here to properly handle the stop
          // while starting case.
          if (snapshot.state != STARTING) {
            IllegalStateException failure =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 20.3K bytes
    - Viewed (0)
Back to top