Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 366 for _max (0.02 sec)

  1. android/guava/src/com/google/common/primitives/Ints.java

      public static int max(int... array) {
        checkArgument(array.length > 0);
        int max = array[0];
        for (int i = 1; i < array.length; i++) {
          if (array[i] > max) {
            max = array[i];
          }
        }
        return max;
      }
    
      /**
       * Returns the value nearest to {@code value} which is within the closed range {@code [min..max]}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        /** Token (word) to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String token;
    
        /** Segmentation information for the token */
        @Required
        @Size(max = 1000)
        public String segmentation;
    
        /** Reading (pronunciation) of the token in katakana */
        @Required
        @Size(max = 1000)
        public String reading;
    
        /** Part of speech tag for the token */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        temporaryRedirectCachedWithCachingHeader(302, "Cache-Control", "max-age=60")
      }
    
      @Test
      fun temporaryRedirectCachedWithExpiresHeader() {
        temporaryRedirectCachedWithCachingHeader(307, "Expires", formatDate(1, TimeUnit.HOURS))
      }
    
      @Test
      fun temporaryRedirectCachedWithCacheControlHeader() {
        temporaryRedirectCachedWithCachingHeader(307, "Cache-Control", "max-age=60")
      }
    
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java

            // nothing
        }
    
        /**
         * The flag to replace aliases.
         */
        @Size(max = 10)
        public String replaceAliases;
    
        /**
         * The flag to reset dictionaries.
         */
        @Size(max = 10)
        public String resetDictionaries;
    
        /**
         * The number of shards for doc.
         */
        @Size(max = 10)
        public String numberOfShardsForDoc = ComponentUtil.getFessConfig().getIndexNumberOfShards();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/InstallBody.java

    public class InstallBody {
        /** Name of the plugin to install (required, max 100 characters) */
        @Required
        @Size(max = 100)
        public String name;
    
        /**
         * Default constructor.
         */
        public InstallBody() {
            // Default constructor
        }
    
        /** Version of the plugin to install (required, max 100 characters) */
        @Required
        @Size(max = 100)
        public String version;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    			<Policies>
    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    				max="${backup.max.history}" compressionLevel="9" />
    		</RollingFile>
    		<Rewrite name="AppFile">
    			<AppenderRef ref="AppRollingFile" />
    			<ErrorToWarnRewritePolicy loggers="org.apache.fontbox,org.apache.pdfbox,org.apache.poi" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ComparatorsTest.java

        assertThat(min(1, 2)).isEqualTo(1);
        assertThat(min(2, 1)).isEqualTo(1);
        assertThat(max(1, 2)).isEqualTo(2);
        assertThat(max(2, 1)).isEqualTo(2);
      }
    
      public void testMinMaxNatural_equalInstances() {
        Foo a = new Foo(1);
        Foo b = new Foo(1);
        assertThat(min(a, b)).isSameInstanceAs(a);
        assertThat(max(a, b)).isSameInstanceAs(a);
      }
    
      public void testMinMaxComparator() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Apr 12 15:07:59 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 1000 */
        String PAGE_USER_MAX_FETCH_SIZE = "page.user.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_ROLE_MAX_FETCH_SIZE = "page.role.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_GROUP_MAX_FETCH_SIZE = "page.group.max.fetch.size";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/escape/ArrayBasedEscaperMap.java

        checkNotNull(map); // GWT specific check (do not optimize)
        if (map.isEmpty()) {
          return EMPTY_REPLACEMENT_ARRAY;
        }
        char max = max(map.keySet());
        char[][] replacements = new char[max + 1][];
        for (Character c : map.keySet()) {
          replacements[c] = map.get(c).toCharArray();
        }
        return replacements;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/CreateForm.java

         */
        @Required
        @Size(max = 10000)
        public String term;
    
        /**
         * The related content to be displayed.
         */
        @Required
        @Size(max = 10000)
        public String content;
    
        /**
         * The virtual host for which this related content applies.
         */
        @Size(max = 1000)
        public String virtualHost;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top