- Sort Score
- Result 10 results
- Languages All
Results 2161 - 2170 of 5,086 for Strings (0.04 sec)
-
mockwebserver/src/test/java/mockwebserver3/internal/http2/Http2Server.kt
else -> "text/plain" } private fun Socket.peerName(): String { val address = remoteSocketAddress return if (address is InetSocketAddress) address.hostName else address.toString() } companion object { val logger: Logger = Logger.getLogger(Http2Server::class.java.name) @JvmStatic fun main(args: Array<String>) { if (args.size != 1 || args[0].startsWith("-")) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbException.java
super(getMessageByCode(errcode)); status = getStatusByCode(errcode); this.rootCause = rootCause; } SmbException(final String msg) { super(msg); status = NT_STATUS_UNSUCCESSFUL; } SmbException(final String msg, final Throwable rootCause) { super(msg); this.rootCause = rootCause; status = NT_STATUS_UNSUCCESSFUL; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java
String DEFAULT_REMOTE_REPO_ID = MavenRepositorySystem.DEFAULT_REMOTE_REPO_ID; String DEFAULT_REMOTE_REPO_URL = MavenRepositorySystem.DEFAULT_REMOTE_REPO_ID; Artifact createArtifact(String groupId, String artifactId, String version, String packaging); Artifact createArtifact(String groupId, String artifactId, String version, String scope, String type);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/StopTokenSuffixFilterFactory.java
private final String[] stopwords; private final boolean ignoreCase; public StopTokenSuffixFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) { super(indexSettings, name, settings); final List<String> wordList = Analysis.parseWordList(environment, settings, "stopwords", s -> s);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 2.1K bytes - Viewed (0) -
cmd/peer-rest-client.go
peerRESTBucket: bucket, })) return err } // DeletePolicy - delete a specific canned policy. func (client *peerRESTClient) DeletePolicy(ctx context.Context, policyName string) (err error) { _, err = deletePolicyRPC.Call(ctx, client.gridConn(), grid.NewMSSWith(map[string]string{ peerRESTPolicy: policyName, })) return err } // LoadPolicy - reload a specific canned policy.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 26.1K bytes - Viewed (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSession.java
public final class OAuthSession { public final boolean ok; public final String access_token; public final String scope; public final String user_id; public final String team_name; public final String team_id; public OAuthSession( boolean ok, String accessToken, String scope, String userId, String teamName, String teamId) { this.ok = ok; this.access_token = accessToken; this.scope = scope;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Oct 23 15:24:22 UTC 2016 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/FavoriteLogDbm.java
protected final String _tablePropertyName = "FavoriteLog"; public String getTableDbName() { return _tableDbName; } @Override public String getTableDispName() { return _tableDispName; } @Override public String getTablePropertyName() { return _tablePropertyName; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
this.bufferCache = new BufferCacheImpl(this.config); this.transportPool = new SmbTransportPoolImpl(); final String defUser = config.getDefaultUsername(); final String defPassword = config.getDefaultPassword(); final String defDomain = config.getDefaultDomain(); if (defUser != null) { this.defaultCredentials = new NtlmPasswordAuthenticator(defDomain, defUser, defPassword);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
this.node[4] = uuid.node[4]; this.node[5] = uuid.node[5]; } /** * Construct a UUID from string * * @param str * the string representation of the UUID to parse */ public UUID(final String str) { final char[] arr = str.toCharArray(); this.time_low = hex_to_bin(arr, 0, 8); this.time_mid = S(hex_to_bin(arr, 9, 4));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
docs/sts/assume-role.go
var ( // Minio endpoint (for STS API) stsEndpoint string // User account credentials minioUsername string minioPassword string // Display credentials flag displayCreds bool // Credential expiry duration expiryDuration time.Duration // Bucket to list bucketToList string // Session policy file (FIXME: add support in minio-go) sessionPolicyFile string ) func init() {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Aug 17 01:24:54 UTC 2024 - 4.4K bytes - Viewed (1)