Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for dirty (0.05 sec)

  1. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            then:
            target.file( '.git').assertIsDir()
            target.file( 'submodule/foo.txt').text == "hello from submodule"
        }
    
        def 'reset a cloned repository with dirty working dir'() {
            given:
            def target = tmpDir.file('versionDir')
            gitVcs.populate(target, repoHead, repoSpec)
    
            def removed = target.file("source.txt")
            removed.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/encoding/gob/encoder.go

    // writeMessage sends the data item preceded by an unsigned count of its length.
    func (enc *Encoder) writeMessage(w io.Writer, b *encBuffer) {
    	// Space has been reserved for the length at the head of the message.
    	// This is a little dirty: we grab the slice from the bytes.Buffer and massage
    	// it by hand.
    	message := b.Bytes()
    	messageLen := len(message) - maxLength
    	// Length cannot be bigger than the decoder can handle.
    	if messageLen >= tooBig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top