Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setForce (0.1 sec)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        public void close() {
            if (runner != null) {
                try {
                    client.admin()
                            .indices()
                            .prepareFlush()
                            .setForce(true)
                            .execute()
                            .actionGet(ComponentUtil.getFessConfig().getIndexIndicesTimeout());
                } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java

            // When/Then
            assertThrows(IllegalArgumentException.class, () -> {
                transformHeader.setNonce(shortNonce);
            });
    
            assertThrows(IllegalArgumentException.class, () -> {
                transformHeader.setNonce(longNonce);
            });
        }
    
        @Test
        @DisplayName("Should handle null signature")
        void testNullSignature() {
            // When/Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java

        }
    
        /**
         * Sets the nonce for encryption
         *
         * @param nonce
         *            the nonce to set (12 bytes for CCM, 16 bytes for GCM)
         */
        public void setNonce(final byte[] nonce) {
            if (nonce.length == 12) {
                // For CCM cipher, pad nonce to 16 bytes with zeros
                java.util.Arrays.fill(this.nonce, (byte) 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              <code>
                <![CDATA[
        public static final String SOURCE_POM = "pom";
    
        public static final String SOURCE_SETTINGS = "settings.xml";
    
        public void setSource(String source) {
            getDelegate().setSource(source);
        }
    
        public String getSource() {
            return getDelegate().getSource();
        }
    
        /**
         * @see java.lang.Object#toString()
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
Back to top