Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 290 for inherit (0.04 sec)

  1. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

                    appendExceptionMethod = method;
                    break;
                }
            }
    
            assertNotNull("Should inherit append method", appendMethod);
            assertNotNull("Should inherit appendTimestamp method", appendTimestampMethod);
            assertNotNull("Should inherit appendException method", appendExceptionMethod);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              "tls.keylog_file:$logFile",
              "-Y",
              "http2",
              "-O",
              "http2,tls",
            ).redirectInput(File("/dev/null"))
              .redirectOutput(Redirect.INHERIT)
              .redirectError(Redirect.INHERIT)
              .start()
          }
          Gui -> {
            return ProcessBuilder(
              "nohup",
              "wireshark",
              "-o",
              "tls.keylog_file:$logFile",
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/internal/Finalizer.java

      // By preference, we will use the Thread constructor that has an `inheritThreadLocals` parameter.
      // But before Java 9, our only way not to inherit ThreadLocals is to zap them after the thread
      // is created, by accessing a private field.
      private static final @Nullable Constructor<Thread> bigThreadConstructor =
          getBigThreadConstructor();
    
      private static final @Nullable Field inheritableThreadLocals =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            }
        }
    
        // Test that class annotation is inherited
        public void test_inheritedClassAnnotation() {
            Secured parentSecured = ParentClass.class.getAnnotation(Secured.class);
            assertNotNull(parentSecured);
            assertEquals("ROLE_PARENT", parentSecured.value()[0]);
    
            // Child class should inherit the annotation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/CreateBody.java

     */
    package org.codelibs.fess.app.web.api.admin.reqheader;
    
    import org.codelibs.fess.app.web.admin.reqheader.CreateForm;
    
    /**
     * Request body for creating request header via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    public class CreateBody extends CreateForm {
    
        /**
         * Creates a new CreateBody instance.
         */
        public CreateBody() {
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1011 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/CreateBody.java

    package org.codelibs.fess.app.web.api.admin.dict.protwords;
    
    import org.codelibs.fess.app.web.admin.dict.protwords.CreateForm;
    
    /**
     * Request body for creating protected words dictionary via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    public class CreateBody extends CreateForm {
    
        /**
         * Creates a new CreateBody instance.
         */
        public CreateBody() {
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/general/EditBody.java

    import org.codelibs.fess.app.web.admin.general.EditForm;
    
    /**
     * Request body class for general settings edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for general settings management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/EditBody.java

    package org.codelibs.fess.app.web.api.admin.joblog;
    
    import org.codelibs.fess.app.web.admin.joblog.EditForm;
    
    /**
     * Request body class for job log edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for job log management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/EditBody.java

    import org.codelibs.fess.app.web.admin.labeltype.EditForm;
    
    /**
     * Request body class for label type edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for label type management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/role/EditBody.java

     */
    package org.codelibs.fess.app.web.api.admin.role;
    
    import org.codelibs.fess.app.web.admin.role.EditForm;
    
    /**
     * Request body class for role edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for role management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
Back to top