Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 276 for timeStamp (0.05 sec)

  1. src/main/java/jcifs/util/SmbCircuitBreaker.java

                }
    
                public synchronized void reset(long timestamp) {
                    requestCount = 0;
                    failureCount = 0;
                    totalResponseTime = 0;
                    minResponseTime = Long.MAX_VALUE;
                    maxResponseTime = 0;
                    lastUpdateTime = timestamp;
                }
    
                public long getRequestCount() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  2. 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)
  3. cmd/bucket-metadata.go

    		if err := deleteConfig(ctx, objectAPI, configFile); err != nil && !errors.Is(err, errConfigNotFound) {
    			internalLogIf(ctx, err, logger.WarningKind)
    		}
    	}
    
    	return nil
    }
    
    // default timestamps to metadata Created timestamp if unset.
    func (b *BucketMetadata) defaultTimestamps() {
    	if b.PolicyConfigUpdatedAt.IsZero() {
    		b.PolicyConfigUpdatedAt = b.Created
    	}
    
    	if b.EncryptionConfigUpdatedAt.IsZero() {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 16 14:27:42 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            assertTrue(searchRequestParams.hasConditionQuery());
        }
    
        public void test_hasConditionQuery_withTimestamp() {
            // Test with timestamp
            testParams.conditions.put(SearchRequestParams.AS_TIMESTAMP, new String[] { "2024-01-01" });
            assertTrue(searchRequestParams.hasConditionQuery());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  5. chainable_api.go

    	tx.Statement.assigns = attrs
    	return
    }
    
    // Unscoped disables the global scope of soft deletion in a query.
    // By default, GORM uses soft deletion, marking records as "deleted"
    // by setting a timestamp on a specific field (e.g., `deleted_at`).
    // Unscoped allows queries to include records marked as deleted,
    // overriding the soft deletion behavior.
    // Example:
    //
    //	var users []User
    //	db.Unscoped().Find(&users)
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            if (lastModified != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldLastModified(), lastModified);
                // timestamp
                putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), lastModified);
            } else {
                // timestamp
                putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), now);
            }
            // indexingTarget
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                public String getIndexFieldLastModified() {
                    return "last_modified";
                }
    
                @Override
                public String getIndexFieldTimestamp() {
                    return "timestamp";
                }
    
                @Override
                public String getIndexFieldMimetype() {
                    return "mimetype";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    		}
    	}
    
    	writeSuccessResponseJSON(w, dataUsageInfoJSON)
    }
    
    func lriToLockEntry(l lockRequesterInfo, now time.Time, resource, server string) *madmin.LockEntry {
    	t := time.Unix(0, l.Timestamp)
    	entry := &madmin.LockEntry{
    		Timestamp:  t,
    		Elapsed:    now.Sub(t),
    		Resource:   resource,
    		ServerList: []string{server},
    		Source:     l.Source,
    		Owner:      l.Owner,
    		ID:         l.UID,
    		Quorum:     l.Quorum,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt

       */
      internal var allocationLimit = 1
        private set
    
      /** Current calls carried by this connection. */
      val calls = mutableListOf<Reference<RealCall>>()
    
      /** Timestamp when `allocations.size()` reached zero. Also assigned upon initial connection. */
      var idleAtNs = Long.MAX_VALUE
    
      /**
       * Returns true if this is an HTTP/2 connection. Such connections can be used in multiple HTTP
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            }
    
            bufferIndex += 12;
    
            // Validate sufficient buffer space for timestamps and offsets
            if (buffer.length < bufferIndex + 8 + 8 + 4 + 4) {
                throw new SMBProtocolDecodingException("Buffer too small for timestamps and offsets section");
            }
    
            this.systemTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
Back to top