- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 171 for SetType (0.08 sec)
-
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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/FileEntry.java
* * */ public interface FileEntry { /** * * @return the file name */ String getName (); /** * * @return the file type */ int getType (); /** * * @return the file attributes */ int getAttributes (); /** * * @return the creation time */ long createTime ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K 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 Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ArtifactClassRealmConstituent.java
} public String getGroupId() { return artifact.getGroupId(); } public String getArtifactId() { return artifact.getArtifactId(); } public String getType() { return artifact.getExtension(); } public String getClassifier() { return artifact.getClassifier(); } public String getVersion() { return artifact.getBaseVersion();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K 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 Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/filter/TypeArtifactFilter.java
private String type = "jar"; public TypeArtifactFilter(String type) { this.type = type; } public boolean include(Artifact artifact) { return type.equals(artifact.getType()); } @Override public int hashCode() { int hash = 17; hash = hash * 31 + type.hashCode(); return hash; } @Override public boolean equals(Object obj) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/ShareEnumIterator.java
} } return null; } private SmbResource adapt ( FileEntry e ) throws MalformedURLException { return new SmbFile(this.parent, e.getName(), false, e.getType(), SmbConstants.ATTR_READONLY | SmbConstants.ATTR_DIRECTORY, 0L, 0L, 0L, 0L); } /** * {@inheritDoc} * * @see java.util.Iterator#hasNext() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java
} @Override public void onEvent(Object event) { if (event instanceof ExecutionEvent) { ExecutionEvent executionEvent = (ExecutionEvent) event; if (executionEvent.getType() == ExecutionEvent.Type.SessionEnded) { allHandlers.clear(); } } } @Override public ArtifactHandler getArtifactHandler(String id) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java
this.type = type; this.parent = parent; this.parentImports = parentImports; this.foreignImports = foreignImports; this.constituents = constituents; } public RealmType getType() { return type; } public ClassLoader getParent() { return parent; } public List<String> getImports() { return getParentImports(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
tensorflow/c/eager/abstract_op_attrs.h
virtual bool GetFloat(absl::string_view attr_name, float* result) const = 0; virtual bool GetBool(absl::string_view attr_name, bool* result) const = 0; virtual bool GetType(absl::string_view attr_name, DataType* result) const = 0; virtual absl::Status GetTypeList( absl::string_view attr_name, absl::InlinedVector<DataType, 4>* type_list) const = 0; private:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 2K bytes - Viewed (0)