- Sort Score
- Num 10 results
- Language All
Results 4911 - 4920 of 5,478 for newA (0.15 seconds)
-
src/main/java/org/codelibs/core/beans/impl/ConstructorDescImpl.java
assertArgumentNotNull("constructor", constructor); this.beanDesc = beanDesc; this.constructor = constructor; parameterTypes = constructor.getParameterTypes(); parameterizedClassDescs = new ParameterizedClassDesc[parameterTypes.length]; final Map<TypeVariable<?>, Type> typeVariables = beanDesc.getTypeVariables(); for (int i = 0; i < parameterTypes.length; ++i) {
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
/** Title for this facet query view */ protected String title; /** Map of display keys to their corresponding query strings */ protected Map<String, String> queryMap = new LinkedHashMap<>(); /** * Default constructor for FacetQueryView. */ public FacetQueryView() { // Default constructor } /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 4.4K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtension.java
* Gets the identifier of the extension. * * @return The extension id in the form {@code <groupId>:<artifactId>:<version>}, never {@code null}. */ public String getId() { StringBuilder id = new StringBuilder(128); id.append((getGroupId() == null) ? "[unknown-group-id]" : getGroupId()); id.append(":"); id.append((getArtifactId() == null) ? "[unknown-artifact-id]" : getArtifactId());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 4.5K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/CheckTest.java
class CheckTest { private Check checkGoal; private StrategyOrchestrator mockOrchestrator; @BeforeEach void setUp() { mockOrchestrator = mock(StrategyOrchestrator.class); checkGoal = new Check(mockOrchestrator); } private UpgradeContext createMockContext() { return TestUtils.createMockContext(); } @Nested @DisplayName("Modification Behavior")Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Jun 07 06:22:47 GMT 2025 - 4.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactManager.java
@Typed({ArtifactManager.class, Service.class}) @SessionScoped public class DefaultArtifactManager implements ArtifactManager { @Nonnull private final InternalMavenSession session; private final Map<String, Path> paths = new ConcurrentHashMap<>(); @Inject public DefaultArtifactManager(@Nonnull InternalMavenSession session) { this.session = session; } @Nonnull @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 16:01:38 GMT 2025 - 4.4K bytes - Click Count (0) -
internal/s3select/json/reader.go
err := r.readCloser.Close() for range r.valueCh { // Drain values so we don't leak a goroutine. // Since we have closed the input, it should fail rather quickly. } return err } // NewReader - creates new JSON reader using readCloser. func NewReader(readCloser io.ReadCloser, args *ReaderArgs) *Reader { readCloser = &syncReadCloser{rc: readCloser}
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 3.2K bytes - Click Count (0) -
cmd/xl-storage-format-v2_gen.go
if dc.IsNil() { err = dc.ReadNil() if err != nil { err = msgp.WrapError(err, "ObjectV2") return } z.ObjectV2 = nil } else { if z.ObjectV2 == nil { z.ObjectV2 = new(struct { DataDir [16]byte `msg:"DDir"` }) } var zb0002 uint32 zb0002, err = dc.ReadMapHeader() if err != nil { err = msgp.WrapError(err, "ObjectV2") return }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 55.8K bytes - Click Count (0) -
cmd/site-replication.go
) var ( errSRCannotJoin = SRError{ Cause: errors.New("this site is already configured for site-replication"), Code: ErrSiteReplicationInvalidRequest, } errSRDuplicateSites = SRError{ Cause: errors.New("duplicate sites provided for site-replication"), Code: ErrSiteReplicationInvalidRequest, } errSRSelfNotFound = SRError{ Cause: errors.New("none of the given sites correspond to the current one"),Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 184.8K bytes - Click Count (1) -
src/main/java/jcifs/netbios/NbtException.java
* @param errorCode the error code * @return a descriptive error string */ public static String getErrorString(final int errorClass, final int errorCode) { StringBuilder result = new StringBuilder(); switch (errorClass) { case SUCCESS: result.append("SUCCESS"); break; case ERR_NAM_SRVC: result.append("ERR_NAM_SRVC/");Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
+ Hexdump.toHexString(desiredAccess, 4) + ",searchAttributes=0x" + Hexdump.toHexString(searchAttributes, 4) + ",fileAttributes=0x" + Hexdump.toHexString(fileAttributes, 4) + ",creationTime=" + new Date(creationTime) + ",openFunction=0x" + Hexdump.toHexString(openFunction, 2) + ",allocationSize=" + allocationSize + ",fileName=" + path + "]"); }
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 5.6K bytes - Click Count (0)