Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 936 for handles (0.04 sec)

  1. guava-testlib/src/com/google/common/testing/EqualsTester.java

                item + " must not be Object#equals to its Object#toString representation",
                !item.equals(item.toString()));
          }
        }
      }
    
      /**
       * Class used to test whether equals() correctly handles an instance of an incompatible class.
       * Since it is a private inner class, the invoker can never pass in an instance to the tester
       */
      private enum NotAnInstance {
        EQUAL_TO_NOTHING;
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            }
            if (LogStream.level > 2) {
                try {
                    Config.store(log, "JCIFS PROPERTIES");
                } catch (final IOException ioe) {}
            }
        }
    
        /**
         * Handles file download requests for SMB files.
         * @param req the HTTP servlet request
         * @param resp the HTTP servlet response
         * @param file the SMB file to download
         * @throws IOException if an I/O error occurs
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/QueryHelper.java

    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpSession;
    
    /**
     * QueryHelper is responsible for building and managing OpenSearch queries for Fess search functionality.
     * It handles query construction, role-based access control, boost functions, sorting, and search preferences.
     * This class serves as the central component for translating user search requests into properly formatted
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/DocumentUtil.java

            }
            return value;
        }
    
        /**
         * Gets a typed value from a document map.
         * Supports conversion to String, Date, Long, Integer, Double, Float, Boolean,
         * List, and String array types. Handles both single values and arrays/lists.
         *
         * @param <T> the type to convert the value to
         * @param doc the document map to extract the value from
         * @param key the key to look up in the document map
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java

            });
            return asJson(new ApiResponse().status(Status.OK).result());
        }
    
        /**
         * Creates an EditBody from a DataConfig entity for API responses.
         * Handles permission and virtual host encoding.
         *
         * @param entity the DataConfig entity to convert
         * @return the converted EditBody object
         */
        protected EditBody createEditBody(final DataConfig entity) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

            assertEquals("Container is not available.", exception3.getMessage());
        }
    
        public void test_causeOnlyConstructorWithMessage() {
            // Test that cause-only constructor properly handles the cause
            String causeMessage = "Initialization failed";
            RuntimeException cause = new RuntimeException(causeMessage);
            ContainerNotAvailableException exception = new ContainerNotAvailableException(cause);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

        /**
         * Get failure count for a handle
         *
         * @param handle notification handle
         * @return number of consecutive failures
         */
        private int getFailureCount(ChangeNotificationHandle handle) {
            return failureCounts.getOrDefault(handle.getDirectoryPath(), 0);
        }
    
        /**
         * Increment failure count for a handle
         *
         * @param handle notification handle
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  8. internal/stmt_store/stmt_store.go

    }
    
    type ConnPool interface {
    	PrepareContext(ctx context.Context, query string) (*sql.Stmt, error)
    }
    
    // New creates a new Stmt object for executing SQL queries.
    // It caches the Stmt object for future use and handles preparation and error states.
    // Parameters:
    //
    //	ctx: Context for the request, used to carry deadlines, cancellation signals, etc.
    //	key: The key representing the SQL query, used for caching and preparing the statement.
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun Apr 27 06:05:16 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NetworkExplorer.java

            } catch (final CIFSException ex) {
                throw new ServletException("Failed to initialize CIFS context", ex);
            }
        }
    
        /**
         * Handles file download requests for SMB files.
         * @param req the HTTP servlet request
         * @param resp the HTTP servlet response
         * @param file the SMB file to download
         * @throws IOException if an I/O error occurs
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java

    /**
     * Abstract base class for DCERPC handles providing core RPC functionality.
     * This class manages DCE/RPC protocol bindings and communications over SMB transport.
     */
    public abstract class DcerpcHandle implements DcerpcConstants {
    
        /**
         * Default constructor for DcerpcHandle.
         * Initializes the DCE/RPC handle for protocol operations.
         */
        protected DcerpcHandle() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
Back to top