Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 487 for newword (0.04 sec)

  1. src/main/java/jcifs/smb/NetServerEnumIterator.java

    import jcifs.internal.smb1.net.NetServerEnum2;
    import jcifs.internal.smb1.net.NetServerEnum2Response;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    
    /**
     * Iterator for enumerating network servers.
     *
     * This class provides iteration over network servers discovered
     * through NetBIOS server enumeration requests.
     */
    public class NetServerEnumIterator implements CloseableIterator<FileEntry> {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java

            Exception expectedCause = new IOException("Network unreachable");
    
            try {
                throw new LdapOperationException(expectedMessage, expectedCause);
            } catch (LdapOperationException e) {
                assertEquals(expectedMessage, e.getMessage());
                assertEquals(expectedCause, e.getCause());
                assertEquals("Network unreachable", e.getCause().getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  3. .typos.toml

    "TestGetPartialObjectMisAligned" = "TestGetPartialObjectMisAligned"
    "thr" = "thr"
    "toi" = "toi"
    
    [type.go]
    extend-ignore-identifiers-re = [
        # Variants of `typ` used to mean `type` in golang as it is otherwise a
        # keyword - some of these (like typ1 -> type1) can be fixed, but probably
        # not worth the effort.
        "[tT]yp[0-9]*",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 03 06:45:06 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

        if (cacheCandidate != null && cacheResponse == null) {
          // The cache candidate wasn't applicable. Close it.
          cacheCandidate.body.closeQuietly()
        }
    
        // If we're forbidden from using the network and the cache is insufficient, fail.
        if (networkRequest == null && cacheResponse == null) {
          return Response
            .Builder()
            .request(chain.request())
            .protocol(Protocol.HTTP_1_1)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.34.md

    - Replaced deprecated package `k8s.io/utils/pointer` with `k8s.io/utils/ptr` for pkg/controller (2/2). ([#132784](https://github.com/kubernetes/kubernetes/pull/132784), [@PatrickLaabs](https://github.com/PatrickLaabs)) [SIG API Machinery, Apps, Network, Node and Storage]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/graph/GraphsTest.java

      @Test
      public void copyOf_directedNetwork() {
        Network<Integer, String> directedGraph = buildDirectedNetwork();
    
        Network<Integer, String> copy = copyOf(directedGraph);
        assertThat(copy).isEqualTo(directedGraph);
      }
    
      @Test
      public void copyOf_undirectedNetwork() {
        Network<Integer, String> undirectedGraph = buildUndirectedNetwork();
    
        Network<Integer, String> copy = copyOf(undirectedGraph);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/UniAddressTest.java

     * with different kinds of inputs.  Many static helpers in {@code
     * UniAddress} are network dependent and therefore not exercised here – they
     * would require complex stubbing of static methods.  Instead the tests
     * concentrate on the instance methods and simple static predicates
     * that are observable without network access.
     */
    @ExtendWith(MockitoExtension.class)
    class UniAddressTest {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

        private set
      private var timeoutEarlyExit = false
    
      /**
       * This is the same value as [exchange], but scoped to the execution of the network interceptors.
       * The [exchange] field is assigned to null when its streams end, which may be before or after the
       * network interceptors return.
       */
      internal var interceptorScopedExchange: Exchange? = null
        private set
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/msrpc/SamrDomainHandleTest.java

        }
    
        @Test
        void constructor_shouldThrowIOExceptionOnSendRecvFailure() throws IOException {
            // Arrange
            int access = 0x01;
            IOException expectedException = new IOException("Network error");
            // Simulate IOException during RPC call
            doThrow(expectedException).when(mockDcerpcHandle).sendrecv(any(MsrpcSamrOpenDomain.class));
    
            // Act & Assert
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Version.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * A version or meta-version of an artifact or a dependency.
     * A meta-version is a version suffixed with the {@code SNAPSHOT} keyword.
     * Versions are usually parsed using the {@link org.apache.maven.api.services.VersionParser} service.
     *
     * @since 4.0.0
     * @see org.apache.maven.api.services.VersionParser#parseVersion(String)
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top