- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 200 for setType (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
* @return map containing artifact properties */ public static Map<String, String> beanToMap(final Artifact artifact) { final Map<String, String> item = new HashMap<>(); item.put("type", artifact.getType().getId()); item.put("id", artifact.getName() + ":" + artifact.getVersion()); item.put("name", artifact.getName()); item.put("version", artifact.getVersion());Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java
if (!metadata.getVersion().isEmpty()) { path.append(metadata.getVersion()).append('/'); } } } path.append(insertRepositoryKey(metadata.getType(), repositoryKey)); return path.toString(); } private String insertRepositoryKey(String filename, String repositoryKey) { String result; int idx = filename.indexOf('.');
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyCoordinates.java
* a modular-<abbr>JAR</abbr> if it is intended to be placed on the module path, * a <abbr>JAR</abbr> containing test classes, a POM file, <i>etc.</i> */ @Nonnull Type getType(); /** * {@return the time at which the dependency will be used} * It may be, for example, at compile time only, at run time, or at test time. */ @Nonnull DependencyScope getScope();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 05 14:29:21 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbNamedPipe.java
request.addFlags0(0x16); response.setExtended(true); } /** * {@inheritDoc} * * @see jcifs.smb.SmbFile#getType() */ @Override public int getType() throws SmbException { return TYPE_NAMED_PIPE; } /** * @return the pipe type */ @Override public int getPipeType() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
.version(dependency.getVersion().toString()) .classifier(dependency.getClassifier()) .extension(dependency.getExtension()) .type(dependency.getType().id()) .scope(dependency.getScope().id()) .optional(dependency.isOptional()) .build(); } @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/jcifs/https/HandlerTest.java
assertTrue(Modifier.isStatic(field.getModifiers())); assertTrue(Modifier.isFinal(field.getModifiers())); assertEquals(int.class, field.getType()); } } @Nested @DisplayName("Deprecation Tests") class DeprecationTests { @Test @DisplayName("Handler class should be deprecated")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaWorkRequest.java
*/ public long getRequestId() { return requestId; } /** * Get request type * * @return type of request */ public RequestType getType() { return type; } /** * Get associated memory region * * @return memory region for this request */ public RdmaMemoryRegion getMemoryRegion() {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoConstantsTest.java
assertTrue(Modifier.isStatic(m), e.getKey() + " must be static"); assertTrue(Modifier.isFinal(m), e.getKey() + " must be final"); assertEquals(String.class, f.getType(), e.getKey() + " must be String"); assertEquals(e.getValue(), f.get(null), e.getKey() + " value mismatch"); } } @Test @DisplayName("OID values have valid dotted numeric format")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactory.java
dependency.getGroupId(), dependency.getArtifactId(), dependency.getVersion(), dependency.getClassifier(), null, dependency.getType())); } @Nonnull default DependencyCoordinates create(@Nonnull Session session, Plugin plugin) { // TODO: hard coded string return create(DependencyCoordinatesFactoryRequest.build(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
*/ public byte[] getFileId() { return Arrays.copyOf(fileId, 16); } /** * Get the handle type * @return the handle type */ public HandleType getType() { return type; } /** * Get the timeout * @return the timeout in milliseconds */ public long getTimeout() { return timeout; } /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0)