- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 6,219 for strike (0.06 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java
private List<String> activeProfileIds = Collections.emptyList(); private List<String> inactiveProfileIds = Collections.emptyList(); private Map<String, String> systemProperties = Collections.emptyMap(); private Map<String, String> userProperties = Collections.emptyMap(); private Map<String, String> projectProperties = Collections.emptyMap();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
return available; } @Override public Tuple3<String, String, String> createTask(final String path, final Map<String, Object> docMap) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String thumbnailId = DocumentUtil.getValue(docMap, fessConfig.getIndexFieldId(), String.class); final Tuple3<String, String, String> task = new Tuple3<>(getName(), thumbnailId, path);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java
this.settingsId = settingsId; createMappingIfEmpty(arraySettingsIndexName, settingsId, client); } public String[] get(final String key) { final Map<String, Object> sourceArray[] = getFromArrayIndex(arraySettingsIndexName, settingsId, key); final String[] valueArray = new String[sourceArray.length]; for (int i = 0; i < valueArray.length; i++) {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 10.9K bytes - Viewed (0) -
cmd/api-response.go
ChecksumCRC32C string `xml:"ChecksumCRC32C,omitempty"` ChecksumSHA1 string `xml:"ChecksumSHA1,omitempty"` ChecksumSHA256 string `xml:"ChecksumSHA256,omitempty"` } // DeleteError structure. type DeleteError struct { Code string Message string Key string VersionID string `xml:"VersionId"` } // DeleteObjectsResponse container for multiple object deletes.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 19:27:06 UTC 2024 - 33.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
// from config final String scriptType = crawlingConfig.getScriptType(); final Map<String, String> scriptConfigMap = crawlingConfig.getConfigParameterMap(ConfigName.SCRIPT); final Map<String, String> metaConfigMap = crawlingConfig.getConfigParameterMap(ConfigName.META); for (final Map.Entry<String, String> entry : metaConfigMap.entrySet()) { final String key = entry.getKey();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 23.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java
// ====================== String BUILD = "build"; String INITIALIZE = "initialize"; String VALIDATE = "validate"; String SOURCES = "sources"; String RESOURCES = "resources"; String COMPILE = "compile"; String READY = "ready"; String PACKAGE = "package"; String VERIFY = "verify"; String UNIT_TEST = "unit-test";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Sep 24 07:54:24 UTC 2024 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java
public void setFrom(String from, String personal) { doSetFrom(from, personal); } public void addTo(String to) { doAddTo(to); } public void addTo(String to, String personal) { doAddTo(to, personal); } public void addCc(String cc) { doAddCc(cc); } public void addCc(String cc, String personal) { doAddCc(cc, personal);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java
/** */ public class DefaultArtifactHandler implements ArtifactHandler { private final String type; private String extension; private String classifier; private String directory; private String packaging; private boolean includesDependencies; private String language; @Deprecated private boolean addedToClasspath; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
private Artifact createArtifactX(String groupId, String artifactId, String version, String scope, String type) { return createArtifactX(groupId, artifactId, version, scope, type, null, null); } private Artifact createDependencyArtifactX( String groupId, String artifactId, VersionRange versionRange, String type, String classifier,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/SourceSinkFactories.java
} return Files.asCharSink(file, UTF_8); } @Override public String getExpected(String string) { checkNotNull(string); return initialString == null ? string : initialString + string; } @Override public String getSinkContents() throws IOException { File file = getFile();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 17.7K bytes - Viewed (0)