Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for notimestamp (0.06 sec)

  1. android/pom.xml

            </plugin>
            <plugin>
              <artifactId>maven-javadoc-plugin</artifactId>
              <version>3.11.2</version>
              <configuration>
                <quiet>true</quiet>
                <notimestamp>true</notimestamp>
                <encoding>UTF-8</encoding>
                <docencoding>UTF-8</docencoding>
                <charset>UTF-8</charset>
                <additionalOptions>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  2. pom.xml

            </plugin>
            <plugin>
              <artifactId>maven-javadoc-plugin</artifactId>
              <version>3.11.2</version>
              <configuration>
                <quiet>true</quiet>
                <notimestamp>true</notimestamp>
                <encoding>UTF-8</encoding>
                <docencoding>UTF-8</docencoding>
                <charset>UTF-8</charset>
                <additionalOptions>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            // Add rotation counter and timestamp for key uniqueness (SMB3-style)
            final ByteBuffer saltBuffer = ByteBuffer.wrap(modifiedSessionKey, sessionKey.length, 8);
            saltBuffer.order(java.nio.ByteOrder.LITTLE_ENDIAN);
            saltBuffer.putInt(rotationCount); // Rotation counter
            saltBuffer.putInt((int) (System.currentTimeMillis() / 1000)); // Timestamp for additional uniqueness
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        /** Session ID for secure key management */
        private String sessionId = null;
        /** Time-to-live for cached authentication in milliseconds */
        private long authenticationTTL = 3600000L; // 1 hour default
        /** Timestamp when the authentication was created */
        private long authenticationTimestamp = System.currentTimeMillis();
        /** Flag to track if this authenticator has been closed */
        private volatile boolean closed = false;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

             * @param breaking set breaking state
             */
            public void setBreaking(boolean breaking) {
                this.breaking = breaking;
            }
    
            /**
             * Gets the timestamp of the last lease access
             * @return last access time in milliseconds
             */
            public long getLastAccessTime() {
                return lastAccessTime;
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

         *
         * @return the negotiateContexts
         */
        public NegotiateContextResponse[] getNegotiateContexts() {
            return this.negotiateContexts;
        }
    
        /**
         * Gets the server start time timestamp.
         *
         * @return the serverStartTime
         */
        public long getServerStartTime() {
            return this.serverStartTime;
        }
    
        /**
         * Gets the security mode flags from the server.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        protected int majorVersion;
    
        /** The minor version number. */
        protected int minorVersion;
    
        /** The product version string. */
        protected String productVersion;
    
        /** The end-of-life timestamp for the application. */
        protected long eolTime;
    
        private short systemCpuPercent;
    
        private long systemCpuCheckTime;
    
        private long systemCpuCheckInterval = 1000L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    callback.run();
                });
                break;
            }
        }
    
        /**
         * Generates a new index name with timestamp suffix.
         *
         * @param configIndex the base index configuration name
         * @return the generated index name with timestamp
         */
        protected String generateNewIndexName(final String configIndex) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top