- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 603 for allows (1.76 sec)
-
android/guava/src/com/google/common/reflect/TypeVisitor.java
* * @author Ben Yu */ abstract class TypeVisitor { private final Set<Type> visited = new HashSet<>(); /** * Visits the given types. Null types are ignored. This allows subclasses to call {@code * visit(parameterizedType.getOwnerType())} safely without having to check nulls. */ public final void visit(@Nullable Type... types) { for (Type type : types) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChange.java
import jcifs.Configuration; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * SMB1 NT Transaction subcommand for file system change notification. * * This transaction allows monitoring of file system changes in a directory, * such as file creation, modification, deletion, and attribute changes. */ public class NtTransNotifyChange extends SmbComNtTransaction { int fid;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java
* build tools and environments. * * <p>A toolchain represents a specific build tool configuration (e.g., JDK, compiler) that can be * used during the Maven build process. This service allows for retrieving, storing, and managing * these toolchains.</p> * * @since 4.0.0 */ @Experimental public interface ToolchainManager extends Service { /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFilenameFilterTest.java
assertFalse(result, "Non-null names should be rejected by this filter"); } verifyNoInteractions(mockDir); } /** * Edge: passing a null directory object. Interface allows null; implementation decides. */ @Test @DisplayName("null directory is handled by implementation") void handlesNullDirectory() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/HandleReconnectorTest.java
assertThrows(UnsupportedOperationException.class, () -> { testReconnector.testCreateReconnectionRequest(testHandle); }); } /** * Test implementation of HandleReconnector that allows controlling success/failure */ private static class TestHandleReconnector extends HandleReconnector { private final boolean shouldSucceed;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 5.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ClusterException.java
import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import org.jspecify.annotations.NullMarked; /** * An {@link ClusterException} is a data structure that allows for some code to "throw multiple * exceptions", or something close to it. The prototypical code that calls for this class is * presented below: * * <pre> * void runManyThings({@literal List<ThingToRun>} thingsToRun) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
import jcifs.SmbTransportPool; import jcifs.smb.Handler; import jcifs.smb.SmbFile; import jcifs.smb.SmbNamedPipe; /** * A wrapper implementation of CIFSContext that delegates to another context. * This class allows for context decoration and customization through delegation. * * @author mbechler */ public class CIFSContextWrapper implements CIFSContext { private final CIFSContext delegate;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
* * <pre> * Allow WNET\alice 0x001200A9 Direct * Allow Administrators 0x001F01FF Inherited * Allow SYSTEM 0x001F01FF Inherited * </pre> * * the access check would fail because the direct ACE has an access mask * of <code>0x001200A9</code> which doesn't have the * <code>FILE_WRITE_DATA</code> bit on (bit <code>0x00000002</code>). Actually, this isn't quite correct. If
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.Configuration; /** * SMB1 transaction subcommand for calling a named pipe. * * This class implements the TRANS_CALL_NAMED_PIPE transaction which allows * writing data to and reading data from a named pipe in a single operation. */ public class TransCallNamedPipe extends SmbComTransaction {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java
* @since 4.0.0 * @see org.apache.maven.api.model.Dependency#getScope() * @see org.apache.maven.api.services.DependencyResolver */ @Experimental @Immutable public enum DependencyScope { /** * None. Allows you to declare dependencies (for example to alter reactor build order) but in reality dependencies * in this scope are not part of any path scope. */ NONE("none", false), /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 19 14:33:26 UTC 2025 - 4K bytes - Viewed (0)