Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for design (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/design/FileAccessForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.design;
    
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form class for file access operations in the admin design interface.
     * This form handles file name validation for accessing design files.
     */
    public class FileAccessForm {
    
        /** The name of the file to access (required) */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/design/EditForm.java

        public EditForm() {
            // Default constructor
        }
    
        /**
         * The name of the design file being edited.
         * This specifies which template or design file to modify.
         */
        public String fileName;
    
        /**
         * The content of the design file.
         * This contains the actual template code, CSS, or other design content
         * that will be saved to the specified file.
         */
        public String content;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/design/DesignForm.java

     */
    package org.codelibs.fess.app.web.admin.design;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    
    /**
     * Form class for design file management in the admin interface.
     * Handles upload and management of design templates and CSS files.
     */
    public class DesignForm {
    
        /**
         * Creates a new instance of DesignForm.
         * This constructor initializes the form for design file management
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java

     */
    package org.codelibs.fess.app.web.admin.design;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    import jakarta.validation.constraints.Pattern;
    
    /**
     * Form for uploading design files to customize the appearance of the Fess search interface.
     * This form is used in the admin interface to upload CSS, JSP, and other design-related files
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.design;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.UnsupportedEncodingException;
    import java.net.URLDecoder;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Locale;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Adds a design JSP file name to the map.
         *
         * @param key   The key for the JSP file.
         * @param value The file name.
         */
        public void addDesignJspFileName(final String key, final String value) {
            designJspFileNameMap.put(key, value);
        }
    
        /**
         * Gets the design JSP file name for a given key.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.design;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class AdminDesignActionTest extends UnitFessTestCase {
        public void test_decodeJsp() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  8. samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt

        }
      }
    
      @Suppress("UNUSED_PARAMETER")
      private fun expectedFailure(
        className: String,
        cause: Throwable,
      ): Boolean =
        when (className) {
          "okhttp3.recipes.CheckHandshake" -> true // by design
          "okhttp3.recipes.RequestBodyCompression" -> true // expired token
          else -> false
        }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/annotations/VisibleForTesting.java

     * for use in test code.
     *
     * <p><b>Do not use this interface</b> for public or protected declarations: it is a fig leaf for
     * bad design, and it does not prevent anyone from using the declaration---and experience has shown
     * that they will. If the method breaks the encapsulation of its class, then its internal
     * representation will be hard to change. Instead, use <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jan 30 22:25:16 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/MapIteratorCache.java

    import java.util.Set;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A map-like data structure that wraps a backing map and caches values while iterating through
     * {@link #unmodifiableKeySet()}. By design, the cache is cleared when this structure is mutated. If
     * this structure is never mutated, it provides a thread-safe view of the backing map.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top