Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for update_command (0.06 seconds)

  1. Vagrantfile

    #
    def linux_common(config,
                     name,
                     update_command: 'required',
                     update_tracking_file: 'required',
                     install_command: 'required',
                     install_command_retries: 0,
                     extra: '')
    
      raise ArgumentError, 'update_command is required' if update_command == 'required'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

        }
    
        /**
         * Sets the command array for user update operations.
         * @param updateCommand The update command array.
         */
        public void setUpdateCommand(final String[] updateCommand) {
            this.updateCommand = updateCommand;
        }
    
        /**
         * Sets the command array for user deletion operations.
         * @param deleteCommand The delete command array.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  3. scripts/notify_translations.py

            discussion_id=discussion_id,
            body=body,
        )
        response = AddCommentResponse.model_validate(data)
        return response.data.addDiscussionComment.comment
    
    
    def update_comment(*, settings: Settings, comment_id: str, body: str) -> Comment:
        data = get_graphql_response(
            settings=settings,
            query=update_comment_mutation,
            comment_id=comment_id,
            body=body,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 12.6K bytes
    - Click Count (0)
Back to Top