- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 1,902 for station (0.06 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt
private fun retryAfter( userResponse: Response, defaultDelay: Int, ): Int { val header = userResponse.header("Retry-After") ?: return defaultDelay // https://tools.ietf.org/html/rfc7231#section-7.1.3 // currently ignores a HTTP-date, and assumes any non int 0 is a delay if (header.matches("\\d+".toRegex())) { return Integer.valueOf(header) } return Integer.MAX_VALUE }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 13:24:48 UTC 2024 - 12.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/AbstractStandardUndirectedGraphTest.java
* limitations under the License. */ package com.google.common.graph; import static com.google.common.truth.Truth.assertThat; import static com.google.common.truth.TruthJUnit.assume; import static org.junit.Assert.assertThrows; import static org.junit.Assert.assertTrue; import com.google.common.testing.EqualsTester; import java.util.Set; import org.junit.After;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 02 18:21:29 UTC 2024 - 12.7K bytes - Viewed (0) -
docs/en/docs/environment-variables.md
how environment variables would be useful and applicable right away. But they keep showing up in many different scenarios when you are developing, so it's good to know about them. For example, you will need this information in the next section, about [Virtual Environments](virtual-environments.md)....
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Sep 08 20:36:53 UTC 2024 - 7.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java
@SuppressWarnings({"checkstyle:methodname"}) @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultInheritanceAssembler implements InheritanceAssembler { private static final String CHILD_DIRECTORY = "child-directory"; private static final String CHILD_DIRECTORY_PROPERTY = "project.directory"; private final InheritanceModelMerger merger = new InheritanceModelMerger(); @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Feb 14 12:15:45 UTC 2020 - 31.4K bytes - Viewed (0) -
guava/src/com/google/common/base/Utf8.java
package com.google.common.base; import static com.google.common.base.Preconditions.checkPositionIndexes; import static java.lang.Character.MAX_SURROGATE; import static java.lang.Character.MIN_SURROGATE; import com.google.common.annotations.GwtCompatible; /** * Low-level, high-performance utility methods related to the {@linkplain Charsets#UTF_8 UTF-8} * character encoding. UTF-8 is defined in section D92 of <a
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
/** * */ public static final int FILE_EXECUTE = 0x00000020; // 6 /** * */ public static final int FILE_DELETE = 0x00000040; // 7 /** * */ public static final int FILE_READ_ATTRIBUTES = 0x00000080; // 8 /** * */ public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9 /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Range.java
} } @SuppressWarnings("unchecked") // this method may throw CCE static int compareOrThrow(Comparable left, Comparable right) { return left.compareTo(right); } /** Needed to serialize sorted collections of Ranges. */ private static class RangeLexOrdering extends Ordering<Range<?>> implements Serializable { static final Ordering<?> INSTANCE = new RangeLexOrdering(); @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 27.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp
<la:message key="labels.crawler_title_edit"/> </h1> </div> </div> </div> </div> <section class="content"> <la:form action="/admin/general/"> <div class="row"> <div class="col-md-12"> <div class="card card-outline card-success">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 16 12:54:35 UTC 2023 - 39.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Collections2.java
* limitations under the License. */ package com.google.common.collect; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkNotNull; import static com.google.common.collect.CollectPreconditions.checkNonnegative; import static java.lang.Math.min; import static java.util.Objects.requireNonNull; import com.google.common.annotations.GwtCompatible;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 23.1K bytes - Viewed (0)