Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 761 for actions (0.04 sec)

  1. src/test/java/jcifs/FileNotifyInformationTest.java

                        FileNotifyInformation.FILE_ACTION_REMOVED_BY_DELETE };
    
                // Verify sequential values from 1 to 9
                for (int i = 0; i < actions.length; i++) {
                    assertEquals(i + 1, actions[i], String.format("Action at index %d should have value %d", i, i + 1));
                }
            }
        }
    
        @Nested
        @DisplayName("Interface Methods Tests")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  2. .github/release-drafter-3.x.yml

    # "AS IS" BASIS, 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.
    
    _extends: maven-gh-actions-shared:.github/release-drafter.yml
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 18 14:16:25 UTC 2025
    - 890 bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/NotifyResponseTest.java

            assertNotNull(notifications);
            assertTrue(notifications.isEmpty());
        }
    
        @Test
        @DisplayName("Test NotifyResponse with different file actions")
        void testNotifyResponseWithDifferentFileActions() {
            // Create mock notifications for different actions
            FileNotifyInformation addedFile = mock(FileNotifyInformation.class);
            when(addedFile.getAction()).thenReturn(FileNotifyInformation.FILE_ACTION_ADDED);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/SsoResponseType.java

    package org.codelibs.fess.sso;
    
    /**
     * Represents the type of SSO (Single Sign-On) response being requested.
     * This enum is used to differentiate between various SSO operations,
     * such as metadata requests and logout actions.
     */
    public enum SsoResponseType {
        /**
         * Indicates a request for SSO metadata, which is typically used for
         * configuration and discovery in protocols like SAML.
         */
        METADATA,
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  5. README.md

    # Fess: Enterprise Search Server
    [![Java CI with Maven](https://github.com/codelibs/fess/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/fess/actions/workflows/maven.yml)
    [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/gitbucket/gitbucket/blob/master/LICENSE)
    ![GitHub Release](https://img.shields.io/github/v/release/codelibs/fess)
    
    
    ## Overview
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 06:34:32 UTC 2025
    - 7.2K bytes
    - Viewed (2)
  6. src/main/java/org/codelibs/fess/validation/FessActionValidator.java

    import org.lastaflute.web.servlet.request.RequestManager;
    import org.lastaflute.web.validation.ActionValidator;
    
    /**
     * Fess-specific action validator that extends the LastaFlute ActionValidator.
     * This validator provides validation functionality for Fess web actions with custom
     * message handling and runtime group validation.
     *
     * @param <MESSAGES> the type of user messages used by this validator
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. .github/workflows/release-drafter.yml

    # under the License.
       
    name: Release Drafter
    on:
      push:
        branches:
          - master
      workflow_dispatch:
    
    jobs:
       update_release_draft:
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:30:05 UTC 2025
    - 993 bytes
    - Viewed (0)
  8. .github/workflows/pr-automation.yml

    # under the License.
    
    name: PR Automation
    on:
      pull_request_target:
        types:
          - closed
    
    jobs:
      pr-automation:
        name: PR Automation
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Feb 15 08:33:13 UTC 2025
    - 991 bytes
    - Viewed (0)
  9. .github/workflows/codeql-analysis.yml

            # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
            language: ['java']
            # Learn more...
            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  10. .github/release-drafter.yml

    # "AS IS" BASIS, 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.
    
    _extends: maven-gh-actions-shared
    tag-template: maven-$RESOLVED_VERSION
    
    include-pre-releases: true
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 18 14:16:25 UTC 2025
    - 907 bytes
    - Viewed (0)
Back to top