SureshKumar Mylam
SureshKumar Mylam
  • Видео 50
  • Просмотров 41 049

Видео

Core Java 1 - What is JVM, JRE & JDK? How java becomes platform independent?
Просмотров 1994 года назад
In this video we are going to learn what is JVM, JRE and JDK? difference between platform dependent and platform independent language. how java is called platform independent.
Git - Most useful GIT COMMANDS
Просмотров 2684 года назад
GIT most used commands Git init - Initialize git Git status - check the status Git add - add files to stage git status -s - display files and status Git log - view logs Git log -oneline - Logs can be viewed in one line Git diff - updates on the file from HEAD Git commit -m “message” - Commit the files to local repository Git config -global user.name - Add user name to git config Git config -glo...
TestNG - BeforeClass & AfterClass Part2
Просмотров 1354 года назад
TestNG - BeforeClass & AfterClass Part2
GIT - what is git STASH? CREATE,VIEW,DELETE stashes in git
Просмотров 7434 года назад
In this video we are going to learn GIT STASH: 16. Git Stash Create stash git stash git stash save “name” git stash push -m “text” Create stash with untracked files git stash -u List all stashes git stash list View stash git stash show stash@{index} git stash apply vs git stash pop git stash apply stash@{index} - This will apply changes into working copy git stash pop stash@{index} - This will ...
GIT - What is CHERRY-PICK in git? , Merge Vs Rebase Vs Cherry Pick in git
Просмотров 3,7 тыс.4 года назад
In this video we are going to understand what is Cherry-Pick in git? Difference between Merge,Rebase and Cherry-pick. Checkout to master branch run this : git cherry-pick commit-ID
Git - what is TAG in git? how to CREATE, CHECKOUT & DELETE
Просмотров 4,6 тыс.4 года назад
In this video we are going to learn what is TAG in GIT and how to CREATE(Annotated tag & Light weighted) tags, checkout and DELETE. Annotated tag : git tag -a tag_name -m "tag_message" Light weighted tag : git tag tag_name push tag to remote: git push origin tag_name git push origin tags Delete local tag : git tag delete tag_name git tag d tag_name1 tag_name2 Delete Remote tag : git push origin...
What is GIT REVERT? git revert vs git reset
Просмотров 2,8 тыс.4 года назад
In this video we are going to learn what is GIT REVERT and difference between git revert and git reset.
Git RESET explanation and implementation of hard, mixed & soft reset options with examples
Просмотров 2,9 тыс.4 года назад
In this video you are going to understand git reset concept and different options such as: Hard. : git reset hard commit_ID Mixed. : git reset mixed commit_ID Soft : git reset soft commit_ID
Git - what is 'git clean' and example
Просмотров 6044 года назад
In this video we are going to understand what is the use of 'git clean' command and how to use that. git clean -n List the files will be removed git clean -n -d List the files and directories will be removed git clean - f delete the untracked files git clean -f -d delete the untracked files and folders/ directories from the working copy
Centralized version control system vs Distributed Version Control system
Просмотров 9 тыс.4 года назад
In this video we are going to learn the differences between centralized version control system and Distributed version control system
Git Rebase - Detail explanation with example
Просмотров 5324 года назад
In this video , we are going to learn detailed explanation on GIT REBASE
Git - git merge vs git rebase explanation
Просмотров 4214 года назад
In this video you are going to learn what is git merge and what is git rebase.
Git - git fetch vs git pull
Просмотров 4694 года назад
In this video we are going to learn what is git fetch and what is git pull. git fetch (to fetch the remote changes into local repository) git merge (after fetch we need to run this to apply changes to working copy) git pull (apply remote changes to local working copy)
Git - Implementation of branching mechanism in git
Просмотров 2844 года назад
In this video we are going to implement branching mechanism Branching (create branch, push to remote and delete) Create a feature branch from master git branch branch_Name git checkout branch_Name git checkout -b branch_Name Add new files into it git add file2.txt Push them to remote Git push origin -u branch_Name Merge them to master (user should be on target branch) git merge branch_name (thi...
Git - Understanding of branching mechanism in git
Просмотров 3074 года назад
Git - Understanding of branching mechanism in git
Git How to install git, initialize git,track files and push them to remote repository
Просмотров 6694 года назад
Git How to install git, initialize git,track files and push them to remote repository
What is git and git workflow?
Просмотров 9414 года назад
What is git and git workflow?
Docker - How to run Jenkins jobs on remote host docker container?
Просмотров 2,5 тыс.4 года назад
Docker - How to run Jenkins jobs on remote host docker container?
Docker - How to install MS SQL server container on Mac
Просмотров 3554 года назад
Docker - How to install MS SQL server container on Mac
Docker - What is dockerfile and how to build image using it?
Просмотров 664 года назад
Docker - What is dockerfile and how to build image using it?
Docker - how to install docker and install jenkins on docker container
Просмотров 1114 года назад
Docker - how to install docker and install jenkins on docker container
Docker - What is Docker and its advantages?
Просмотров 1754 года назад
Docker - What is Docker and its advantages?
TestNG - Advantages of Package tag in testNG XML
Просмотров 794 года назад
TestNG - Advantages of Package tag in testNG XML
TestNG - How to run only failed Tests from suite after execution
Просмотров 1634 года назад
TestNG - How to run only failed Tests from suite after execution
TestNG - How to retry a failed test automatically using IRetryAnalyzer
Просмотров 1,1 тыс.4 года назад
TestNG - How to retry a failed test automatically using IRetryAnalyzer
TestNG - ThreadCount, ThreadPoolSize and invocationCount
Просмотров 4,1 тыс.4 года назад
TestNG - ThreadCount, ThreadPoolSize and invocationCount
TestNG - MetaGroup concept in TestNG groups
Просмотров 1294 года назад
TestNG - MetaGroup concept in TestNG groups
TestNG - How to use regular expression in groups in testNG XML
Просмотров 1754 года назад
TestNG - How to use regular expression in groups in testNG XML
TestNG - How to group Tests using testNG XML
Просмотров 1184 года назад
TestNG - How to group Tests using testNG XML

Комментарии

  • @subhashhadimani4415
    @subhashhadimani4415 14 дней назад

    Thank you very much bro for this video

  • @subhashhadimani4415
    @subhashhadimani4415 14 дней назад

    Thanks a lot for the accurate info

  • @SM-ez9mr
    @SM-ez9mr 29 дней назад

    Thank you sir . Nice

  • @pavitragupta26
    @pavitragupta26 3 месяца назад

    If downloading is faster in CVCS than why do you say it is slower than DVCS?

  • @Ms.LikaDev
    @Ms.LikaDev 6 месяцев назад

    Thank you!

  • @harivigneswarans1730
    @harivigneswarans1730 6 месяцев назад

    great... u r guiding what others missed/ rare scenario. thanks .

  • @prabhatsingh7839
    @prabhatsingh7839 Год назад

    great knowledge and well explained, many many thanks to you

  • @kandrugouthami8910
    @kandrugouthami8910 Год назад

    Explained very well..

  • @Gumshoe21
    @Gumshoe21 Год назад

    Great info, you're a champ!

  • @anamk139
    @anamk139 Год назад

    Bestt ❤

  • @akashsalunke1813
    @akashsalunke1813 Год назад

    Nice

  • @shreyanshjain4519
    @shreyanshjain4519 Год назад

    why Thread ID is 14,15 or 13 and not starts from 0,1?

  • @aftabkham
    @aftabkham Год назад

    Helpful video. Thanks. At 15:30 >> git stash show stash@{0} - did not show any file names because file was untracked file. Then how to view stash contents if it has some untracked files.

  • @SurajSurdarshanSuryawanshi
    @SurajSurdarshanSuryawanshi Год назад

    Great explanation

  • @prodigy940421
    @prodigy940421 Год назад

    Unfortunately, I though that you explained how Jenkins can remotely run docker containers

  • @sangojusandeep1966
    @sangojusandeep1966 Год назад

    very thanks for the explanation

  • @siosaiafonua9286
    @siosaiafonua9286 Год назад

    thank you my friend

  • @naanireddy1
    @naanireddy1 Год назад

    how to execute .exe file on remote machine(windows server) using jenkins job(Linux machine)

  • @abhayrai847
    @abhayrai847 2 года назад

    but how can we identify the first 3 test cases run with thread.count only

  • @preethimancha9338
    @preethimancha9338 2 года назад

    Lpo

  • @vinothar3646
    @vinothar3646 2 года назад

    Clearly explained thank u

  • @josephthecreator
    @josephthecreator 2 года назад

    This video was extremely helpful. Thank you!

  • @kiransingh8239
    @kiransingh8239 2 года назад

    Awesome explanation brother 🙏🙏🙏

  • @priyakevlogsMH
    @priyakevlogsMH 2 года назад

    Excllent Explanation Thank You

  • @ytdekhnevala3648
    @ytdekhnevala3648 2 года назад

    Do I need to use Assert.fail() ? Instead if the test is failing because a UI element is changed and if I'm not using Assert.fail() in order to fail test but instead using test.log(status.FAIL, "Test Failed"); - will that work?

  • @sreekanthvarma3019
    @sreekanthvarma3019 2 года назад

    bro can we delete a particular commit... suppose we are in 5th commit..can we delete 2nd commit..???

  • @mahendratawade606
    @mahendratawade606 2 года назад

    Thanks for such a good stuff. One question here - when I ran it on gitlab pipeline at end in results section all the skipped test cases showing pass Like : Run 1 - Pass, Run 2- Pass, Run 3- Pass, Run 4- Failed. In this Run 1 to 3 are skipped but here it's showing pass

  • @digvijayyamagekar4300
    @digvijayyamagekar4300 2 года назад

    the best explanation

  • @manoraja9356
    @manoraja9356 2 года назад

    Thanks for the video 🙂

  • @mikewagner6059
    @mikewagner6059 2 года назад

    Great Job! Straight and to the point!

  • @shakunthalapulugu755
    @shakunthalapulugu755 2 года назад

    Thanks for your clear explanation.

  • @saimuralipavan
    @saimuralipavan 2 года назад

    amazing way of comparison.. keep it up..!

  • @sweetthirty2
    @sweetthirty2 2 года назад

    wow doubt cleared thankss

  • @preethi1530
    @preethi1530 2 года назад

    Superb explanation I saw more than 10 videos related to this topic. But this is the best video😊

  • @mddawood5795
    @mddawood5795 2 года назад

    Good explanation.. waiting for more videos like on jenkins, ansible, maven with real time practice...thanks..👌👍👍

  • @smeeangle
    @smeeangle 3 года назад

    Thanks a lot . So clear.

  • @unpaiddonkey
    @unpaiddonkey 3 года назад

    One suggestion .Try to increase the loudness of the video, your video sound is so low.

  • @johharsaai2881
    @johharsaai2881 3 года назад

    Thanks ☺️

  • @johharsaai2881
    @johharsaai2881 3 года назад

    Thank you

  • @johharsaai2881
    @johharsaai2881 3 года назад

    Thank you

  • @devasena2749
    @devasena2749 3 года назад

    good explanation for stash concept

  • @asad5921
    @asad5921 3 года назад

    Thanks sir. Great job. But you haven't told why do we use rebase . Uses of rebase. Could you please mention.

  • @hiluya
    @hiluya 4 года назад

    Which password are we using when we past the container form Microsoft. I'm stuck there :(

  • @jollymail1
    @jollymail1 4 года назад

    video clarity need to be more improved, also size of text on terminal should be increased

    • @sureshreddy7335
      @sureshreddy7335 4 года назад

      Thanks for the feedback .. will be taken care

  • @seleldjdfmn221
    @seleldjdfmn221 4 года назад

    I love This channel. Stay strong. Also, Let's build each Other Up xo

  • @seleldjdfmn221
    @seleldjdfmn221 4 года назад

    Amazing. Gather all the knowledge you Can! Also, let's be youtube friends? xD

  • @rohitghodkes
    @rohitghodkes 4 года назад

    Hi Will you be uploading more videos?

    • @sureshkumarmylam6166
      @sureshkumarmylam6166 4 года назад

      Yes ROY... I will be uploading more videos soon. Please comment if you need any specific functionality., I will also address that. Thank you.