Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for commit1 (1.26 sec)

  1. CONTRIBUTING.md

    ### Creating commits and writing commit messages
    
    The commit messages that accompany your code changes are an important piece of documentation. Please follow these guidelines when creating commits:
    
    * [Write good commit messages.](https://cbea.ms/git-commit/#seven-rules)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/codehost.go

    }
    
    // ErrNoCommits is an error equivalent to fs.ErrNotExist indicating that a given
    // repository or module contains no commits.
    var ErrNoCommits error = noCommitsError{}
    
    type noCommitsError struct{}
    
    func (noCommitsError) Error() string {
    	return "no commits"
    }
    func (noCommitsError) Is(err error) bool {
    	return err == fs.ErrNotExist
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/cache.go

    }
    
    // readDiskStatByHash is a fallback for readDiskStat for the case
    // where rev is a commit hash instead of a proper semantic version.
    // In that case, we look for a cached pseudo-version that matches
    // the commit hash. If we find one, we use it.
    // This matters most for converting legacy package management
    // configs, when we are often looking up commits by full hash.
    // Without this check we'd be doing network I/O to the remote repo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. tests/transaction_test.go

    	user := User{Name: "transaction"}
    	if err := tx.Save(&user).Error; err != nil {
    		t.Fatalf("No error should raise")
    	}
    
    	if err := tx.Commit().Error; err != nil {
    		t.Fatalf("Commit should not raise error")
    	}
    
    	if err := tx.Rollback().Error; err == nil {
    		t.Fatalf("Rollback after commit should raise error")
    	}
    }
    
    func TestTransactionWithSavePoint(t *testing.T) {
    	tx := DB.Begin()
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    ven-plugin-api jira http://jira.codehaus.org/browse/MNG continuum commits@maven.apache.org Maven User List ******@****.*** ******@****.*** ******@****.*** http://mail-archives.apache.org/mod_mbox/maven-users Maven Developer List ******@****.*** ******@****.*** ******@****.*** http://mail-archives.apache.org/mod_mbox/maven-dev Maven Commits List commits******@****.*** ******@****.*** c...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/CIBuildModel.kt

    ) {
        per_commit(
            displayName = "Performance Regression Test",
            timeout = 420,
            channel = "commits"
        ),
        per_day(
            displayName = "Slow Performance Regression Test",
            timeout = 420,
            channel = "commits"
        ),
        per_week(
            displayName = "Performance Experiment",
            timeout = 420,
            channel = "experiments"
        ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/vcs.go

    	for _, line := range strings.Split(out, "\n") {
    		if line == "" || line[0] == ' ' || line[0] == '\t' {
    			// End of header, start of commit message.
    			break
    		}
    		if line[0] == '-' {
    			continue
    		}
    		before, after, found := strings.Cut(line, ":")
    		if !found {
    			// End of header, start of commit message.
    			break
    		}
    		key, val := before, strings.TrimSpace(after)
    		switch key {
    		case "revno":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/coderepo.go

    // r.modPath and encodes a base version and commit metadata that agrees with
    // info.
    //
    // Note that verifying a nontrivial base version in particular may be somewhat
    // expensive: in order to do so, r.code.DescendsFrom will need to fetch at least
    // enough of the commit history to find a path between version and its base.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/memcombine.go

    		isBigEndian && !root.Block.Func.Config.BigEndian
    	if needSwap && (size != 1 || !root.Block.Func.Config.haveByteSwap(n)) {
    		return false
    	}
    
    	// This is the commit point.
    
    	// First, issue load at lowest address.
    	v = loadBlock.NewValue2(pos, OpLoad, sizeType(n*size), r[0].load.Args[0], mem)
    
    	// Byte swap if needed,
    	if needSwap {
    		v = byteSwap(loadBlock, pos, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. android/pom.xml

                       though we don't run Error Prone itself, which no longer
                       supports JDK8!).
    
                       Why? At some point, presumably after
                       https://github.com/google/guava/commit/e06a8cec65815599e510d7f9c1ea9d2a8eaa438a,
                       builds with JDK8 began failing animal-sniffer with the error:
    
                       Failed to check signatures: Bad class file .../CollectionFuture$ListFuture.class
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top