Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for activity (0.08 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

        public long getEstablishedTime() {
            return establishedTime;
        }
    
        /**
         * Get the last activity time
         *
         * @return last activity time in milliseconds
         */
        public long getLastActivityTime() {
            return lastActivityTime;
        }
    
        /**
         * Update activity timestamp
         */
        public void updateActivity() {
            this.lastActivityTime = System.currentTimeMillis();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

         * @param envMap The environment map.
         */
        public void setEnvMap(final Map<String, String> envMap) {
            this.envMap = envMap;
        }
    
        /**
         * Log the login activity.
         * @param user The user.
         */
        public void login(final OptionalThing<FessUserBean> user) {
            final Map<String, String> valueMap = new LinkedHashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

                // Verify that the rate limiter tracked some activity
                AuthenticationRateLimiter.RateLimiterStats stats = concurrentLimiter.getStats();
                assertTrue(stats.getActiveAccounts() > 0 || stats.getActiveIps() > 0, "Should have tracked some activity");
            } finally {
                concurrentLimiter.close();
            }
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

                        // 2. Wait for response
                        // 3. Process changes
                        // 4. Notify the lease manager
    
                        // Use adaptive polling interval based on activity
                        long pollInterval = determinePollInterval(handle);
                        Thread.sleep(pollInterval);
    
                        // Check if still active
                        if (!handle.isActive()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  5. cmd/bucket-replication-utils.go

    	DeleteMarker              bool                   // represents DeleteMarker replication state
    	ReplicationTimeStamp      time.Time              // timestamp when last replication activity happened
    	ReplicationStatusInternal string                 // stringified representation of all replication activity
    	// VersionPurgeStatusInternal is internally in the format "arn1=PENDING;arn2=COMPLETED;"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 26K bytes
    - Viewed (0)
  6. cmd/metrics.go

    	ch <- prometheus.MustNewConstMetric(
    		prometheus.NewDesc(
    			prometheus.BuildFQName(healMetricsNamespace, "time", "since_last_activity"),
    			"Time elapsed (in nano seconds) since last self healing activity. This is set to -1 until initial self heal activity",
    			nil, nil),
    		prometheus.GaugeValue,
    		float64(dur),
    	)
    	for k, v := range bgSeq.getScannedItemsMap() {
    		ch <- prometheus.MustNewConstMetric(
    			prometheus.NewDesc(
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         * @return The LDAP manager.
         */
        public static LdapManager getLdapManager() {
            return getComponent(LDAP_MANAGER);
        }
    
        /**
         * Gets the activity helper component.
         * @return The activity helper.
         */
        public static ActivityHelper getActivityHelper() {
            return getComponent(ACTIVITY_HELPER);
        }
    
        /**
         * Gets the request manager component.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  8. cmd/utils.go

    }
    
    // AuditLogOptions takes options for audit logging subsystem activity
    type AuditLogOptions struct {
    	Event     string
    	APIName   string
    	Status    string
    	Bucket    string
    	Object    string
    	VersionID string
    	Error     string
    	Tags      map[string]string
    }
    
    // sends audit logs for internal subsystem activity
    func auditLogInternal(ctx context.Context, opts AuditLogOptions) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 33K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        @Resource
        protected SessionManager sessionManager;
    
        /** Configuration manager for Fess application settings. */
        @Resource
        protected FessConfig fessConfig;
    
        /** Helper for managing user activity logging and tracking. */
        @Resource
        protected ActivityHelper activityHelper;
    
        /** Manager for handling HTTP response operations. */
        @Resource
        protected ResponseManager responseManager;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
  10. docs/vi/docs/index.md

    <div style="text-align: right; margin-right: 10%;">Deon Pillsbury - <strong>Cisco</strong> <a href="https://www.linkedin.com/posts/deonpillsbury_cisco-cx-python-activity-6963242628536487936-trAp/" target="_blank"><small>(ref)</small></a></div>
    
    ---
    
    ## **Typer**, giao diện dòng lệnh của FastAPI
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.9K bytes
    - Viewed (0)
Back to top