Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 804 for emits (0.07 sec)

  1. 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)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "https://github.com/gradle/gradle/issues/25483", iterationMatchers = 'sample emits (quiet|lifecycle) logging')
        @UsesSample('tutorial/logging/groovy')
        def "sample emits #level logging"() {
            LogLevel logLevel = sample."$level"
    
            when:
            executer.noExtraLogging().inDirectory(sampleResources.dir).withArguments(logLevel.args)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/util/informermetric/informerutil.go

    		"Total number of errorMetric syncing controllers.",
    	)
    
    	mu       sync.RWMutex
    	handlers = map[cluster.ID]cache.WatchErrorHandler{}
    )
    
    // ErrorHandlerForCluster fetches or creates an ErrorHandler that emits a metric
    // and logs when a watch error occurs. For use with SetWatchErrorHandler on SharedInformer.
    func ErrorHandlerForCluster(clusterID cluster.ID) cache.WatchErrorHandler {
    	mu.RLock()
    	handler, ok := handlers[clusterID]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsIncludeManyIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'root'
                $includeFunction $projectNamesCommaSeparated
            """
    
            // The failure here emits a stacktrace because it's at compilation time
            executer.withStackTraceChecksDisabled()
    
            expect:
            def result = fails("projects")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

        }
    
        def "emits deprecation warning when convention mapping is used with Provider"() {
            buildFile << """
                abstract class MyTask extends DefaultTask {
                    @Inject abstract ProviderFactory getProviderFactory()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top