- Sort Score
- Result 10 results
- Languages All
Results 881 - 890 of 3,004 for During (0.06 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocLexer.java
class TokenVisitor { void onStartHtmlElement(String name) { } void onHtmlElementAttribute(String name, String value) { } void onStartHtmlElementComplete(String name) { } void onEndHtmlElement(String name) { } void onStartJavadocTag(String name) { } void onEndJavadocTag(String name) { }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
} private void assertUrlLink(String url, String expected) { Map<String, Object> doc = new HashMap<>(); doc.put("doc_id", "docId"); doc.put("url", url); assertEquals(expected, viewHelper.getUrlLink(doc)); } public void test_replaceHighlightQueries() { String text; String[] queries; text = "<a>123<b>456<c>";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 15.1K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
*/ private static final String RELEASE_VERSION_INDEX = String.valueOf(QUALIFIERS.indexOf("")); private final String value; StringItem(String value, boolean followedByDigit) { if (followedByDigit && value.length() == 1) { // a1 = alpha-1, b1 = beta-1, m1 = milestone-1 switch (value.charAt(0)) { case 'a':
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 26K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
if (value != null) { try { return Long.parseLong(value); } catch (final NumberFormatException e) {} } return defaultValue; } protected String getDefaultString(final String key, final String defaultValue) { final String value = systemProperties.getProperty(key); if (value != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.7K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/CleanArgumentTest.java
/** */ class CleanArgumentTest { @Test void cleanArgs() { String[] args = { "\"", }; CleanArgument.cleanArgs(args); } @Test void cleanArgsShouldRemoveWrongSurroundingQuotes() { String[] args = {"\"-Dfoo=bar", "\"-Dfoo2=bar two\""}; String[] cleanArgs = CleanArgument.cleanArgs(args); assertEquals(args.length, cleanArgs.length);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
tests/test_tutorial/test_security/test_tutorial005.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Mar 13 19:07:10 UTC 2024 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.idl
typedef struct { [string] wchar_t *entry_path; } DfsInfo1; typedef struct { uint32_t count; [size_is(count)] DfsInfo1 *s; } DfsEnumArray1; typedef struct { uint32_t state; [string] wchar_t *server_name; [string] wchar_t *share_name; } DfsStorageInfo; typedef struct { [string] wchar_t *path; [string] wchar_t *comment; uint32_t state;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
internal/mountinfo/mountinfo.go
package mountinfo // mountInfo - This represents a single line in /proc/mounts. type mountInfo struct { Device string Path string FSType string Options []string Freq string Pass string } func (m mountInfo) String() string { return m.Path } // mountInfos - This represents the entire /proc/mounts.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 19 01:35:22 UTC 2021 - 1.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnums.java
abstract class ExtensibleEnums { static Language language(String id) { return new DefaultLanguage(id); } static PathScope pathScope(String id, ProjectScope projectScope, DependencyScope... dependencyScopes) { return new DefaultPathScope(id, projectScope, dependencyScopes); } static ProjectScope projectScope(String id) { return new DefaultProjectScope(id); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Jul 10 20:52:34 UTC 2024 - 3.2K bytes - Viewed (0) -
cni/pkg/ipset/nldeps_unspecified.go
} type realDeps struct{} func (m *realDeps) ipsetIPHashCreate(name string, v6 bool) error { return errors.New("not implemented on this platform") } func (m *realDeps) destroySet(name string) error { return errors.New("not implemented on this platform") } func (m *realDeps) addIP(name string, ip netip.Addr, ipProto uint8, comment string, replace bool) error { return errors.New("not implemented on this platform") }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 30 22:24:38 UTC 2024 - 1.8K bytes - Viewed (0)