🔍 Code Extractor

Search Components

Full-Text: Fast keyword matching | Semantic: AI-powered understanding of intent (finds similar concepts)

Search Results for "deletion"

Found 29 matching component(s)

  • function delete_document

    Deletes a controlled document from the system with permission checks, status validation, and audit logging.

    File: /tf/active/vicechatdev/document_controller_backup.py

    document-management deletion controlled-documents audit-trail permissions
  • function file_cleanup

    Removes files older than 60 seconds from the './static/files/' directory.

    File: /tf/active/vicechatdev/datacapture_integrated.py

    file-management cleanup temporary-files maintenance file-deletion
  • class FileCloudAPI_v1

    Python wrapper for the FileCloud REST API. This class provides methods to interact with FileCloud server APIs, handling authentication, session management, and various file operations.

    File: /tf/active/vicechatdev/FC_api.py

    class filecloudapi
  • function test_collection_creation

    A diagnostic test function that verifies Chroma DB functionality by creating a test collection, adding a document, querying it, and cleaning up.

    File: /tf/active/vicechatdev/test_chroma_collections.py

    testing debugging chroma-db vector-database health-check
  • class User

    A user management class that handles authentication, authorization, user profiles, preferences, file management, and logging for a Panel-based web application with Neo4j backend.

    File: /tf/active/vicechatdev/userclass.py

    authentication authorization user-management role-based-access-control neo4j
  • function reset_collection

    Deletes an existing ChromaDB collection and logs the operation, requiring an application restart to recreate the collection.

    File: /tf/active/vicechatdev/docchat/reset_collection.py

    chromadb vector-database database-management collection-reset cleanup
  • class AgentExecutor

    Agent-based script executor that generates standalone Python files, manages dependencies, and provides iterative debugging capabilities

    File: /tf/active/vicechatdev/vice_ai/agent_executor.py

    class agentexecutor
  • function delete_document_file

    Deletes a document file from the file system based on the provided document ID, removing the corresponding JSON file from the DOCUMENTS_DIR directory.

    File: /tf/active/vicechatdev/vice_ai/complex_app.py

    file-management deletion document-management file-system cleanup
  • function remove_uploaded_document

    Removes a specific uploaded document from the application state for a given user, with thread-safe locking and automatic cleanup of empty user entries.

    File: /tf/active/vicechatdev/vice_ai/complex_app.py

    document-management state-management thread-safe deletion cleanup
  • function clear_user_uploaded_documents

    Removes all uploaded documents associated with a specific user from the application state in a thread-safe manner.

    File: /tf/active/vicechatdev/vice_ai/complex_app.py

    user-management document-cleanup thread-safe state-management memory-cleanup
  • function remove_uploaded_document_v1

    Removes a specific uploaded document from a user's document collection in the application state, with thread-safe locking and automatic cleanup of empty user entries.

    File: /tf/active/vicechatdev/vice_ai/complex_app.py

    document-management thread-safe state-management deletion cleanup
  • function api_delete_section

    Flask API endpoint that deletes a specific section from a document after validating user authorization and document existence.

    File: /tf/active/vicechatdev/vice_ai/complex_app.py

    api rest delete section document-management
  • function remove_user_document

    Removes a specific document for a user by deleting the file from the filesystem and removing its metadata from the in-memory storage structure.

    File: /tf/active/vicechatdev/vice_ai/app.py

    document-management file-deletion thread-safe cleanup storage-management
  • function delete_text_section

    Flask API endpoint that deletes a text section after verifying user ownership and authentication.

    File: /tf/active/vicechatdev/vice_ai/new_app.py

    flask api delete rest-api authentication
  • function delete_document_v1

    Flask API endpoint that deletes a document after verifying ownership and authentication.

    File: /tf/active/vicechatdev/vice_ai/new_app.py

    flask api rest delete document-management
  • function delete_data_section

    Flask API endpoint that deletes a data section after verifying ownership by the authenticated user.

    File: /tf/active/vicechatdev/vice_ai/new_app.py

    flask api rest delete data-section
  • class TextSectionService

    Service class for managing TextSection entities, providing CRUD operations, versioning, chat functionality, and search capabilities.

    File: /tf/active/vicechatdev/vice_ai/services.py

    service-layer text-management versioning crud-operations chat-integration
  • function delete_node

    Deletes a node from a Neo4j graph database by its unique identifier (UID), with optional cascade deletion of connected nodes and relationships.

    File: /tf/active/vicechatdev/CDocs/db/db_operations.py

    neo4j graph-database delete node-deletion cascade-delete
  • function delete_user_v1

    Deletes a user from the database by removing their user node using the provided user_id.

    File: /tf/active/vicechatdev/CDocs/controllers/admin_controller.py

    user-management database deletion CRUD error-handling
  • function delete_user

    Safely deactivates a user account by setting an 'active' flag to false rather than permanently deleting the user record from the database.

    File: /tf/active/vicechatdev/CDocs/controllers/admin_controller.py

    user-management database neo4j deactivation soft-delete
  • function remove_training_assignment

    Removes a training assignment relationship between a user and a controlled document in a Neo4j graph database, with audit logging and permission checks.

    File: /tf/active/vicechatdev/CDocs/controllers/training_controller.py

    training-management neo4j graph-database relationship-deletion audit-logging
  • function delete_document_from_filecloud

    Deletes a document and its associated folder from FileCloud storage, with permission checks, audit logging, and error handling.

    File: /tf/active/vicechatdev/CDocs/controllers/filecloud_controller.py

    document-management file-deletion filecloud storage audit-logging
  • class FileCloudIntegration

    Manages integration with FileCloud for document storage and metadata

    File: /tf/active/vicechatdev/CDocs/utils/filecloud_integration.py

    class filecloudintegration
  • function delete_notification

    Deletes a notification node from a Neo4j graph database by its unique identifier (UID).

    File: /tf/active/vicechatdev/CDocs/utils/notifications.py

    database neo4j notification delete crud
  • function log_approval_event

    A convenience wrapper function that logs approval-related events by delegating to a generic log_event function with the resource_type fixed as 'Approval'.

    File: /tf/active/vicechatdev/CDocs/utils/audit_trail.py

    audit-trail logging approval-workflow event-tracking database
  • function delete_session

    Flask route handler that deletes an analysis session and all its associated data from the database, returning a JSON response indicating success or failure.

    File: /tf/active/vicechatdev/full_smartstat/app.py

    flask rest-api delete-endpoint session-management database-operations
  • function admin_cleanup

    Flask route handler that provides an admin endpoint to manually trigger cleanup of old analysis sessions based on a configurable age threshold.

    File: /tf/active/vicechatdev/full_smartstat/app.py

    admin cleanup maintenance flask-route session-management
  • class StatisticalAnalysisService

    Main service for statistical analysis orchestration

    File: /tf/active/vicechatdev/full_smartstat/services.py

    class statisticalanalysisservice
  • class StatisticalAnalysisService_v1

    Main service for statistical analysis orchestration

    File: /tf/active/vicechatdev/smartstat/services.py

    class statisticalanalysisservice

Search Examples