- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 1,096 for defaulted (0.07 sec)
-
guava-tests/test/com/google/common/io/ByteSinkTest.java
import static org.junit.Assert.assertThrows; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.OutputStream; import java.util.EnumSet; /** * Tests for the default implementations of {@code ByteSink} methods. * * @author Colin Decker */ public class ByteSinkTest extends IoTestCase { private final byte[] bytes = newPreFilledByteArray(10000);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 3.7K bytes - Viewed (0) -
integration-tests/gradle/gradlew.bat
@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @rem Resolve any "." and ".." in APP_HOME to make it shorter. for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" @rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 28 18:15:57 UTC 2023 - 2.7K bytes - Viewed (0) -
cmd/etcd.go
func etcdErrToErr(err error, etcdEndpoints []string) error { if err == nil { return nil } switch err { case context.DeadlineExceeded: return fmt.Errorf("%w %s", errEtcdUnreachable, etcdEndpoints) default: return fmt.Errorf("unexpected error %w from etcd, please check your endpoints %s", err, etcdEndpoints) } } func saveKeyEtcdWithTTL(ctx context.Context, client *etcd.Client, key string, data []byte, ttl int64) error {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/DefaultToolchainsReader.java
import org.apache.maven.api.toolchain.InputSource; import org.apache.maven.toolchain.model.PersistedToolchains; import org.apache.maven.toolchain.v4.MavenToolchainsStaxReader; /** * Handles deserialization of toolchains from the default textual format. * * @since 3.3.0 * @deprecated since 4.0.0, use {@link MavenToolchainsStaxReader} instead */ @Named @Singleton @Deprecated(since = "4.0.0")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java
private String packaging; private boolean includesDependencies; private String language; @Deprecated private boolean addedToClasspath; /** * Default ctor for Plexus compatibility, as many plugins have artifact handlers declared in legacy Plexus XML. * Do not use directly! *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
internal/rest/client.go
"github.com/minio/minio/internal/logger" "github.com/minio/minio/internal/mcontext" xnet "github.com/minio/pkg/v3/net" ) const logSubsys = "internodes" // DefaultTimeout - default REST timeout is 10 seconds. const DefaultTimeout = 10 * time.Second const ( offline = iota online closed ) // NetworkError - error type in case of errors related to http/transport
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 26 12:55:01 UTC 2024 - 14.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_download.jsp
<div class="btn-group"> <la:link href="/admin/elevateword" styleClass="btn btn-default btn-xs"> <em class="fa fa-th-list"> <la:message key="labels.elevate_word_link_list"/> </la:link>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Mar 24 13:43:18 UTC 2020 - 5.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help.jsp
<pre>Fess sort:content_length.desc</pre> The available sort field are "created", "content_length" and "last_modified", and they are customizable. </dd> <dt>AND</dt> <dd> AND operator is the default conjunction operator. You can omit it from a query. AND operator matches documents where both terms exist anywhere in the text of a single document. <pre>Fess AND CodeLibs</pre> </dd> </dd> <dt>OR</dt> <dd>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosApRequest.java
} break; case 4: // Let's ignore this for now break; default: throw new PACDecodingException("Invalid field in kerberos ticket"); } } } public byte getApOptions () { return this.apOptions; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 3.9K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Parser.java
* @throws ParserException if there's an error during parsing of the command or arguments * @throws IOException if there's an I/O error during the parsing process */ @Nonnull default R mvn(@Nonnull String[] args, @Nonnull Logger logger, @Nonnull MessageBuilderFactory messageBuilderFactory) throws ParserException, IOException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 04 12:23:10 UTC 2024 - 3K bytes - Viewed (0)