- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 57 for csor (0.02 sec)
-
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java
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! * * @deprecated This ctor is present only for Plexus XML defined component compatibility, do not use it. */ @Deprecated public DefaultArtifactHandler() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java
protected final boolean classWorldManaged; /** * Ctor that creates "managed" ClassWorld. This constructor is not used in "normal" circumstances. */ public ClingSupport() { this(new ClassWorld(CORE_CLASS_REALM_ID, Thread.currentThread().getContextClassLoader()), true); } /** * Ctor to be used when running in ClassWorlds Launcher. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Feb 08 16:25:25 UTC 2025 - 3.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginContainerException.java
} public PluginContainerException(Plugin plugin, ClassRealm pluginRealm, String message, Throwable e) { super(plugin, message, e); this.pluginRealm = pluginRealm; } /** * Ctor left for binary compatibility. * * @deprecated Use {@link #PluginContainerException(Plugin, ClassRealm, String, Throwable)} */ @Deprecated public PluginContainerException(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbExceptionTest.java
SmbException ex = new SmbException(0, false); assertEquals("NT_STATUS_SUCCESS", ex.getMessage()); assertEquals(0, ex.getNtStatus()); assertNull(ex.getRootCause(), "root cause should be null for this ctor"); assertEquals("jcifs.smb1.smb1.SmbException: NT_STATUS_SUCCESS", ex.toString()); } /** * Edge case – constructor using the winerr flag. */ @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java
private final MessageBuilderFactory messageBuilderFactory; /** * Default ctor is used in IT and most probably some 3rd party code. For those cases, we do provide sane defaults * but given this is a component, injection should be used, replacing direct instantiation. * * @deprecated Do not use this ctor directly, inject this component instead. */ @DeprecatedRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 7.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy
errors << "Nullability breaking change" } } else if (member instanceof JApiConstructor) { JApiConstructor ctor = (JApiConstructor) member inspectParametersNullabilityOf(ctor.oldConstructor.get(), ctor.newConstructor.get()) } else if (member instanceof JApiMethod) { JApiMethod method = (JApiMethod) member
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Oct 27 09:26:32 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbEnumerationUtilTest.java
try { Class<?> cls = Class.forName("jcifs.smb.SmbEnumerationUtil$" + simpleName); Constructor<?> ctor = cls.getDeclaredConstructor(paramTypes); ctor.setAccessible(true); return ctor.newInstance(args); } catch (ClassNotFoundException | NoSuchMethodException | InstantiationException | IllegalAccessException | InvocationTargetException e) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
src/cmd/asm/internal/arch/riscv64.go
// requires special handling. func IsRISCV64VTypeI(op obj.As) bool { return op == riscv.AVSETVLI || op == riscv.AVSETIVLI } // IsRISCV64CSRO reports whether the op is an instruction that uses // CSR symbolic names and whether that instruction expects a register // or an immediate source operand. func IsRISCV64CSRO(op obj.As) (imm bool, ok bool) { switch op { case riscv.ACSRRCI, riscv.ACSRRSI, riscv.ACSRRWI: imm = true
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Sep 12 08:12:45 UTC 2025 - 2.8K bytes - Viewed (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
applyAutomaticUpgradeOfCapabilities() dependencies { components { // Gradle distribution - minify: remove unused transitive dependencies applyRule<DependencyRemovalByNameRule>(libs.awsS3Core, setOf("jackson-dataformat-cbor")) applyRule<DependencyRemovalByGroupRule>(libs.jgit, setOf("com.googlecode.javaewah")) // We don't need the extra annotations provided by j2objcRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jul 18 11:32:19 UTC 2025 - 9.3K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* As described in <a href="https://www.rfc-editor.org/rfc/rfc8949.html">RFC 8949</a>, this * constant ({@code application/cbor}) is used for the Concise Binary Object Representation (CBOR) * data format. * * @since 33.4.0 */ public static final MediaType CBOR = createConstant(APPLICATION_TYPE, "cbor"); /** * Media type for the <a href="https://tools.ietf.org/html/rfc7946">GeoJSON Format</a>, a
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Oct 02 01:46:40 UTC 2025 - 48K bytes - Viewed (0)