Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 415 for 1L (0.84 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

        }
    
        /**
         * Represents a SAML user.
         */
        public static class SamlUser implements FessUser {
    
            private static final long serialVersionUID = 1L;
    
            /**
             * The groups of the user.
             */
            protected String[] groups;
    
            /**
             * The roles of the user.
             */
            protected String[] roles;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Longs.java

       * compares, using {@link #compare(long, long)}), the first pair of values that follow any common
       * prefix, or when one array is a prefix of the other, treats the shorter array as the lesser. For
       * example, {@code [] < [1L] < [1L, 2L] < [2L]}.
       *
       * <p>The returned comparator is inconsistent with {@link Object#equals(Object)} (since arrays
       * support only identity equality), but it is consistent with {@link Arrays#equals(long[],
       * long[])}.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

     * and contains form fields for file crawler configuration parameters.
     */
    public class FileConfigPager implements Serializable {
    
        /** Serial version UID for serialization */
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor for file configuration pager.
         * Creates a new instance with default values.
         */
        public FileConfigPager() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

     * search, display, and navigation through related query results.
     */
    public class RelatedQueryPager implements Serializable {
        private static final long serialVersionUID = 1L;
    
        /**
         * Default current page number for pagination.
         */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /**
         * Total number of records in the result set.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

                }
            }
        }
    
        // Test FessConfig implementation
        private static class TestFessConfig extends FessConfig.SimpleImpl {
            private static final long serialVersionUID = 1L;
    
            boolean ldapAdminSyncPassword = false;
    
            @Override
            public boolean isLdapAdminSyncPassword() {
                return ldapAdminSyncPassword;
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt

          val cookieValue = setCookie.trimSubstring(pairEqualsSign + 1, cookiePairEnd)
          if (cookieValue.indexOfControlOrNonAscii() != -1) return null
    
          var expiresAt = MAX_DATE
          var deltaSeconds = -1L
          var domain: String? = null
          var path: String? = null
          var secureOnly = false
          var httpOnly = false
          var hostOnly = true
          var persistent = false
          var sameSite: String? = null
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/query/QueryTestBase.java

         */
        protected FessConfig.SimpleImpl createBaseFessConfig() {
            return new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public String get(String key) {
                    // Override to return empty string instead of null to avoid NullPointerException
                    return "";
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Utf8.java

        if (utf8Length < utf16Length) {
          // Necessary and sufficient condition for overflow because of maximum 3x expansion
          throw new IllegalArgumentException(
              "UTF-8 length does not fit in int: " + (utf8Length + (1L << 32)));
        }
        return utf8Length;
      }
    
      private static int encodedLengthGeneral(CharSequence sequence, int start) {
        int utf16Length = sequence.length();
        int utf8Length = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsDataConfig.java

        //                                                                          Definition
        //                                                                          ==========
        private static final long serialVersionUID = 1L;
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsScheduledJob.java

        //                                                                          Definition
        //                                                                          ==========
        private static final long serialVersionUID = 1L;
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top