Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      // Tries to legalize the specified TensorFlow op, if supported.
      //
      // Emits an error and returns failure if an error is encountered during
      // conversion. Note that success return value doesn't mean successful
      // legalization.
      mlir::LogicalResult LegalizeOp();
    
      // Converts the given operand to expression of kind kConstant or kXlaOp.
      // Emits a remark and returns expression of kind kInvalid on failure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/runtime/trace/annotation.go

    }
    
    //
    // Function bodies are defined in runtime/trace.go
    //
    
    // emits UserTaskCreate event.
    func userTaskCreate(id, parentID uint64, taskType string)
    
    // emits UserTaskEnd event.
    func userTaskEnd(id uint64)
    
    // emits UserRegion event.
    func userRegion(id, mode uint64, regionType string)
    
    // emits UserLog event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/FileSystemWatchingSettingsFinalizedBuildOperationIntegrationTest.groovy

    @LocalOnly
    class FileSystemWatchingSettingsFinalizedBuildOperationIntegrationTest extends AbstractFileSystemWatchingIntegrationTest {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits once when not used"() {
            given:
            settingsFile << "includeBuild 'plugin'"
            file("buildSrc/src/main/java/Thing.java") << "class Thing {}"
            createDir("plugin") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authorization/metrics/metrics_test.go

    		`
    		if err := testutil.GatherAndCompare(legacyregistry.DefaultGatherer, strings.NewReader(expectedValue), metrics...); err != nil {
    			t.Fatal(err)
    		}
    		authorizationDecisionsTotal.Reset()
    	}
    
    	// no-opinion emits no metric
    	{
    		dummyAuthorizer.decision = authorizer.DecisionNoOpinion
    		_, _, _ = a.Authorize(context.Background(), nil)
    		_, _, _ = a.Authorize(context.Background(), nil)
    		expectedValue := prefix + `
    		`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:20:59 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/internal/trace/testdata/generators/go122-task-across-generations.go

    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A running goroutine emits a task begin.
    	b1 := g1.Batch(trace.ThreadID(0), 0)
    	b1.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/internal/gcprog/gcprog.go

    	if w.debug != nil {
    		fmt.Fprintf(w.debug, "gcprog: advance to %d by repeat\n", index)
    	}
    	w.lit(0)
    	w.flushlit()
    	w.Repeat(1, skip-1)
    }
    
    // Append emits the given GC program into the current output.
    // The caller asserts that the program emits n bits (describes n words),
    // and Append panics if that is not true.
    func (w *Writer) Append(prog []byte, n int64) {
    	w.flushlit()
    	if w.debug != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemEmitter.java

    
    /**
     * Interface for emitting problems.
     */
    public interface ProblemEmitter {
    
        /**
         * Emits the given problem in an implementation specific way.
         * <p>
         * The problem will be associated with the given operation identifier.
         *
         * @param problem The problem to emit.
         */
        void emit(Problem problem, @Nullable OperationIdentifier id);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/configurationcache/options/ConfigurationCacheSettingsFinalizedBuildOperationIntegTest.groovy

    @Requires(IntegTestPreconditions.NotConfigCached)
    class ConfigurationCacheSettingsFinalizedBuildOperationIntegTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits once when not used"() {
            given:
            settingsFile << "includeBuild 'plugin'"
            file("buildSrc/src/main/java/Thing.java") << "class Thing {}"
            createDir("plugin") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationTypeIntegrationTest.groovy

    class ExecuteTaskBuildOperationTypeIntegrationTest extends AbstractIntegrationSpec {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits operation for task execution"() {
            when:
            buildScript """
                task t {}
            """
            succeeds "t"
    
            then:
            def op = operations.first(ExecuteTaskBuildOperationType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  10. 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)
Back to top