- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 3,900 for exceeds (0.08 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/ModelXmlFactory.java
import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.model.Model; /** * Reads or writes a {@link Model} using XML. * * @since 4.0.0 */ @Experimental
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/WagonA.java
package org.apache.maven.repository.legacy; import javax.inject.Named; import javax.inject.Singleton; /** * Wagon for testing, for protocol <code>a</code> * */ @Named("a") @Singleton public class WagonA extends WagonMock { public String[] getSupportedProtocols() { return new String[] {"a"}; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/WagonB.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/WagonC.java
package org.apache.maven.repository.legacy; import javax.inject.Named; import javax.inject.Singleton; /** * Wagon for testing, for protocol <code>c</code> * */ @Named("c") @Singleton public class WagonC extends WagonMock { public String[] getSupportedProtocols() { return new String[] {"c"}; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/InvalidParameterException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin.descriptor; /** */ public class InvalidParameterException extends InvalidPluginDescriptorException { public InvalidParameterException(String element, int i) { super("The " + element + " element in parameter # " + i + " is invalid. It cannot be null."); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionPersistenceException.java
/** * This exception will be thrown when something fails while persisting build resumption data. * @see BuildResumptionDataRepository#persistResumptionData */ public class BuildResumptionPersistenceException extends Exception { public BuildResumptionPersistenceException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/model/ClassMetaDataTest.groovy
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.docs.dsl.source.model import spock.lang.Specification class ClassMetaDataTest extends Specification { def "is deprecated when @Deprecated annotation is attached to class"() { def notDeprecated = new ClassMetaData("SomeClass") def deprecated = new ClassMetaData("SomeClass")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationTest.java
*/ package org.codelibs.fess.crawler.client.smb1; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class SmbAuthenticationTest extends PlainTestCase { public void test_getPathPrefix() { SmbAuthentication smbAuthentication; smbAuthentication = new SmbAuthentication(); assertEquals("smb1://", smbAuthentication.getPathPrefix());
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableTable.java
return copyOf(table.cellSet()); } } static <R, C, V> ImmutableTable<R, C, V> copyOf( Iterable<? extends Cell<? extends R, ? extends C, ? extends V>> cells) { ImmutableTable.Builder<R, C, V> builder = ImmutableTable.builder(); for (Cell<? extends R, ? extends C, ? extends V> cell : cells) { builder.put(cell); } return builder.build(); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 17.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableListMultimap.java
Iterable<? extends Entry<? extends K, ? extends V>> entries) { return new Builder<K, V>().putAll(entries).build(); } /** Creates an ImmutableListMultimap from an asMap.entrySet. */ static <K, V> ImmutableListMultimap<K, V> fromMapEntries( Collection<? extends Map.Entry<? extends K, ? extends Collection<? extends V>>> mapEntries,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 16 20:20:32 UTC 2024 - 19K bytes - Viewed (0)