Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for copyVal (0.14 sec)

  1. src/reflect/value.go

    // TODO: undo when the inliner is no longer bottom-up only.
    //
    //go:noinline
    func (f flag) panicNotMap() {
    	f.mustBe(Map)
    }
    
    // copyVal returns a Value containing the map key or value at ptr,
    // allocating a new variable as needed.
    func copyVal(typ *abi.Type, fl flag, ptr unsafe.Pointer) Value {
    	if typ.IfaceIndir() {
    		// Copy result so future changes to the map
    		// won't change the underlying value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputHistoryLossIntegrationTest.groovy

            targetFile1.assertIsFile()
            targetFile2.assertIsFile()
    
            when:
            buildFile << """
                def reducedTaskDependencies = copyAll.taskDependencies.getDependencies(copyAll) - copy2
                copyAll.dependsOn = reducedTaskDependencies
            """
            succeeds taskPath
    
            then:
            executedAndNotSkipped(taskPath, ':copy1')
            notExecuted(':copy2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/image/draw/draw_test.go

    	{"copyAlpha", vgradGreen(90), fillAlpha(192), Over, color.RGBA{100, 36, 0, 255}},
    	{"copyAlphaSrc", vgradGreen(90), fillAlpha(192), Src, color.RGBA{0, 36, 0, 68}},
    	{"copyNil", vgradGreen(90), nil, Over, color.RGBA{88, 48, 0, 255}},
    	{"copyNilSrc", vgradGreen(90), nil, Src, color.RGBA{0, 48, 0, 90}},
    	// Uniform mask (100%, 75%, nil) and variable NRGBA source.
    	// At (x, y) == (8, 8):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top