- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for setWildcard (0.46 sec)
-
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/TypeMetaDataTest.groovy
type.addTypeArg(new TypeMetaData('Type2')) expect: type.rawType.signature == 'org.gradle.SomeType' } def rawTypeForWildcardType() { type.setWildcard() expect: type.rawType.signature == 'java.lang.Object' } def rawTypeForWildcardWithUpperBound() { type.setUpperBounds(new TypeMetaData('OtherType')) expect:
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/TypeMetaData.java
} String suffix = getArraySuffix(); if (suffix.length() > 0) { visitor.visitText(suffix); } } } public TypeMetaData setWildcard() { wildcard = true; return this; } public TypeMetaData setUpperBounds(TypeMetaData upperBounds) { this.upperBounds = upperBounds; return this; }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java
elementType.ifWildcardType(wildcardType -> { if (!wildcardType.getExtendedType().isPresent() && !wildcardType.getSuperType().isPresent()) { typeMetaData.setWildcard(); } else { wildcardType.getExtendedType().ifPresent(referenceType -> typeMetaData.setUpperBounds(extractTypeName(referenceType)));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 11.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java
create.setDesiredAccess(SmbConstants.FILE_READ_DATA | SmbConstants.FILE_READ_ATTRIBUTES); Smb2QueryDirectoryRequest query = new Smb2QueryDirectoryRequest(th.getConfig()); query.setFileName(getWildcard()); create.chain(query); Smb2CreateResponse createResp; try { createResp = th.send(create); } catch ( SmbException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 16:15:08 UTC 2020 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
try { th.send( new Trans2FindFirst2( th.getConfig(), unc, this.getWildcard(), this.getSearchAttributes(), th.getConfig().getListCount(), th.getConfig().getListSize() - FIND_OVERHEAD), this.response);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
* @return the searchAttributes */ public final int getSearchAttributes () { return this.searchAttributes; } /** * @return the wildcard */ public final String getWildcard () { return this.wildcard; } /** * @return the parent */ public final SmbResource getParent () { return this.parent; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.8K bytes - Viewed (0)