- Sort Score
- Result 10 results
- Languages All
Results 1451 - 1460 of 6,164 for aString (0.05 sec)
-
guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java
new TestStringSetMultimapGenerator() { @Override protected SetMultimap<String, String> create(Entry<String, String>[] entries) { SetMultimap<String, String> multimap = LinkedHashMultimap.create(); for (Entry<String, String> entry : entries) { multimap.put(entry.getKey(), entry.getValue()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
protected final String name; protected final String version; protected final String url; public Artifact(final String name, final String version, final String url) { this.name = name; this.version = version; this.url = url; } public Artifact(final String name, final String version) { this(name, version, null);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 01:47:10 UTC 2024 - 17.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
protected boolean includeAware; protected final Map<String, Object> attributeMap = new HashMap<>(); protected final Map<String, String> featureMap = new HashMap<>(); protected Map<String, String> fieldRuleMap = new LinkedHashMap<>(); /** a flag to trim a space characters. */ protected boolean trimSpaceEnabled = true; protected String charsetName = Constants.UTF_8; /**
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 17.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/HttpUrl.kt
) fun fragment(): String? = fragment class Builder { internal var scheme: String? = null internal var encodedUsername = "" internal var encodedPassword = "" internal var host: String? = null internal var port = -1 internal val encodedPathSegments = mutableListOf<String>("") internal var encodedQueryNamesAndValues: MutableList<String?>? = null
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 63.5K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java
private static final long[] divisors = new long[ARRAY_SIZE]; private static final String[] decimalStrings = new String[ARRAY_SIZE]; private static final String[] binaryStrings = new String[ARRAY_SIZE]; private static final String[] hexStrings = new String[ARRAY_SIZE]; private static final String[] prefixedHexStrings = new String[ARRAY_SIZE]; @BeforeExperiment void setUp() { for (int i = 0; i < ARRAY_SIZE; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java
} public static void addInterface(String name, String syntax) { INTERFACES.put(name, syntax); } String proto; String server; String endpoint = null; HashMap options = null; UUID uuid = null; int major; int minor; DcerpcBinding(String proto, String server) { this.proto = proto; this.server = server; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.2K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java
/** * Authentication */ public class Authentication { private String privateKey; private String passphrase; public Authentication(String userName, String password) { this.username = userName; this.password = password; } /** * Username used to log in to the host */ private String username; /** * Password associated with the login */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
internal/auth/credentials.go
Status string `xml:"-" json:"status,omitempty"` ParentUser string `xml:"-" json:"parentUser,omitempty"` Groups []string `xml:"-" json:"groups,omitempty"` Claims map[string]interface{} `xml:"-" json:"claims,omitempty"` Name string `xml:"-" json:"name,omitempty"` Description string `xml:"-" json:"description,omitempty"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 28 17:14:16 UTC 2024 - 12K bytes - Viewed (0) -
cmd/erasure-server-pool-decom_gen.go
// string "obj" o = append(o, 0xa3, 0x6f, 0x62, 0x6a) o = msgp.AppendString(o, z.Object) // string "id" o = append(o, 0xa2, 0x69, 0x64) o = msgp.AppendInt64(o, z.ItemsDecommissioned) // string "idf" o = append(o, 0xa3, 0x69, 0x64, 0x66) o = msgp.AppendInt64(o, z.ItemsDecommissionFailed) // string "bd" o = append(o, 0xa2, 0x62, 0x64) o = msgp.AppendInt64(o, z.BytesDone) // string "bf"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 04 21:02:54 UTC 2022 - 26.7K bytes - Viewed (0) -
src/archive/tar/tar_test.go
header: &Header{Xattrs: map[string]string{"foo": "bar"}}, paxHdrs: map[string]string{paxSchilyXattr + "foo": "bar"}, formats: FormatPAX, }, { header: &Header{Xattrs: map[string]string{"foo": "bar"}, Format: FormatGNU}, paxHdrs: map[string]string{paxSchilyXattr + "foo": "bar"}, formats: FormatUnknown, }, { header: &Header{Xattrs: map[string]string{"用戶名": "\x00hello"}},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 25 00:25:45 UTC 2024 - 23.9K bytes - Viewed (0)