Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 473 for wired (0.2 sec)

  1. src/encoding/gob/decode.go

    func (dec *Decoder) getIgnoreEnginePtr(wireId typeId) (enginePtr **decEngine, err error) {
    	var ok bool
    	if enginePtr, ok = dec.ignorerCache[wireId]; !ok {
    		// To handle recursive types, mark this engine as underway before compiling.
    		enginePtr = new(*decEngine)
    		dec.ignorerCache[wireId] = enginePtr
    		wire := dec.wireType[wireId]
    		if wire != nil && wire.StructT != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExamplePlugin.java

    import org.gradle.api.Project;
    
    /**
     * Adds an "example" extension to project and wires dependencies from the extension to a Configuration.
     */
    public class ExamplePlugin implements Plugin<Project> {
        @Override
        public void apply(Project project) {
            ExampleExtension example = project.getExtensions().create("example", ExampleExtension.class);
    // tag::wire-dependencies[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 661 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    include::sample[dir="snippets/configurationCache/problemsFixedReuse/groovy",files="build.gradle[tags=fixed-reuse]"]
    ====
    <1> We wired the system property provider directly, without reading it at configuration time.
    
    With this simple change in place we can run the task any number of times, change the system property value, and reuse the configuration cache:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	// h2transport (via onceSetNextProtoDefaults)
    	nextProtoOnce      sync.Once
    	h2transport        h2Transport // non-nil if http2 wired up
    	tlsNextProtoWasNil bool        // whether TLSNextProto was nil when the Once fired
    
    	// ForceAttemptHTTP2 controls whether HTTP/2 is enabled when a non-zero
    	// Dial, DialTLS, or DialContext func or TLSClientConfig is provided.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// Do the part that isn't allowed to have write barriers.
    	wirep(pp)
    
    	// Have p; write barriers now allowed.
    
    	// Perform deferred mcache flush before this P can allocate
    	// from a potentially stale mcache.
    	pp.mcache.prepareForSweep()
    
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.ProcStart()
    		traceRelease(trace)
    	}
    }
    
    // wirep is the first step of acquirep, which actually associates the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

            // The actual user home dir will be a subfolder using the name of the distribution.
            gradleUserHomeDir = intTestHomeDir
            // The user home dir is not wiped out by clean. Move the daemon working space underneath the build dir so they don't pile up on CI.
            // The actual daemon registry dir will be a subfolder using the name of the distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/net/http/server.go

    // in the header instead.
    //
    // Likewise, if the handler didn't set a Content-Type, we sniff that
    // from the initial chunk of output.
    //
    // The Writers are wired together like:
    //
    //  1. *response (the ResponseWriter) ->
    //  2. (*response).w, a [*bufio.Writer] of bufferBeforeChunkingSize bytes ->
    //  3. chunkWriter.Writer (whose writeHeader finalizes Content-Length/Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. test/switch.go

    		fallthrough
    	case 8:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	case 9:
    		dummy := 0
    		_ = dummy
    		fallthrough
    	default:
    		dummy := 0
    		_ = dummy
    		fired = !fired
    		assert(i5 == 5, "good")
    	}
    	assert(fired, "fired")
    
    	count := 0
    	switch i5 {
    	case 0:
    		count = count + 1
    		fallthrough
    	case 1:
    		count = count + 1
    		fallthrough
    	case 2:
    		count = count + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 19 23:30:49 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	sh := b.Shell(a)
    	p := a.Package
    	p.Internal.Cover.Cfg = a.Objdir + "coveragecfg"
    	pcfg := covcmd.CoverPkgConfig{
    		PkgPath: p.ImportPath,
    		PkgName: p.Name,
    		// Note: coverage granularity is currently hard-wired to
    		// 'perblock'; there isn't a way using "go build -cover" or "go
    		// test -cover" to select it. This may change in the future
    		// depending on user demand.
    		Granularity: "perblock",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/DeferredProjectConfiguration.java

                this.configuration.add(configuration);
            }
        }
    
        public void fire() {
            if (!fired) {
                if (Boolean.getBoolean(TRACE)) {
                    firedSentinel = new Exception("Project '" + project.getPath() + "' deferred configuration fired");
                }
                fired = true;
                try {
                    for (Runnable runnable : configuration) {
                        runnable.run();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top