Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setWildcard (0.08 sec)

  1. 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 Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  2. 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 Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

            create.setDesiredAccess(SmbConstants.FILE_READ_DATA | SmbConstants.FILE_READ_ATTRIBUTES);
            final Smb2QueryDirectoryRequest query = new Smb2QueryDirectoryRequest(th.getConfig());
            query.setFileName(getWildcard());
            create.chain(query);
            Smb2CreateResponse createResp;
            try {
                createResp = th.send(create);
            } catch (final SmbException e) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

            }
    
            final SmbTreeHandleImpl th = getTreeHandle();
            this.response = new Trans2FindFirst2Response(th.getConfig());
    
            try {
                th.send(new Trans2FindFirst2(th.getConfig(), unc, this.getWildcard(), this.getSearchAttributes(), th.getConfig().getListCount(),
                        th.getConfig().getListSize() - FIND_OVERHEAD), this.response);
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

            return this.searchAttributes;
        }
    
        /**
         * Gets the wildcard pattern for this iterator.
         *
         * @return the wildcard
         */
        public final String getWildcard() {
            return this.wildcard;
        }
    
        /**
         * Gets the parent resource being enumerated.
         *
         * @return the parent
         */
        public final SmbResource getParent() {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top