- Sort Score
- Result 10 results
- Languages All
Results 641 - 650 of 1,295 for implementar (0.09 sec)
-
guava/src/com/google/common/base/Predicate.java
/** * Indicates whether another object is equal to this predicate. * * <p><b>Warning: do not depend</b> on the behavior of this method. * * <p>Historically, {@code Predicate} instances in this library have implemented this method to * recognize certain cases where distinct {@code Predicate} instances would in fact behave * identically. However, as code migrates to {@code java.util.function}, that behavior will
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 18 15:22:00 UTC 2025 - 3.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java
* <pre> * RequestData request = RequestDataBuilder.newRequestData() * .method("GET") * .url("https://example.com") * .weight(1.0f) * .build(); * </pre> * * <p>The builder is implemented using an inner class {@link RequestDataContext} that handles * the actual construction of the RequestData object.</p> * */ public final class RequestDataBuilder { private RequestDataBuilder() { }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
*/ public class RuleTest extends PlainTestCase { /** * Test implementation of Rule interface for testing purposes */ public static class TestRule implements Rule { private static final long serialVersionUID = 1L; private final String ruleId; private final ResponseProcessor responseProcessor; private final boolean matchResult;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/outside/DeepInterfaceTest.java
@Subscribe void annotatedIn1And2AndClass(Object o); void declaredIn2AnnotatedInClass(Object o); @Subscribe void annotatedIn2(Object o); } static class SubscriberClass implements Interface2 { final List<Object> annotatedIn1Events = new ArrayList<>(); final List<Object> annotatedIn1And2Events = new ArrayList<>(); final List<Object> annotatedIn1And2AndClassEvents = new ArrayList<>();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 4.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ReverseOrdering.java
import java.util.Iterator; import org.jspecify.annotations.Nullable; /** An ordering that uses the reverse of a given order. */ @GwtCompatible final class ReverseOrdering<T extends @Nullable Object> extends Ordering<T> implements Serializable { final Ordering<? super T> forwardOrder; ReverseOrdering(Ordering<? super T> forwardOrder) { this.forwardOrder = checkNotNull(forwardOrder); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComQueryInformationResponse.java
* * This response contains file attributes, size, and timestamps * for the requested file or directory. */ public class SmbComQueryInformationResponse extends ServerMessageBlock implements SmbBasicFileInfo { private int fileAttributes = 0x0000; private long lastWriteTime = 0L; private final long serverTimeZoneOffset; private int fileSize = 0; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetShareEnum.java
import jcifs.Configuration; import jcifs.internal.smb1.trans.SmbComTransaction; import jcifs.internal.util.SMBUtil; /** * SMB1 NetShareEnum request message for enumerating network shares on a server. * This class implements the SMB1 transaction to retrieve a list of available shares * from the target server, including share names, types, and descriptions. */ public class NetShareEnum extends SmbComTransaction {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextResponse.java
import jcifs.internal.smb2.lease.Smb2LeaseKey; import jcifs.internal.util.SMBUtil; /** * SMB2 Lease V2 Create Context Response * * MS-SMB2 2.2.14.2.11 */ public class LeaseV2CreateContextResponse implements CreateContextResponse { /** * Context name for lease V2 response */ public static final String CONTEXT_NAME = "RqL2"; private static final byte[] CONTEXT_NAME_BYTES = CONTEXT_NAME.getBytes();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
* This structure provides standard file information including allocation size, end-of-file position, * number of links, deletion status, and directory flag. */ public class FileStandardInfo implements BasicFileInformation { private long allocationSize; private long endOfFile; private int numberOfLinks; private boolean deletePending; private boolean directory; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponse.java
* * This response contains information about file system changes * that occurred in the monitored directory. * * @author mbechler */ public class Smb2ChangeNotifyResponse extends ServerMessageBlock2Response implements NotifyResponse { private final List<FileNotifyInformation> notifyInformation = new ArrayList<>(); /** * Constructs a change notify response * * @param config
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0)