- Sort Score
- Result 10 results
- Languages All
Results 1921 - 1930 of 3,109 for During (0.09 sec)
-
src/main/java/jcifs/NetbiosName.java
package jcifs; /** * Netbios name * * @author mbechler * */ public interface NetbiosName { /** * @return the name */ String getName (); /** * @return the scope id */ String getScope (); /** * @return the name type */ int getNameType ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/PerLookupWagon.java
import javax.inject.Named; /** * Wagon with per-lookup instantiation strategy. */ @Named("perlookup") public class PerLookupWagon extends WagonMock { public String[] getSupportedProtocols() { return new String[] {"perlookup"}; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/BuildFailureException.java
*/ package org.apache.maven; /** * One or more builds failed. * */ public class BuildFailureException extends Exception { public BuildFailureException(String message) { super(message); } public BuildFailureException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
cmd/data-usage-cache_gen.go
// map header, size 4 // string "current" o = append(o, 0x84, 0xa7, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74) o = msgp.AppendUint64(o, z.current) // string "next" o = append(o, 0xa4, 0x6e, 0x65, 0x78, 0x74) o = msgp.AppendUint64(o, z.next) // string "started" o = append(o, 0xa7, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64) o = msgp.AppendTime(o, z.started) // string "cycleCompleted"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 75K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/SearchBody.java
*/ package org.codelibs.fess.app.web.api.admin.dataconfig; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; public class SearchBody extends BaseSearchBody { public String name; public String handlerName; public String description;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 879 bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsWriter.java
* @param settings The settings to serialize, must not be {@code null}. * @throws IOException If the settings could not be serialized. */ void write(File output, Map<String, Object> options, Settings settings) throws IOException; /** * Writes the supplied settings to the specified character writer. The writer will be automatically closed before * the method returns. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
cmd/xl-storage_windows_test.go
func TestUNCPaths(t *testing.T) { testCases := []struct { objName string pass bool }{ {"/abcdef", true}, {"/a/b/c/d/e/f/g", true}, {string(bytes.Repeat([]byte("界"), 85)), true}, // Each path component must be <= 255 bytes long. {string(bytes.Repeat([]byte("界"), 280)), false}, {`/p/q/r/s/t`, true}, } dir := t.TempDir()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Nov 29 06:35:16 UTC 2023 - 2.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/ReadWriteTest.java
} } } private String getFifoPipeUrl () { String testFifoPipe = getProperties().get(TestProperties.TEST_FIFO_PIPE); Assume.assumeNotNull(testFifoPipe); return "smb://" + getTestServer() + "/IPC$/" + testFifoPipe; } private String getTransactPipeUrl () { String testTransactPipe = getProperties().get(TestProperties.TEST_TRANSACT_PIPE);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
} public String logout(final FessUserBean user) { if (available()) { final SsoAuthenticator authenticator = getAuthenticator(); if (authenticator != null) { return authenticator.logout(user); } } return null; } protected SsoAuthenticator getAuthenticator() { final String name = getSsoType() + "Authenticator";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.1K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/JsseDebugLogging.kt
*/ package okhttp3 import java.io.Closeable import java.util.logging.Handler import java.util.logging.LogRecord object JsseDebugLogging { data class JsseDebugMessage(val message: String, val param: String?) { enum class Type { Handshake, Plaintext, Encrypted, Setup, Unknown, } val type: Type get() = when {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.8K bytes - Viewed (0)