Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 592 for Constant (0.09 sec)

  1. android/guava/src/com/google/common/base/CaseFormat.java

      UPPER_CAMEL(CharMatcher.inRange('A', 'Z'), "") {
        @Override
        String normalizeWord(String word) {
          return firstCharOnlyToUpper(word);
        }
      },
    
      /** Java and C++ constant naming convention, e.g., "UPPER_UNDERSCORE". */
      UPPER_UNDERSCORE(CharMatcher.is('_'), "_") {
        @Override
        String normalizeWord(String word) {
          return Ascii.toUpperCase(word);
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 15 22:14:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java

                    || algorithm == COMPRESSION_LZNT1 || algorithm == COMPRESSION_PATTERN_V1;
        }
    
        /**
         * Gets a human-readable name for the compression algorithm.
         *
         * @param algorithm the algorithm constant
         * @return the algorithm name
         */
        public static String getAlgorithmName(int algorithm) {
            switch (algorithm) {
            case COMPRESSION_NONE:
                return "None";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

     */
    public class SsoAction extends FessLoginAction {
        // ===================================================================================
        //                                                                            Constant
        //
        private static final Logger logger = LogManager.getLogger(SsoAction.class);
    
        /**
         * Constructs a new SSO action.
         */
        public SsoAction() {
            // do nothing
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

     */
    public class ApiAdminDocumentsAction extends FessApiAdminAction {
    
        // ===================================================================================
        // Constant
        //
        private static final Logger logger = LogManager.getLogger(ApiAdminSearchlistAction.class);
    
        // ===================================================================================
        // Constructor
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SystemUtilTest extends UnitFessTestCase {
    
        public void test_getSearchEngineHttpAddress_null() {
            // Clear the system property to test null case
            String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
            System.clearProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashMap.java

     * supported. Null keys and values are supported.
     *
     * <p>{@code containsKey(k)}, {@code put(k, v)} and {@code remove(k)} are all (expected and
     * amortized) constant time operations. Expected in the hashtable sense (depends on the hash
     * function doing a good job of distributing the elements to the buckets to a distribution not far
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/SmbConstantsTest.java

        }
    
        @Test
        @DisplayName("Should validate constants are immutable interface values")
        void testConstantNature() {
            // SmbConstants is an interface with static final fields
            // Verify constants maintain their values
            assertEquals(445, SmbConstants.DEFAULT_PORT);
    
            // Test that the constant values are as expected for protocol compliance
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashSet.java

     * supported. The elements can be any objects.
     *
     * <p>{@code contains(x)}, {@code add(x)} and {@code remove(x)}, are all (expected and amortized)
     * constant time operations. Expected in the hashtable sense (depends on the hash function doing a
     * good job of distributing the elements to the buckets to a distribution not far from uniform), and
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/PythonJob.java

            return buf.toString();
        }
    
        /**
         * Returns the execution type identifier for Python jobs.
         *
         * @return the execution type constant for Python jobs
         */
        @Override
        protected String getExecuteType() {
            return Constants.EXECUTE_TYPE_PYTHON;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  10. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java

     * that can be set through command-line arguments or configuration files.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Options {
        /** Constant indicating that the options source is the command-line interface. */
        String SOURCE_CLI = "CLI";
    
        /**
         * Returns a simple designator of the options source, such as "cli", "maven.conf", etc.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jan 13 16:14:35 UTC 2025
    - 6.5K bytes
    - Viewed (0)
Back to top