- Sort Score
- Result 10 results
- Languages All
Results 1331 - 1340 of 5,353 for Return (0.12 sec)
-
cmd/bucket-quota.go
return quotaCfg, fmt.Errorf("invalid quota type 'fifo'") } return quotaCfg, fmt.Errorf("Invalid quota config %#v", quotaCfg) } return } func (sys *BucketQuotaSys) enforceQuotaHard(ctx context.Context, bucket string, size int64) error { if size < 0 { return nil } q, err := sys.Get(ctx, bucket) if err != nil { return err } var quotaSize uint64
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Aug 06 23:48:58 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
return bytesSent.get(); } /** * Get number of bytes received * * @return bytes received */ public long getBytesReceived() { return bytesReceived.get(); } /** * Get number of requests sent * * @return requests sent */ public long getRequestsSent() { return requestsSent.get(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionBean.java
public int getFetchSize() { return getSqlClause().getFetchSize(); } @Override public int getFetchPageNumber() { return getSqlClause().getFetchPageNumber(); } @Override public int getPageStartIndex() { return getSqlClause().getPageStartIndex(); } @Override public int getPageEndIndex() { return getSqlClause().getPageEndIndex(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionBean.java
public int getFetchSize() { return getSqlClause().getFetchSize(); } @Override public int getFetchPageNumber() { return getSqlClause().getFetchPageNumber(); } @Override public int getPageStartIndex() { return getSqlClause().getPageStartIndex(); } @Override public int getPageEndIndex() { return getSqlClause().getPageEndIndex(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 17.8K bytes - Viewed (0) -
cmd/warm-backend-gcs.go
_, err := pager.NextPage(&gcsObjects) if err != nil { return false, gcsToObjectError(err, gcs.Bucket, gcs.Prefix) } if len(gcsObjects) > 0 { return true, nil } return false, nil } func newWarmBackendGCS(conf madmin.TierGCS, tier string) (*warmBackendGCS, error) { // Validation code if conf.Creds == "" { return nil, errors.New("empty credentials unsupported") }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/Curl.java
* @return a new CurlRequest object configured with the POST method and the specified URL */ public static CurlRequest post(final String url) { return new CurlRequest(Method.POST, url); } /** * Creates a new CurlRequest with the HTTP PUT method for the specified URL. * * @param url the URL to which the PUT request will be sent
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 5.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java
return value.replace(USERNAME, credentials.getUserPrincipal().getName()).replace(PASSWORD, credentials.getPassword()); } return StringUtil.EMPTY; } /** * Returns a string representation of this object. * @return A string representation. */ @Override public String toString() { return "FormScheme [parameterMap=" + parameterMap + "]";
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (1) -
src/main/java/jcifs/Encodable.java
* @param dst the destination byte array to encode into * @param dstIndex the starting index in the destination array * @return encoded length */ int encode(byte[] dst, int dstIndex); /** * Returns the size in bytes that this object will occupy when encoded. * * @return the encoded size */ int size();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
return null; } } /** * Gets the date of the storage object. * This method returns the same value as getLastModified(). * * @return The date in milliseconds since epoch */ @Override public long getDate() { return getLastModified(); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
e.setCreatedAt(now); e.setUpdatedAt(now); return e; }); CommonPoolUtil.execute(() -> userInfoBhv.insertOrUpdate(userInfo)); return userInfo; } /** * Gets user information. * * @param userCode The user code. * @return The user information. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0)