Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for unready (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/NtStatus.java

        /** The object name is invalid */
        int NT_STATUS_OBJECT_NAME_INVALID = 0xC0000033;
        /** The object was not found */
        int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034;
        /** The object name already exists */
        int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035;
        /** The port is disconnected */
        int NT_STATUS_PORT_DISCONNECTED = 0xC0000037;
        /** The object path is invalid */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtStatus.java

        /** The object name is invalid */
        int NT_STATUS_OBJECT_NAME_INVALID = 0xC0000033;
        /** The object was not found */
        int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034;
        /** The object name already exists */
        int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035;
        /** The port is disconnected */
        int NT_STATUS_PORT_DISCONNECTED = 0xC0000037;
        /** The object path is invalid */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

                }
    
            }
            log.trace("Pipe already open");
            return this.handle.acquire();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbPipeHandle#getInput()
         */
        @Override
        public SmbPipeInputStream getInput() throws CIFSException {
    
            if (!this.open) {
                throw new SmbException("Already closed");
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeResolver.java

    /**
     * An object of this class encapsulates type mappings from type variables. Mappings are established
     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
     * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
     * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/Types.java

          @Nullable Type ownerType, Class<?> rawType, Type... arguments) {
        if (ownerType == null) {
          return newParameterizedType(rawType, arguments);
        }
        // ParameterizedTypeImpl constructor already checks, but we want to throw NPE before IAE
        checkNotNull(arguments);
        checkArgument(rawType.getEnclosingClass() != null, "Owner type for unenclosed %s", rawType);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
                if (request == null || chainedResponse != null && chainedResponse.isReceived()) {
                    return chainedResponse;
                }
    
                // fall trough if the tree connection is already established
                // and send it as a separate request instead
                String svc = null;
                final int t = this.tid;
                request.setTid(t);
    
                if (!transport.isSMB2()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SimpleMemoryManagementTest.java

            // Test try-with-resources
            assertTrue(session.isInUse(), "Session should be in use initially");
            try (SmbSessionImpl autoSession = session) {
                // Session is already in use due to transport acquisition
                assertTrue(autoSession.isInUse(), "Session should be in use");
            }
    
            // Session should be automatically released
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/reflect/TypeResolver.java

    /**
     * An object of this class encapsulates type mappings from type variables. Mappings are established
     * with {@link #where} and types are resolved using {@link #resolveType}.
     *
     * <p>Note that usually type mappings are already implied by the static type hierarchy (for example,
     * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/Types.java

          @Nullable Type ownerType, Class<?> rawType, Type... arguments) {
        if (ownerType == null) {
          return newParameterizedType(rawType, arguments);
        }
        // ParameterizedTypeImpl constructor already checks, but we want to throw NPE before IAE
        checkNotNull(arguments);
        checkArgument(rawType.getEnclosingClass() != null, "Owner type for unenclosed %s", rawType);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/transport/Transport.java

            int st = this.state;
            try {
                switch (st) {
                case 0:
                    break;
                case 1:
                    // already connecting
                    this.thread.wait(timeout); /* wait for doConnect */
                    st = this.state;
                    switch (st) {
                    case 1: /* doConnect never returned */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
Back to top