Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 804 for emits (0.35 sec)

  1. src/cmd/compile/internal/ssagen/arch.go

    	SSAMarkMoves func(*State, *ssa.Block)
    
    	// SSAGenValue emits Prog(s) for the Value.
    	SSAGenValue func(*State, *ssa.Value)
    
    	// SSAGenBlock emits end-of-block Progs. SSAGenValue should be called
    	// for all values in the block before SSAGenBlock.
    	SSAGenBlock func(s *State, b, next *ssa.Block)
    
    	// LoadRegResult emits instructions that loads register-assigned result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/traceruntime.go

    	}
    	w.end()
    }
    
    // GoEnd emits a GoDestroy event.
    //
    // TODO(mknyszek): Rename this to GoDestroy.
    func (tl traceLocker) GoEnd() {
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoDestroy)
    }
    
    // GoSched emits a GoStop event with a GoSched reason.
    func (tl traceLocker) GoSched() {
    	tl.GoStop(traceGoStopGoSched)
    }
    
    // GoPreempt emits a GoStop event with a GoPreempted reason.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

                dependencies {
                    testImplementation 'junit:junit:4.13'
                }
            """
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21386")
        def "emits toolchain usages for a build #configureToolchain configured toolchain for '#task' task"() {
            JvmInstallationMetadata jdkMetadata
            if (configureToolchain == "without") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/execution/ResolveTaskMutationsBuildOperationTypeIntegrationTest.groovy

        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits operation for task execution"() {
            when:
            buildScript """
                task t {}
            """
            succeeds "t"
    
            then:
            assertResolveTaskMutationsBuildOperationEmitted(":t")
        }
    
        def "emits operation for failed task execution"() {
            when:
            buildScript """
                task t {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 27 12:00:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. src/runtime/tracestring.go

    }
    
    // put adds a string to the table, emits it, and returns a unique ID for it.
    func (t *traceStringTable) put(gen uintptr, s string) uint64 {
    	// Put the string in the table.
    	ss := stringStructOf(&s)
    	id, added := t.tab.put(ss.str, uintptr(ss.len))
    	if added {
    		// Write the string to the buffer.
    		systemstack(func() {
    			t.writeString(gen, id, s)
    		})
    	}
    	return id
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/emit.go

    		return err
    	}
    
    	// Emit meta-data file only if needed (may already be present).
    	if s.needMetaDataFile() {
    		if err := s.emitMetaDataFile(finalHash, finalMetaLen); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // emitCounterData emits the counter data output file for this coverage run.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/MappingSourceDependencyIntegrationTest.groovy

                                url = uri("$gitRepo")
                                ${repoDef}
                            }
                        }
                    }
                }
            """
        }
    
        def 'emits sensible error when bad code is in vcsMappings block'() {
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        all { details ->
                            foo()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/execution/ExecuteTaskActionBuildOperationTypeIntegrationTest.groovy

    class ExecuteTaskActionBuildOperationTypeIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits operation for each task action execution"() {
            when:
            buildScript """
                task t {
                    doLast {}
                    doLast {}
                }
            """
            succeeds "t"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 11 12:06:28 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/operations/configuration/IsolatedProjectsSettingsBuildOperationsIntegrationTest.groovy

    )
    class IsolatedProjectsSettingsBuildOperationsIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits settings finalized event when not configured"() {
            given:
            file("buildSrc/src/main/java/Thing.java") << "class Thing {}"
    
            when:
            succeeds("help")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r83/TestFailureProgressEventCrossVersionTest.groovy

    @TargetGradleVersion(">=8.3")
    class TestFailureProgressEventCrossVersionTest extends TestFailureSpecification {
    
        def setup() {
            enableTestJvmDebugging = false
            enableStdoutProxying = false
        }
    
        def "Emits test failure events for org.opentest4j.MultipleFailuresError assertion errors in Junit 5"() {
            setupJUnit5()
            file('src/test/java/org/gradle/JUnitJupiterTest.java') << '''
                package org.gradle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top