- Sort Score
- Result 10 results
- Languages All
Results 2051 - 2060 of 6,333 for strings (0.05 sec)
-
android/guava-tests/test/com/google/common/io/CharSourceTester.java
} static TestSuite suiteForString( CharSourceFactory factory, String string, String name, String desc) { TestSuite suite = new TestSuite(name + " [" + desc + "]"); for (Method method : testMethods) { suite.addTest(new CharSourceTester(factory, string, name, desc, method)); } return suite; } private final ImmutableList<String> expectedLines; private CharSource source;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 6.8K bytes - Viewed (0) -
istioctl/pkg/writer/table/writer_test.go
package table import ( "bytes" "testing" "github.com/fatih/color" ) type testObject struct { name string namespace string version string } var newTestObject = func(name, namespace, version string) testObject { return testObject{ name: name, namespace: namespace, version: version, } } func TestWriter(t *testing.T) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Oct 08 04:41:42 UTC 2022 - 1.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/layout/ArtifactRepositoryLayout.java
*/ @Deprecated public interface ArtifactRepositoryLayout { String ROLE = ArtifactRepositoryLayout.class.getName(); String getId(); String pathOf(Artifact artifact); String pathOfLocalRepositoryMetadata(ArtifactMetadata metadata, ArtifactRepository repository); String pathOfRemoteRepositoryMetadata(ArtifactMetadata metadata);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/PluginTests.java
public class PluginTests extends CrudTestBase { private static final String NAME_PREFIX = "pluginTests_"; private static final String API_PATH = "/api/admin/plugin"; private static final String LIST_ENDPOINT_SUFFIX = ""; private static final String ITEM_ENDPOINT_SUFFIX = ""; private static final String INSTALLED_ENDPOINT_SUFFIX = "installed"; private static final String AVAILABLE_ENDPOINT_SUFFIX = "available";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 01 02:20:48 UTC 2024 - 6.3K bytes - Viewed (0) -
cni/pkg/nodeagent/server_test.go
fakeIPSetDeps := ipset.FakeNLDeps() set := ipset.IPSet{V4Name: "foo-v4", Prefix: "foo", Deps: fakeIPSetDeps} m := getFakeDPWithIPSet(server, fakeClientSet, set) var pod1UID string = string(pod1.ObjectMeta.UID) var pod2UID string = string(pod2.ObjectMeta.UID) ipProto := uint8(unix.IPPROTO_TCP) // First IP of first pod should error, but we should add the rest fakeIPSetDeps.On("addIP", "foo-v4",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 18.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
} static String queryLookup ( String query, String param ) { char in[] = query.toCharArray(); int i, ch, st, eq; st = eq = 0; for ( i = 0; i < in.length; i++ ) { ch = in[ i ]; if ( ch == '&' ) { if ( eq > st ) { String p = new String(in, st, eq - st);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
public class QueryContext { protected static final String ALLINURL_FIELD_PREFIX = "allinurl:"; protected static final String ALLINTITLE_FIELD_PREFIX = "allintitle:"; protected QueryBuilder queryBuilder; protected final List<SortBuilder<?>> sortBuilderList = new ArrayList<>(); protected String queryString; protected Set<String> highlightedQuerySet = null;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 5.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java
} public Map<String, String> getFeatureMap() { return featureMap; } public void setFeatureMap(final Map<String, String> featureMap) { this.featureMap = featureMap; } public Map<String, String> getPropertyMap() { return propertyMap; } public void setPropertyMap(final Map<String, String> propertyMap) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/DataConfigDbm.java
protected final String _tableDbName = "data_config"; protected final String _tableDispName = "data_config"; protected final String _tablePropertyName = "DataConfig"; public String getTableDbName() { return _tableDbName; } @Override public String getTableDispName() { return _tableDispName; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 13.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java
collector.getErrors().get(0)); } @Test public void shouldIgnorePropertiesWithPomPrefix() throws Exception { final String orgName = "MyCo"; final String uninterpolatedName = "${pom.organization.name} Tools"; final String interpolatedName = uninterpolatedName; Model model = Model.newBuilder() .name(uninterpolatedName)
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.2K bytes - Viewed (0)