- Sort Score
- Result 10 results
- Languages All
Results 1491 - 1500 of 6,333 for strings (0.12 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/-ResponseCommon.kt
.build() } val Response.commonIsSuccessful: Boolean get() = code in 200..299 fun Response.commonHeaders(name: String): List<String> = headers.values(name) @JvmOverloads fun Response.commonHeader( name: String, defaultValue: String?, ): String? = headers[name] ?: defaultValue @Throws(IOException::class) fun Response.commonPeekBody(byteCount: Long): ResponseBody {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 13:24:48 UTC 2024 - 5.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/TransposedTableTest.java
@Override protected Table<String, Integer, Character> create(@Nullable Object... data) { Table<Integer, String, Character> original = HashBasedTable.create(); Table<String, Integer, Character> table = transpose(original); table.clear(); populate(table, data); return table; } public void testTransposeTransposed() { Table<Integer, String, Character> original = HashBasedTable.create();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/ExtensionConfigurationModule.java
public class ExtensionConfigurationModule implements Module { private final CoreExtensionEntry extension; private final Function<String, String> callback; private final DefaultInterpolator interpolator = new DefaultInterpolator(); public ExtensionConfigurationModule(CoreExtensionEntry extension, Function<String, String> callback) { this.extension = extension; this.callback = callback; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableSetTest.java
assertNotSame(builder.contents, prevArray); prevArray = builder.contents; } } } public void testCreation_arrayOfArray() { String[] array = new String[] {"a"}; Set<String[]> set = ImmutableSet.<String[]>of(array); assertEquals(singleton(array), set); } @GwtIncompatible // ImmutableSet.chooseTableSize public void testChooseTableSize() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 13.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
private static final Logger logger = LoggerFactory.getLogger(FileSystemClient.class); public static final String FILE_ATTRIBUTE_VIEW = "fileAttributeView"; public static final String FS_FILE_USER = "fsFileUser"; public static final String FS_FILE_GROUPS = "fsFileGroups"; protected String charset = Constants.UTF_8; @Resource protected ContentLengthHelper contentLengthHelper;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 11.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java
private void assertStringHash(int expected, String string, Charset charset) { if (allBmp(string)) { assertHash(expected, murmur3_32().hashString(string, charset)); } assertHash(expected, murmur3_32_fixed().hashString(string, charset)); assertHash(expected, murmur3_32().newHasher().putString(string, charset).hash()); assertHash(expected, murmur3_32_fixed().newHasher().putString(string, charset).hash());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:29:46 UTC 2024 - 8.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ArtifactModelSource.java
@Deprecated(since = "4.0.0") public class ArtifactModelSource extends FileSource implements ModelSource { private final String groupId; private final String artifactId; private final String version; private final int hashCode; @Deprecated public ArtifactModelSource(File file, String groupId, String artifactId, String version) { super(file); this.groupId = groupId; this.artifactId = artifactId;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
internal/config/identity/openid/help.go
// Help template for OpenID identity feature. var ( defaultHelpPostfix = func(key string) string { return config.DefaultHelpPostfix(DefaultKVS, key) } Help = config.HelpKVS{ config.HelpKV{ Key: DisplayName, Description: "Friendly display name for this Provider/App" + defaultHelpPostfix(DisplayName), Optional: true, Type: "string", }, config.HelpKV{ Key: ConfigURL,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 23 14:45:27 UTC 2023 - 4.3K bytes - Viewed (0) -
istioctl/pkg/writer/pilot/status.go
Namespace string InternalDebugAllIstiod bool } type xdsWriterStatus struct { proxyID string clusterID string istiodID string istiodVersion string clusterStatus string listenerStatus string routeStatus string endpointStatus string extensionconfigStatus string } const ignoredStatus = "IGNORED"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jun 21 22:47:20 UTC 2024 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
} protected String getSearchField(final String defaultField, final String field) { if (Constants.DEFAULT_FIELD.equals(field) && defaultField != null) { return defaultField; } return field; } protected interface DefaultQueryBuilderFunction { QueryBuilder apply(String field, float boost); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.5K bytes - Viewed (0)