Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for reuse (0.36 sec)

  1. tensorflow/compiler/jit/BUILD

    # Internal targets below this point.
    
    cc_library(
        name = "variable_info",
        srcs = ["variable_info.cc"],
        hdrs = ["variable_info.h"],
        visibility = [
            ":internal",
            # We reuse VariableInfo in TFRT's implementation of TpuExecuteOp.
            "//learning/brain/tfrt/tf_tpu:__pkg__",
            "//learning/brain/tfrt/tpu_plugin:__pkg__",
            "//learning/brain/tfrt/tpu_common:__pkg__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(response3.body.string()).isEqualTo("GHI")
        // Settings connection.
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        // Reuse settings connection.
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
        // Reuse settings connection.
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(2)
        // New connection!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	}
    
    	// Ensure that timer is stopped.
    	if !cacher.timer.Stop() {
    		// Consume triggered (but not yet received) timer event
    		// so that future reuse does not get a spurious timeout.
    		<-cacher.timer.C
    	}
    	var contextMetadata metadata.MD
    	if utilfeature.DefaultFeatureGate.Enabled(features.SeparateCacheWatchRPC) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    	recorder       events.EventRecorder
    
    	serviceHealthServer healthcheck.ServiceHealthServer
    	healthzServer       *healthcheck.ProxierHealthServer
    
    	ipvsScheduler string
    	// The following buffers are used to reuse memory and avoid allocations
    	// that are significantly impacting performance.
    	iptablesData     *bytes.Buffer
    	filterChainsData *bytes.Buffer
    	natChains        proxyutil.LineBuffer
    	filterChains     proxyutil.LineBuffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	// 1. the thread might be a Go thread,
    	// 2. or it wasn't the first call from a C thread on pthread platforms,
    	//    since then we skip dropm to reuse the m in the first call.
    	MOVQ	savedm-8(SP), BX
    	CMPQ	BX, $0
    	JNE	done
    
    	// Skip dropm to reuse it in the next call, when a pthread key has been created.
    	MOVQ	_cgo_pthread_key_created(SB), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    	// and we are using only probabilities in the format of 1/n, we are
    	// precomputing some number of those and cache for future reuse.
    	precomputedProbabilities []string
    
    	// The following buffers are used to reuse memory and avoid allocations
    	// that are significantly impacting performance.
    	iptablesData             *bytes.Buffer
    	existingFilterChainsData *bytes.Buffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    		// sched.idleTime and sched.totaltime. memstats also include
    		// the pause time (work,pauseNS), forcing computation of the
    		// total pause time before the pause actually ends.
    		//
    		// Here we reuse the same now for start the world so that the
    		// time added to /sched/pauses/total/gc:seconds will be
    		// consistent with the value in memstats.
    		startTheWorldWithSema(now, stw)
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	canceledErr          error // set non-nil if conn is canceled
    	broken               bool  // an error has happened on this connection; marked broken so it's not reused.
    	reused               bool  // whether conn has had successful request/response and is being reused.
    	// mutateHeaderFunc is an optional func to modify extra
    	// headers on each outbound request before it's written. (the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

    /**
     * Factory for [calls][Call], which can be used to send HTTP requests and read their responses.
     *
     * ## OkHttpClients Should Be Shared
     *
     * OkHttp performs best when you create a single `OkHttpClient` instance and reuse it for all of
     * your HTTP calls. This is because each client holds its own connection pool and thread pools.
     * Reusing connections and threads reduces latency and saves memory. Conversely, creating a client
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    		// content ID. The attempt using the action ID makes sure that
    		// if the link inputs don't change, we reuse the cached test
    		// result without even rerunning the linker. The attempt using
    		// the link output (test binary) content ID makes sure that if
    		// we have different link inputs but the same final binary,
    		// we still reuse the cached test result.
    		// c.saveOutput will store the result under both IDs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top