- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 1,156 for implemented (0.06 sec)
-
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java
* in the monitored directory, such as file creation, modification, or deletion. */ public class NtTransNotifyChangeResponse extends SmbComNtTransactionResponse implements NotifyResponse { private final List<FileNotifyInformation> notifyInformation = new ArrayList<>(); /** * Constructs an NT transaction notify change response.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2Lock.java
/** * SMB2 Lock data structure. * * This class represents a single lock element used in * SMB2 Lock requests for byte-range locking. * * @author mbechler */ public class Smb2Lock implements Encodable { /** * Flag indicating a shared lock that allows concurrent read access. */ public static final int SMB2_LOCKFLAG_SHARED_LOCK = 0x1; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java
/** * Wraps an ordinary {@link CharSequence} as a source. * * @deprecated since 4.0.0, use {@link org.apache.maven.api.services} instead */ @Deprecated(since = "4.0.0") public class StringSource implements Source { private final String content; private final String location; private final int hashCode; /** * Creates a new source backed by the specified string. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 18:51:29 UTC 2025 - 3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/metadata/TestMetadataSource.java
import org.apache.maven.repository.legacy.metadata.MetadataResolutionRequest; import org.apache.maven.repository.legacy.metadata.ResolutionGroup; @Named @Singleton @Deprecated public class TestMetadataSource implements ArtifactMetadataSource { @Inject private ArtifactFactory factory; @Override public ResolutionGroup retrieve(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Booleans.java
* * @author Kevin Bourrillion * @since 1.0 */ @GwtCompatible public final class Booleans { private Booleans() {} /** Comparators for {@code Boolean} values. */ private enum BooleanComparator implements Comparator<Boolean> { TRUE_FIRST(1, "Booleans.trueFirst()"), FALSE_FIRST(-1, "Booleans.falseFirst()"); private final int trueValue; private final String toString;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
* * @author Kevin Bourrillion * @since 1.0 */ @GwtCompatible public final class Booleans { private Booleans() {} /** Comparators for {@code Boolean} values. */ private enum BooleanComparator implements Comparator<Boolean> { TRUE_FIRST(1, "Booleans.trueFirst()"), FALSE_FIRST(-1, "Booleans.falseFirst()"); private final int trueValue; private final String toString;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
@AndroidIncompatible // lots of failures, possibly some related to bad equals() implementations? @NullUnmarked public class TypeTokenTest extends TestCase { private abstract static class StringList implements List<String> {} private abstract static class IntegerList implements List<Integer> {} public void testValueEqualityNotInstanceEquality() { TypeToken<List<String>> a = new TypeToken<List<String>>() {};
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
assertTrue("Test should complete quickly (duration: " + duration + "ms)", duration < 1000); } // Fast mock implementations to minimize overhead private static class FastMockIndexUpdateCallback implements IndexUpdateCallback { @Override public long getExecuteTime() { return 100L; } @Override public long getDocumentSize() { return 10L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CloserTest.java
} // TODO(cpovirk): Just use addSuppressed+getSuppressed now that we can rely on it. /** Suppressor that records suppressions. */ private static class TestSuppressor implements Closer.Suppressor { private final List<Suppression> suppressions = new ArrayList<>(); @Override public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestTest.java
assertNotNull(ignored); assertEquals(testRequest, ignored); } /** * Test implementation of Request interface */ private static class TestRequest implements Request<TestResponse> { private TestResponse response; private boolean ignoreDisconnect = false; private int tid = 0; private SMBSigningDigest digest; private long mid = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0)