Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for Shere (0.05 sec)

  1. src/cmd/dist/test.go

    	// slows down all.bash (by 10 seconds on my laptop).
    	// The race builder should catch any error here, but doesn't.
    	// TODO(iant): Figure out how to catch this.
    	// t.registerTest(hdr, &goTest{variant: "race", race: true, runTests: "TestParallelTest", pkg: "cmd/go"})
    	if t.cgoEnabled {
    		// Building cmd/cgo/internal/test takes a long time.
    		// There are already cgo-enabled packages being tested with the race detector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    // definitions of that symbol. See issue #42396 for details.
    //
    // As currently implemented, this is a fatal error. This has drawbacks
    // in that if there are multiple missing builtins, the error will only
    // cite the first one. On the plus side, terminating the link here has
    // advantages in that we won't run the risk of panics or crashes later
    // on in the linker due to R_CALL relocations with 0-valued target
    // symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    // MustHaveModRoot checks that a main module or main modules are present,
    // and calls base.Fatalf if there are no main modules.
    func MustHaveModRoot() {
    	Init()
    	if !HasModRoot() {
    		die()
    	}
    }
    
    // ModFilePath returns the path that would be used for the go.mod
    // file, if in module mode. ModFilePath calls base.Fatalf if there is no main
    // module, even if -modfile is set.
    func ModFilePath() string {
    	MustHaveModRoot()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    		// The loader should have found all the relevant paths.
    		// There are a few exceptions, though:
    		//	- during go list without -test, the p.Resolve calls to process p.TestImports and p.XTestImports
    		//	  end up here to canonicalize the import paths.
    		//	- during any load, non-loaded packages like "unsafe" end up here.
    		//	- during any load, build-injected dependencies like "runtime/cgo" end up here.
    		//	- because we ignore appengine/* in the module loader,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    // versions that have already been resolved. If there is only one (unique)
    // remaining candidate, disambiguate returns that candidate, along with
    // an indication of whether that result interprets cs.path as a package
    //
    // Note: we're only doing very simple disambiguation here. The goal is to
    // reproduce the user's intent, not to find a solution that a human couldn't.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

        }
    
        def "appends zero or more values from array #value using addAll"() {
            given:
            property.addAll(value as String[])
    
            expect:
            assertValueIs(expectedValue)
    
            where:
            value                 | expectedValue
            []                    | []
            ["aaa"]               | ["aaa"]
            ["aaa", "bbb", "ccc"] | ["aaa", "bbb", "ccc"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "appends multiple entries from map #value using putAll"() {
            given:
            property.putAll(value)
    
            expect:
            assertValueIs(expectedValue)
    
            where:
            value                    | expectedValue
            [:]                      | [:]
            ['k1': 'v1']             | ['k1': 'v1']
            ['k1': 'v1', 'k2': 'v2'] | ['k1': 'v1', 'k2': 'v2']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ppc64/ssa.go

    		// there are at least 64 bytes to clear, so add
    		// that to the remainder to generate the code
    		// to clear those doublewords
    		if ctr == 1 {
    			rem += 64
    		}
    
    		// Clear the remainder starting at offset zero
    		offset := int64(0)
    
    		if rem >= 16 && ctr <= 1 {
    			// If the XXLXOR hasn't already been
    			// generated, do it here to initialize
    			// VS32 (V0) to 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def property = propertyWithNoValue()
    
            when:
            property."$method"()
    
            then:
            !property.present
            property.getOrNull() == null
    
            where:
            method << ["finalizeValue", "implicitFinalizeValue"]
        }
    
        def "can finalize value when value set"() {
            def property = propertyWithNoValue()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    				// We must keep the race functions if there are any other call types.
    				return false
    			}
    		}
    	}
    	if isSameCall(sym, "runtime.racefuncenter") {
    		// TODO REGISTER ABI this needs to be cleaned up.
    		// If we're removing racefuncenter, remove its argument as well.
    		if v.Args[0].Op != OpStore {
    			if v.Op == OpStaticLECall {
    				// there is no store, yet.
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top