Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 214 for emits (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

                    progress[0].details.message.startsWith("configure")
                }
            }
        }
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        def "emits registration build ops when tasks not realized"() {
            given:
            stopBeforeTaskGraphCalculation()
            register('foo')
    
            when:
            runAndFail()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

        @Requires(value = [IntegTestPreconditions.NotEmbeddedExecutor, IntegTestPreconditions.NotNoDaemonExecutor], reason = "Identity cache is off for embedded executor due to file locking issues")
        @LeaksFileHandles
        def "emits origin metadata for skipped transform executions"() {
            settingsFile << """
                include 'producer', 'consumer'
            """
    
            setupBuildWithColorTransform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/cmd/gofmt/gofmt.go

    	if r.state == nil {
    		r.state = <-r.prev
    	}
    	return r.state
    }
    
    // Warnf emits a warning message to the reporter's error stream,
    // without changing its exit code.
    func (r *reporter) Warnf(format string, args ...any) {
    	fmt.Fprintf(r.getState().err, format, args...)
    }
    
    // Write emits a slice to the reporter's output stream.
    //
    // Any error is returned to the caller, and does not otherwise affect the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

        def setup() {
            enableProblemsApiCheck()
        }
    
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits deprecation warnings as build operation progress events with context"() {
            when:
            settingsFile "rootProject.name = 'root'"
    
            initScript  """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    // Returns the builtin op code for the given MLIR operation on success; emits
    // error and returns std::nullopt on failure.
    std::optional<tflite::BuiltinOperator> GetBuiltinOpCode(Operation *mlir_op);
    
    // Packs the given MLIR operation into a TFLite FlatBuffer operator object.
    // Returns the FlatBuffer offset for the operator on success; emits error and
    // returns std::nullopt on failure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/trace/gen.go

    			FromStack:    ctx.Stack(viewerFrames(task.Start.Stack())),
    		})
    	}
    }
    
    // emitRegion emits goroutine-based slice events to the UI. The caller
    // must be emitting for a goroutine-oriented trace.
    //
    // TODO(mknyszek): Make regions part of the regular generator loop and
    // treat them like ranges so that we can emit regions in traces oriented
    // by proc or thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top