Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 804 for emits (0.04 sec)

  1. src/cmd/cover/cfg_test.go

    	// "EmitMetaFile" mode. When running in this mode, cmd/cover walks
    	// the package doing instrumentation, but when finished, instead of
    	// writing out instrumented source files, it directly emits a
    	// meta-data file for the package in question, essentially
    	// simulating the effect that you would get if you added a dummy
    	// "no-op" x_test.go file and then did a build and run of the test.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/inittask.go

    package ld
    
    import (
    	"cmd/internal/objabi"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"fmt"
    	"sort"
    )
    
    // Inittasks finds inittask records, figures out a good
    // order to execute them in, and emits that order for the
    // runtime to use.
    //
    // An inittask represents the initialization code that needs
    // to be run for a package. For package p, the p..inittask
    // symbol contains a list of init functions to run, both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/proxy/util/utils.go

    			ip = v.IP
    		case *net.IPNet:
    			ip = v.IP
    		default:
    			continue
    		}
    		if isValid(ip) {
    			ips.Insert(ip.String())
    		}
    	}
    	return ips
    }
    
    // LogAndEmitIncorrectIPVersionEvent logs and emits incorrect IP version event.
    func LogAndEmitIncorrectIPVersionEvent(recorder events.EventRecorder, fieldName, fieldValue, svcNamespace, svcName string, svcUID types.UID) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            }
    
            then:
            1 * listener.finished(_) >> { BuildOperationFinishedNotification n ->
                assert n.notificationOperationId == d1.id
            }
        }
    
        def "emits progress events"() {
            given:
            getOrCreateBridge().valve.start()
            register(listener)
            def d1 = d(1, null, 1)
            def d2 = d(2, 1, null)
            def d3 = d(3, 2, 3)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/emitter.go

    			e.threadStats[ThreadStateInSyscallRuntime],
    		)
    	}
    	return nil
    }
    
    func (e *Emitter) tsWithinRange(ts time.Duration) bool {
    	return e.rangeStart <= ts && ts <= e.rangeEnd
    }
    
    // OptionalEvent emits ev if it's within the time range of of the consumer, i.e.
    // the selected trace split range.
    func (e *Emitter) OptionalEvent(ev *format.Event) {
    	e.c.ConsumeViewerEvent(ev, false)
    }
    
    func (e *Emitter) Flush() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

                            f.parentFile.mkdirs()
                            f.text = val
                        }
                    }
                }
            """
        }
    
        def "emits pack/unpack and store/load operations for local"() {
            def localCache = new TestBuildCache(file("local-cache"))
            settingsFile << localCache.localCacheConfiguration()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/sort/gen_sort_variants.go

    	// functions are expected to exist:
    	//
    	//    Less (name, i, j):
    	//      emits a comparison expression that checks if the value `name` at
    	//      index `i` is smaller than at index `j`.
    	//
    	//    Swap (name, i, j):
    	//      emits a statement that performs a data swap between elements `i` and
    	//      `j` of the value `name`.
    	Funcs template.FuncMap
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

            notifications.op(RunRequestedWorkBuildOperationType.Details).parentId == notifications.op(RunBuildBuildOperationType.Details).id
        }
    
        def "emits for GradleBuild tasks"() {
            when:
            def initScript = file("init.gradle") << """
                if (parent == null) {
                    ${notifications.registerListener()}
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/runtime/mklockrank.go

    func cname(label string) string {
    	return "lockRank" + strings.ToUpper(label[:1]) + label[1:]
    }
    
    func isPseudo(label string) bool {
    	return strings.ToUpper(label) == label
    }
    
    // generateDot emits a Graphviz dot representation of g to w.
    func generateDot(w io.Writer, g *dag.Graph) {
    	fmt.Fprintf(w, "digraph g {\n")
    
    	// Define all nodes.
    	for _, node := range g.Nodes {
    		fmt.Fprintf(w, "%q;\n", node)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

    """
    
            buildFile << """
                apply from: '$server.uri/external.gradle'
                defaultTasks 'doStuff'
    """
    
            then:
            succeeds()
        }
    
        def "emits useful warning when applying script via http"() {
            when:
            server.useHostname()
            def script = file('external.gradle')
            server.beforeHandle {
                fail("No requests were expected.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top