- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 506 for RIGHT (0.04 sec)
-
cmd/object-handlers-common.go
} // isETagEqual return true if the canonical representations of two ETag strings // are equal, false otherwise func isETagEqual(left, right string) bool { if strings.TrimSpace(right) == "*" { return true } return canonicalizeETag(left) == canonicalizeETag(right) } // setPutObjHeaders sets all the necessary headers returned back // upon a success Put/Copy/CompleteMultipart/Delete requests
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 03 06:33:53 UTC 2024 - 15.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/esreq/admin_esreq.jsp
<la:message key="labels.esreq_configuration" /> </h3> </div> <div class="card-body"> <div class="form-group row"> <label for="requestFile" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.esreq_request_file" /></label> <div class="col-sm-9"> <input id="requestFile" type="file" name="requestFile" class="form-control-file" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 20 09:26:42 UTC 2020 - 2.3K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Floats.java
INSTANCE; @Override public int compare(float[] left, float[] right) { int minLength = Math.min(left.length, right.length); for (int i = 0; i < minLength; i++) { int result = Float.compare(left[i], right[i]); if (result != 0) { return result; } } return left.length - right.length; } @Override public String toString() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 25.8K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Doubles.java
INSTANCE; @Override public int compare(double[] left, double[] right) { int minLength = Math.min(left.length, right.length); for (int i = 0; i < minLength; i++) { int result = Double.compare(left[i], right[i]); if (result != 0) { return result; } } return left.length - right.length; } @Override public String toString() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 27.9K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Floats.java
INSTANCE; @Override public int compare(float[] left, float[] right) { int minLength = Math.min(left.length, right.length); for (int i = 0; i < minLength; i++) { int result = Float.compare(left[i], right[i]); if (result != 0) { return result; } } return left.length - right.length; } @Override public String toString() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 25.8K bytes - Viewed (0) -
cmd/object-api-common.go
package cmd import ( "sync" "github.com/dustin/go-humanize" ) const ( // Block size used for all internal operations version 1. // TLDR.. // Not used anymore xl.meta captures the right blockSize // so blockSizeV2 should be used for all future purposes. // this value is kept here to calculate the max API // requests based on RAM size for existing content. blockSizeV1 = 10 * humanize.MiByte
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Nov 21 01:09:35 UTC 2023 - 2.1K bytes - Viewed (0) -
docs/en/docs/environment-variables.md
You can also create an environment variable only for a **specific program invocation**, that is only available to that program, and only for its duration. To do that, create it right before the program itself, on the same line: <div class="termy"> ```console // Create an env var MY_NAME in line for this program call $ MY_NAME="Wade Wilson" python main.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Sep 08 20:36:53 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/admin/crud/pagination.jsp
arg1="${f:h(pager.allPageCount)}" arg2="${f:h(pager.allRecordCount)}" /> </div> <nav aria-label="..."> </nav> <div class="col-sm-10"> <ul class="pagination pagination-sm m-0 float-right"> <c:if test="${pager.existPrePage}"> <li class="page-item"><la:link styleClass="page-link" href="list/${pager.currentPageNumber - 1}"> <la:message key="labels.prev_page" /> </la:link></li>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Feb 07 10:28:50 UTC 2020 - 1.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/role/admin_role_edit.jsp
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 3.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java
return y > 0 ? appendEscapeSequence('B', y) : y < 0 ? cursorUp(-y) : this; } /** * Moves the cursor right. If the parameter x is negative it moves the cursor left. * * @param x the number of characters to move right * @return this Ansi instance */ public Ansi cursorRight(final int x) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 23.1K bytes - Viewed (0)