- Sort Score
- Result 10 results
- Languages All
Results 2721 - 2730 of 7,967 for aclass (0.06 sec)
-
src/main/java/jcifs/pac/PacCredentialType.java
*/ package jcifs.pac; /** * Structure representing the PAC_CREDENTIAL_TYPE record * * @author jbbugeau */ @SuppressWarnings ( "javadoc" ) public class PacCredentialType { private static final int MINIMAL_BUFFER_SIZE = 32; private byte[] credentialType; public PacCredentialType ( byte[] data ) throws PACDecodingException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/CIFSException.java
*/ package jcifs; import java.io.IOException; /** * Base for all checked exceptions used by this library * * @author mbechler * */ public class CIFSException extends IOException { /** * */ private static final long serialVersionUID = 7806460518865806784L; /** * */ public CIFSException () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/Credentials.java
* */ public interface Credentials { /** * * @param type * @return instance for type, null if the type cannot be unwrapped */ <T extends Credentials> T unwrap ( Class<T> type ); /** * @return the domain the user account is in */ String getUserDomain (); /** * @return whether these are anonymous credentials */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcLookupSids.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.dcerpc.msrpc; @SuppressWarnings ( "javadoc" ) public class MsrpcLookupSids extends lsarpc.LsarLookupSids { public MsrpcLookupSids ( LsaPolicyHandle policyHandle, jcifs.SID[] sids ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/inheritance/ModelInheritanceAssembler.java
import org.apache.maven.model.Build; import org.apache.maven.model.Model; /** */ @Deprecated public interface ModelInheritanceAssembler { String ROLE = ModelInheritanceAssembler.class.getName(); void assembleModelInheritance(Model child, Model parent, String childPathAdjustment); void assembleModelInheritance(Model child, Model parent);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExcludesArtifactFilter.java
import java.util.List; import org.apache.maven.artifact.Artifact; /** * Filter to exclude from a list of artifact patterns. * * TODO I think this is equiv. to exclusion set filter in maven-core */ public class ExcludesArtifactFilter extends IncludesArtifactFilter { public ExcludesArtifactFilter(List<String> patterns) { super(patterns); } public boolean include(Artifact artifact) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/UrlModelSource.java
import java.net.URL; import org.apache.maven.building.UrlSource; /** * Wraps an ordinary {@link URL} as a model source. * * * @deprecated instead use {@link UrlSource} */ @Deprecated public class UrlModelSource extends UrlSource implements ModelSource { /** * Creates a new model source backed by the specified URL. * * @param pomUrl The POM file, must not be {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/Jvm.kt
* limitations under the License. */ package common interface Jvm { val version: JvmVersion val vendor: JvmVendor } data class DefaultJvm( override val version: JvmVersion, override val vendor: JvmVendor ) : Jvm object BuildToolBuildJvm : Jvm { override val version: JvmVersion get() = JvmVersion.java17
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 09:53:08 UTC 2024 - 1.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package promotion import common.VersionedSettingsBranch import vcsroots.gradlePromotionBranches class PublishNightlySnapshotFromQuickFeedbackStepPromote(branch: VersionedSettingsBranch) : BasePublishGradleDistribution( promotedBranch = branch.branchName, prepTask = branch.prepNightlyTaskName(),
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Dec 09 14:10:43 UTC 2022 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractor.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.extractor.impl; import java.util.regex.Pattern; /** * @author shinsuke * */ public class XmlExtractor extends AbstractXmlExtractor { protected Pattern xmlEncodingPattern = Pattern.compile("<\\?xml.*encoding\\s*=\\s*['\"]([\\w\\d\\-_]*)['\"]\\s*\\?>", Pattern.MULTILINE | Pattern.CASE_INSENSITIVE);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.6K bytes - Viewed (0)