Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 458 for emits (0.04 sec)

  1. src/runtime/tracestatus.go

    	// special state indicates this to the parser, so it
    	// doesn't try to find a GoSyscallEndBlocked that
    	// corresponds with the ProcSteal.
    	traceProcSyscallAbandoned
    )
    
    // writeGoStatus emits a GoStatus event as well as any active ranges on the goroutine.
    func (w traceWriter) writeGoStatus(goid uint64, mid int64, status traceGoStatus, markAssist bool, stackID uint64) traceWriter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	// A running goroutine emits a task begin.
    	t.RawEvent(go122.EvEventBatch, nil, 1 /*gen*/, 0 /*thread ID*/, 0 /*timestamp*/, 5 /*batch length*/)
    	t.RawEvent(go122.EvFrequency, nil, 15625000)
    
    	// A running goroutine emits a task begin.
    	t.RawEvent(go122.EvEventBatch, nil, 1 /*gen*/, 0 /*thread ID*/, 0 /*timestamp*/, 5 /*batch length*/)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

    class ConfigurationCacheBuildOperationsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits no load/store build operations when configuration cache is not used"() {
            given:
            withLibBuild()
            withAppBuild()
    
            when:
            inDirectory 'app'
            run 'assemble'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/ide/problems/src/main/java/org/gradle/problems/internal/emitters/BuildOperationBasedProblemEmitter.java

    import org.gradle.api.problems.internal.ProblemEmitter;
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter;
    import org.gradle.internal.operations.OperationIdentifier;
    
    /**
     * Emits problems as build operation progress events.
     *
     * @since 8.6
     */
    @Incubating
    public class BuildOperationBasedProblemEmitter implements ProblemEmitter {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/BuildOperationsFileSystemWatchingIntegrationTest.groovy

                }
            """
    
            inputFile.text = "input"
            executer.beforeExecute {
                inDirectory(projectDir)
            }
            executer.requireDaemon()
        }
    
        def "emits build operations when watching is enabled"() {
            when:
            withWatchFs().run "myTask"
            then:
            executedAndNotSkipped(":myTask")
            def startedResult = buildStartedResult()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

                    operationIdentifier = rootBuildOperation;
                }
                emit(progressStartEvent, operationIdentifier);
            }
        }
    
        private void emit(CategorisedOutputEvent event, OperationIdentifier buildOperationId) {
            progressEventEmitter.emit(
                buildOperationId,
                event.getTimestamp(),
                event
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/internal/trace/internal/testgen/go122/trace.go

    	t.bad = true
    	t.badMatch = regexp.MustCompile(pattern)
    }
    
    // ExpectSuccess writes down that the trace should successfully parse.
    func (t *Trace) ExpectSuccess() {
    	t.bad = false
    }
    
    // RawEvent emits an event into the trace. name must correspond to one
    // of the names in Specs() result for the version that was passed to
    // this trace.
    func (t *Trace) RawEvent(typ event.Type, data []byte, args ...uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/runtime/covermeta.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/coverage/rtcov"
    	"unsafe"
    )
    
    // The compiler emits calls to runtime.addCovMeta
    // but this code has moved to rtcov.AddMeta.
    func addCovMeta(p unsafe.Pointer, dlen uint32, hash [16]byte, pkgpath string, pkgid int, cmode uint8, cgran uint8) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 603 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    }
    class ModuleOp;
    class Operation;
    template <typename T>
    class OperationPass;
    class Pass;
    
    namespace mhlo {
    
    /// Lowers from TF dialect to HLO dialect. When allow_partial_conversion is
    /// false, emits an error if there is any operation that can't be legalized.
    /// When `tf2xla_fallback_device_type` is not `None`, also uses legalization
    /// patterns from TF2XLA fallback for provided device type (see
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/internal/trace/raw/textwriter.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package raw
    
    import (
    	"fmt"
    	"io"
    
    	"internal/trace/version"
    )
    
    // TextWriter emits the text format of a trace.
    type TextWriter struct {
    	w io.Writer
    	v version.Version
    }
    
    // NewTextWriter creates a new write for the trace text format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 917 bytes
    - Viewed (0)
Back to top