- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 2,189 for boolean (0.12 sec)
-
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java
private String extension; private String classifier; private String directory; private String packaging; private boolean includesDependencies; private String language; @Deprecated private boolean addedToClasspath; /** * Default ctor for Plexus compatibility, as many plugins have artifact handlers declared in legacy Plexus XML. * Do not use directly!
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
impl/maven-core/lifecycle-executor.txt
<skip implementation="boolean" default-value="false">${remoteresources.skip}</skip> <outputDirectory implementation="java.io.File">${project.build.directory}/maven-shared-archive-resources</outputDirectory> <excludeArtifactIds implementation="java.lang.String" default-value="">${excludeArtifactIds}</excludeArtifactIds>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
protected List<String> generatorList; protected Map<String, String> filePathMap = new HashMap<>(); protected String name; protected int maxRedirectCount = 10; protected Boolean available = null; public void register() { ComponentUtil.getThumbnailManager().add(this); } public void addCondition(final String key, final String regex) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
return parent.toArray(a); } @Override public boolean add(final E e) { return parent.add(e); } @Override public boolean remove(final Object o) { return parent.remove(o); } @Override public boolean containsAll(final Collection<?> c) { return parent.containsAll(c); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
} public void setDoInput(boolean doInput) { connection.setDoInput(doInput); this.doInput = doInput; } public boolean getDoInput() { return connection.getDoInput(); } public void setDoOutput(boolean doOutput) { connection.setDoOutput(doOutput); this.doOutput = doOutput; } public boolean getDoOutput() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 20.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/NullPointerTester.java
@Override boolean isNullable(Invokable<?, ?> invokable) { return containsNullable(invokable.getAnnotations()); } @Override boolean isNullable(Parameter param) { return containsNullable(param.getAnnotations()); } }; abstract boolean isNullable(Invokable<?, ?> invokable); abstract boolean isNullable(Parameter param); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 23.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
} public boolean isExistPrePage() { return existPrePage; } public void setExistPrePage(final boolean existPrePage) { this.existPrePage = existPrePage; } public boolean isExistNextPage() { return existNextPage; } public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
*/ public class SmbFileOutputStream extends OutputStream { private static final Logger log = LoggerFactory.getLogger(SmbFileOutputStream.class); private SmbFile file; private boolean append, useNTSmbs; private int openFlags, access, writeSize, writeSizeFile; private long fp; private byte[] tmp = new byte[1]; private SmbComWriteAndX reqx; private SmbComWriteAndXResponse rspx;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:14:04 UTC 2021 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java
protected int dataDisplacement; protected int setupCount; protected int bufParameterStart; protected int bufDataStart; int dataCount; byte subCommand; boolean hasMore = true; boolean isPrimary = true; byte[] txn_buf; /* for doNetEnum and doFindFirstNext */ int status; int numEntries; FileEntry[] results; SmbComTransactionResponse() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/SystemStreamLog.java
/** * @see org.apache.maven.plugin.logging.Log#isDebugEnabled() */ public boolean isDebugEnabled() { // TODO Not sure how best to set these for this implementation... return false; } /** * @see org.apache.maven.plugin.logging.Log#isInfoEnabled() */ public boolean isInfoEnabled() { return true; } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0)