- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 634 for getLamp (0.06 sec)
-
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
*/ public SmbShareInfo ( String netName, int type, String remark ) { this.netName = netName; this.type = type; this.remark = remark; } @Override public String getName () { return this.netName; } /** * {@inheritDoc} * * @see jcifs.smb.FileEntry#getFileIndex() */ @Override public int getFileIndex () { return 0;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Feb 17 09:30:57 UTC 2019 - 3.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/settings/MavenSettingsBuilder.java
import org.codehaus.plexus.util.xml.pull.XmlPullParserException; /** */ @Deprecated public interface MavenSettingsBuilder { String ROLE = MavenSettingsBuilder.class.getName(); String ALT_USER_SETTINGS_XML_LOCATION = "org.apache.maven.user-settings"; String ALT_GLOBAL_SETTINGS_XML_LOCATION = "org.apache.maven.global-settings"; String ALT_LOCAL_REPOSITORY_LOCATION = "maven.repo.local";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java
Activation activation = profile.getActivation(); ActivationProperty property = activation.getProperty(); if (property != null) { String name = property.getName(); boolean reverseName = false; if (name == null) { throw new ProfileActivationException(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GenerateDocInfo.java
Path adocDir = getDocumentationRoot().get().getAsFile().toPath(); getDocumentationFiles().getAsFileTree().matching(pattern -> pattern.include("**/*.adoc")).forEach(adocFile -> { String adocFileName = adocFile.getName(); // getting_started.adoc -> getting_started-docinfo.html String docInfoName = adocFileName.substring(0, adocFileName.lastIndexOf('.')) + "-docinfo.html";
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 28 06:35:34 UTC 2021 - 2.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertyDetailRenderer.java
title.appendChild(document.createTextNode(" ")); Element literal = document.createElement("literal"); title.appendChild(literal); literal.appendChild(document.createTextNode(propertyDoc.getName())); if (!propertyDoc.getMetaData().isProviderApi()) { if (!propertyDoc.getMetaData().isWriteable()) { title.appendChild(document.createTextNode(" (read-only)"));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 3.5K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/TearDownStackTest.java
assertThat(expected).hasCauseThat().hasMessageThat().isEqualTo("two"); } catch (RuntimeException e) { throw new RuntimeException( "A ClusterException should have been thrown, rather than a " + e.getClass().getName(), e); } assertEquals(true, tearDownOne.ran); assertEquals(true, tearDownTwo.ran); } @Override public final void runBare() throws Throwable { try { setUp();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 21 10:19:29 UTC 2024 - 4.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java
* A facade that provides lifecycle services to components outside Maven core. * */ public interface LifecycleExecutor { // USED BY MAVEN HELP PLUGIN @Deprecated String ROLE = LifecycleExecutor.class.getName(); // For a given project packaging find all the plugins that are bound to any registered // lifecycles. The project builder needs to now what default plugin information needs to be
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/MethodMetaData.java
private TypeMetaData returnType; public MethodMetaData(String name, ClassMetaData ownerClass) { this.name = name; this.ownerClass = ownerClass; } public String getName() { return name; } @Override public String toString() { return String.format("%s.%s()", ownerClass, name); } @Override public boolean equals(Object o) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java
class ServerInfo1 implements FileEntry { String name; int versionMajor; int versionMinor; int type; String commentOrMasterBrowser; public String getName() { return name; } public int getType() { return (type & 0x80000000) != 0 ? SmbFile.TYPE_WORKGROUP : SmbFile.TYPE_SERVER; } public int getAttributes() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/ProjectDependenciesResolverTest.java
@SuppressWarnings("deprecation") List<Artifact> artifacts = project.getCompileArtifacts(); assertEquals(1, artifacts.size()); assertThat(artifacts.get(0).getFile().getName(), endsWith("tools.jar")); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0)