Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,228 for final (0.07 sec)

  1. src/main/java/org/codelibs/core/io/LineIterator.java

     *
     * @author koichik
     */
    public class LineIterator implements Iterator<String> {
    
        /** String object indicating that {@link #line} is empty */
        protected static final String EMPTY = new String();
    
        /** {@link BufferedReader} */
        protected final BufferedReader reader;
    
        /** The line that has been read */
        protected String line = EMPTY;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/AccessTokenHelper.java

         * @param request The request.
         * @return The access token.
         */
        public String getAccessTokenFromRequest(final HttpServletRequest request) {
            final String token = request.getHeader("Authorization");
            if (token != null) {
                final String[] values = token.trim().split(" ");
                if (values.length == 2 && BEARER.equals(values[0])) {
                    return values[1];
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. samples/slack/src/main/java/okhttp3/slack/SlackApi.java

     * http://localhost:53203/oauth/}, passing the same port to this class’ constructor.
     */
    public final class SlackApi {
      private final HttpUrl baseUrl = HttpUrl.get("https://slack.com/api/");
      private final OkHttpClient httpClient;
      private final Moshi moshi;
    
      public final String clientId;
      public final String clientSecret;
      public final int port;
    
      public SlackApi(String clientId, String clientSecret, int port) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jul 06 19:30:55 UTC 2018
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

        /** 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
        }
    
        /** Default page size for pagination */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

         * @return a list of file configurations matching the criteria
         */
        public List<FileConfig> getFileConfigList(final FileConfigPager fileConfigPager) {
    
            final PagingResultBean<FileConfig> fileConfigList = fileConfigBhv.selectPage(cb -> {
                cb.paging(fileConfigPager.getPageSize(), fileConfigPager.getCurrentPageNumber());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

         * Gets a list of role types based on the pager.
         * @param roleTypePager The pager for role types.
         * @return A list of role types.
         */
        public List<RoleType> getRoleTypeList(final RoleTypePager roleTypePager) {
    
            final PagingResultBean<RoleType> roleTypeList = roleTypeBhv.selectPage(cb -> {
                cb.paging(roleTypePager.getPageSize(), roleTypePager.getCurrentPageNumber());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

        /**
         * The logger for this class.
         */
        protected static final Logger logger = Logger.getLogger(ContentOutputStream.class.getName());
    
        /**
         * The prefix for the temporary file name.
         */
        protected static final String PREFIX = "curl4j-";
    
        /**
         * The suffix for the temporary file name.
         */
        protected static final String SUFFIX = ".tmp";
    
        /**
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java

    import okio.ForwardingSink;
    import okio.Okio;
    import okio.Sink;
    import java.io.File;
    import java.io.IOException;
    
    public final class UploadProgress {
      private static final String IMGUR_CLIENT_ID = "9199fdef135c122";
      private static final MediaType MEDIA_TYPE_PNG = MediaType.get("image/png");
    
      private final OkHttpClient client = new OkHttpClient();
    
      public void run() throws Exception {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 4.2K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

     */
    public class SynonymPager implements Serializable {
    
        /**
         * Constructs a new pager for synonyms.
         */
        public SynonymPager() {
            // do nothing
        }
    
        private static final long serialVersionUID = 1L;
    
        /** The total number of records. */
        private int allRecordCount;
    
        /** The total number of pages. */
        private int allPageCount;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

         * @return a list of file authentication configurations for the current page
         */
        public List<FileAuthentication> getFileAuthenticationList(final FileAuthPager fileAuthenticationPager) {
    
            final PagingResultBean<FileAuthentication> fileAuthenticationList = fileAuthenticationBhv.selectPage(cb -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top