Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 242 for doEmit (0.21 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

            singleProjectBuild("greeter") {
                buildFile << """
                    apply plugin: 'swift-library'
                """
                fixture.library.writeToProject(it)
            }
            def commit = repo.commit('initial commit')
    
            and:
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:greeter") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            evenDeeperRepo.file('foo').text = "baz"
            evenDeeperRepo.commit('initial commit', "foo")
            deeperRepo.file('foo').text = "bar"
            deeperRepo.commit("initial commit", "foo")
            // Add submodule to repo
            deeperRepo.addSubmodule(evenDeeperRepo)
            repo.addSubmodule(deeperRepo)
            def commit = repo.commit('initial commit')
    
            settingsFile << """
                sourceControl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                dependencies { compile 'test:test:2.0' }
            """
            repo.commit("v1")
            repo.createLightWeightTag("1.0")
            repoSettingsFile.replace("version = '1.0'", "version = '2.0'")
            repo.commit("v2")
            repo.createLightWeightTag("2.0")
            repoSettingsFile.replace("version = '2.0'", "version = '3.0'")
            repo.commit("v3")
            repo.createLightWeightTag("3.0")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/runtime/traceruntime.go

    	tl.eventWriter(traceGoSyscall, traceProcIdle).commit(traceEvProcStart, traceArg(pp.id), pp.trace.nextSeq(tl.gen))
    }
    
    // ProcStop traces a ProcStop event.
    func (tl traceLocker) ProcStop(pp *p) {
    	// The only time a goroutine is allowed to have its Proc moved around
    	// from under it is during a syscall.
    	tl.eventWriter(traceGoSyscall, traceProcRunning).commit(traceEvProcStop)
    }
    
    // GCActive traces a GCActive event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIntegrationTest.groovy

                buildFile << commonConfiguration
            }
            first.commit("initial commit")
    
            singleProjectBuild("second") {
                buildFile << commonConfiguration
            }
            second.commit("initial commit")
    
            singleProjectBuild("third") {
                buildFile << commonConfiguration
            }
            third.commit("initial commit")
    
            singleProjectBuild("fourth") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. pkg/util/iptables/testing/fake_test.go

    	}
    	expected := dedent.Dedent(strings.Trim(`
    		*nat
    		:PREROUTING - [0:0]
    		:INPUT - [0:0]
    		:OUTPUT - [0:0]
    		:POSTROUTING - [0:0]
    		COMMIT
    		*filter
    		:INPUT - [0:0]
    		:FORWARD - [0:0]
    		:OUTPUT - [0:0]
    		COMMIT
    		*mangle
    		COMMIT
    		`, "\n"))
    	if buf.String() != expected {
    		t.Fatalf("bad initial dump. expected:\n%s\n\ngot:\n%s\n", expected, buf.Bytes())
    	}
    
    	// EnsureChain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

                    public class func thing() { }
                }
    """
            executer.inDirectory(lib1Repo.workTree).withTasks("generateSwiftPmManifest").run()
            lib1Repo.commit("v1")
            lib1Repo.createLightWeightTag("1.0.0")
            lib1Repo.commit("v2")
    
            and:
            def lib2Repo = GitFileRepository.init(testDirectory.file("repos/lib2"))
            lib2Repo.file("build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/util/iptables/testing/parse_test.go

    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding conntrack rule" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    				`),
    			error: "no COMMIT line?",
    		},
    		{
    			name: "two tables, no second COMMIT line",
    			input: dedent.Dedent(`
    				*filter
    				:KUBE-SERVICES - [0:0]
    				:KUBE-EXTERNAL-SERVICES - [0:0]
    				:KUBE-FORWARD - [0:0]
    				:KUBE-NODEPORTS - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top