Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,250 for going (0.05 sec)

  1. src/cmd/link/internal/ld/data_test.go

    		},
    		{
    			arch:    sys.ArchAMD64,
    			ht:      objabi.Hdarwin,
    			bm:      "pie",
    			lm:      "external",
    			gotsize: sys.ArchAMD64.PtrSize,
    		},
    	}
    
    	// Save the architecture as we're going to set it on each test run.
    	origArch := buildcfg.GOARCH
    	defer func() {
    		buildcfg.GOARCH = origArch
    	}()
    
    	for i, test := range tests {
    		iself := len(test.rel) != 0
    		buildcfg.GOARCH = test.arch.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 19:20:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part7_gradle_refs.adoc

    - link:https://discuss.gradle.org/[Gradle Forum]
    - link:https://gradle-community.slack.com/[Gradle Slack Channel]
    - link:https://gradle.org/courses/[Free Gradle Training]
    
    == Step 2. Next steps
    We recommend going through each section of the User Manual.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. testing/precondition-tester/build.gradle.kts

        withType(DistributionTest::class) {
            setupPreconditionTesting()
        }
    }
    
    fun Test.setupPreconditionTesting() {
        // We only want to execute our special tests
        // so we override what classes are going to run
        testClassesDirs = sourceSets.test.get().output.classesDirs
        // All test should have this project's "test" source set on their classpath
        classpath += sourceSets.test.get().output
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/README.md

        the possible paths.
    
      - Masquerading has to happen in the `postrouting` hook, because "masquerade" means "SNAT
        to the IP of the interface the packet is going out on", so it has to happen after the
        final routing decision. (We don't need to masquerade packets that are going to a host
        network IP, because masquerading is about ensuring that the packet eventually gets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/closure.go

    //	}(byval, &byref, 42)
    func directClosureCall(n *ir.CallExpr) {
    	clo := n.Fun.(*ir.ClosureExpr)
    	clofn := clo.Func
    
    	if ir.IsTrivialClosure(clo) {
    		return // leave for walkClosure to handle
    	}
    
    	// We are going to insert captured variables before input args.
    	var params []*types.Field
    	var decls []*ir.Name
    	for _, v := range clofn.ClosureVars {
    		if !v.Byval() {
    			// If v of type T is captured by reference,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/runtime/runtime.go

    // - 100 ms -> ~0.0001% error
    //
    // We're willing to take 0.004% error here, because ticksPerSecond is intended to be used for
    // converting durations, not timestamps. Durations are usually going to be much larger, and so
    // the tiny error doesn't matter. The error is definitely going to be a problem when trying to
    // use this for timestamps, as it'll make those timestamps much less likely to line up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/cover.go

    // It must be run before any calls to mergeCoverProfile or closeCoverProfile.
    // Using this function clears the profile in case it existed from a previous run,
    // or in case it doesn't exist and the test is going to fail to create it (or not run).
    func initCoverProfile() {
    	if testCoverProfile == "" || testC {
    		return
    	}
    	if !filepath.IsAbs(testCoverProfile) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/MonotonicClockTest.groovy

            1 * currentTimeMillis() >> START_MILLIS
            1 * nanoTime() >> START_NANOS
        }
    
        private Clock clock = new MonotonicClock(timeSource, SYNC_INTERVAL)
    
        def "prevents time from going backwards"() {
            when:
            setNanos 0
    
            then:
            clock.currentTime == START_MILLIS + 0
    
            when:
            setNanos 10
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/project/inheritance/t03/ProjectInheritanceTest.java

    /**
     * A test which demonstrates maven's recursive inheritance where
     * a distinct value is taken from each parent contributing to
     * the final model of the project being assembled. There is no
     * overriding going on amongst the models being used in this test:
     * each model in the lineage is providing a value that is not present
     * anywhere else in the lineage. We are just making sure that values
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/callback_windows.go

    // into Go.
    func testCallbackCallersSEH(t *testing.T) {
    	testenv.SkipIfOptimizationOff(t) // This test requires inlining.
    	if runtime.Compiler != "gc" {
    		// The exact function names are not going to be the same.
    		t.Skip("skipping for non-gc toolchain")
    	}
    	if runtime.GOARCH != "amd64" {
    		// TODO: support SEH on other architectures.
    		t.Skip("skipping on non-amd64")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 16:01:37 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top