- Sort Score
- Result 10 results
- Languages All
Results 3111 - 3120 of 4,169 for auteur (0.05 sec)
-
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
import org.codelibs.core.lang.ConstructorUtil; import org.codelibs.core.lang.FieldUtil; import org.codelibs.core.lang.MethodUtil; import org.codelibs.core.lang.ModifierUtil; /** * {@link PropertyDesc}の実装クラスです。 * * @author higa */ public class PropertyDescImpl implements PropertyDesc { private static final Object[] EMPTY_ARGS = new Object[0]; private final String propertyName; private final Class<?> propertyType;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
import jcifs.internal.smb2.ioctl.SrvCopychunk; import jcifs.internal.smb2.ioctl.SrvCopychunkCopy; import jcifs.internal.smb2.ioctl.SrvRequestResumeKeyResponse; /** * @author mbechler * */ final class SmbCopyUtil { private static final Logger log = LoggerFactory.getLogger(SmbCopyUtil.class); /** * */ private SmbCopyUtil () {}
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 17.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java
import org.codelibs.core.exception.IORuntimeException; import org.codelibs.core.message.MessageFormatter; /** * {@link ClassLoader}を扱うためのユーティリティ・クラスです。 * * @author koichik */ public abstract class ClassLoaderUtil { /** * クラスローダを返します。 * <p> * クラスローダは以下の順で検索します。 * </p> * <ol>
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DomUtil.java
import org.w3c.dom.Element; import org.w3c.dom.EntityReference; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.w3c.dom.Text; /** * DOM用のユーティリティクラスです。 * * @author higa */ public abstract class DomUtil { /** * プラットフォームのデフォルトエンコーディングでXMLの内容を {@link InputStream}として取得します。 * * @param contents * コンテンツ。{@literal null}であってはいけません
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
import jcifs.internal.smb2.io.Smb2ReadResponse; import jcifs.internal.smb2.io.Smb2WriteRequest; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; import jcifs.util.transport.Response; /** * @author mbechler * */ public class Smb2NegotiateResponse extends ServerMessageBlock2Response implements SmbNegotiationResponse { private static final Logger log = LoggerFactory.getLogger(Smb2NegotiateResponse.class);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/AllTests.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.config.PropertyConfiguration; import jcifs.context.BaseContext; /** * @author mbechler * */ @RunWith ( Suite.class ) @SuiteClasses ( { ContextConfigTest.class, PACTest.class, NtlmTest.class, FileLocationTest.class, SessionTest.class, KerberosTest.class, TimeoutTest.class,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 14.4K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
import org.codehaus.plexus.configuration.PlexusConfiguration; import org.codehaus.plexus.configuration.PlexusConfigurationException; /** * Build plugin descriptor object from {@code plugin.xml}. * * @author Jason van Zyl */ public class PluginDescriptorBuilder { public static final String PLUGIN_2_0_0 = "http://maven.apache.org/PLUGIN/2.0.0"; private static final int BUFFER_SIZE = 8192;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformerTest.java
import org.codelibs.fess.crawler.entity.ResultData; import org.codelibs.fess.crawler.entity.TestEntity; import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class XmlTransformerTest extends PlainTestCase { public XmlTransformer xmlTransformer; public XmlTransformer xmlNsTransformer; public XmlTransformer xmlMapTransformer;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.5K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
# For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. name: "CodeQL" on: push: branches: [master] pull_request: # The branches below must be a subset of the branches above branches: [master] schedule: - cron: '0 11 * * 4' jobs:
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Fri Oct 02 13:24:14 UTC 2020 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java
* * @return All collected projects. * * @since 3.5.0 */ List<MavenProject> getAllProjects(); /** * Gets all projects in their intended build order, i.e. after topologically sorting the projects according to their * interdependencies. * * @return The projects in the build order, never {@code null}. */ List<MavenProject> getSortedProjects(); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0)