- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 1,385 for interfere (0.07 sec)
-
src/main/java/jcifs/smb/SmbTransportInternal.java
import jcifs.DfsReferralData; import jcifs.SmbSession; import jcifs.SmbTransport; /** * Internal interface for SMB transport operations. * * This interface provides internal methods for managing * SMB network transport and communication. * * @author mbechler */ public interface SmbTransportInternal extends SmbTransport { /** * Checks if the transport supports the specified capability. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java
/** * Represents the result of resolving an artifact. * <p> * This interface provides access to resolved artifacts, their associated paths, and any related exceptions that * occurred during the resolution process. * </p> * * @since 4.0.0 */ @Experimental public interface ArtifactResolverResult extends Result<ArtifactResolverRequest> { /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.7K bytes - Viewed (0) -
api/go1.15.txt
pkg strconv, func ParseComplex(string, int) (complex128, error) pkg sync, method (*Map) LoadAndDelete(interface{}) (interface{}, bool) pkg testing, method (*B) TempDir() string pkg testing, method (*T) Deadline() (time.Time, bool) pkg testing, method (*T) TempDir() string pkg testing, type TB interface, TempDir() string
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Jul 17 02:15:01 UTC 2020 - 7.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
entity2.setName("user2"); // Test List interface (should use get(0) for performance) List<BsUser> list = Arrays.asList(entity1, entity2); RenderDataUtil.register(data, "list", list); Object result = data.getDataMap().get("list"); assertNotNull(result); assertTrue(result instanceof List); // Test Set interface (should use iterator().next())
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/jcifs/ACETest.java
import org.junit.jupiter.params.provider.ValueSource; /** * Comprehensive test class for ACE interface constants and behavior. * Tests all constants, bitwise operations, and interface methods. * Achieves 100% coverage of the ACE interface contract. */ @DisplayName("ACE Interface Comprehensive Tests") class ACETest { @Nested @DisplayName("File Access Constants Tests")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.4K bytes - Viewed (0) -
src/cmd/api/testdata/src/issue21181/dep/p.go
package dep type Interface interface { N([]byte)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 05 17:53:43 UTC 2018 - 53 bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java
/** * Represents the base options supported by Maven tools. * This interface defines methods to access various configuration options * that can be set through command-line arguments or configuration files. * * @since 4.0.0 */ @Experimental public interface Options { /** Constant indicating that the options source is the command-line interface. */ String SOURCE_CLI = "CLI"; /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 13 16:14:35 UTC 2025 - 6.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java
import java.util.Collection; import java.util.Map; import java.util.NavigableSet; import java.util.SortedSet; import org.jspecify.annotations.Nullable; /** * Basic implementation of the {@link SortedSetMultimap} interface. It's a wrapper around {@link * AbstractMapBasedMultimap} that converts the returned collections into sorted sets. The {@link * #createCollection} method must return a {@code SortedSet}. * * @author Jared Levy */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 20 13:05:10 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java
import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.util.EnumSet; import java.util.Set; /** * Interface for RDMA provider implementations. * * This interface abstracts different RDMA implementations such as * InfiniBand, iWARP, RoCE, or TCP fallback providers. */ public interface RdmaProvider { /** * Check if RDMA is available on this system *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileFilter.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; /** * Filter interface for SMB file listings */ public interface SmbFileFilter { /** * Tests whether the specified SMB file should be included in a file list. * * @param file the SMB file to test for inclusion
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.3K bytes - Viewed (0)